replacer_bot 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f452a58e1674155cdd4bf1b6f731a72929e9e518
4
- data.tar.gz: d7585edd12a9ea3964e5aec9fbf69fe452bc2fd2
3
+ metadata.gz: 6c642a22ef658553bbc3f6fc8c322bda2a86745f
4
+ data.tar.gz: e3fd74ac7ae4cba27a31d4cb269a971631ccbf81
5
5
  SHA512:
6
- metadata.gz: 0e7cc282da55a9405a03e5ee6aad6ab13fbf2803eeb9e67584d53a3a8a309ef8dc46cb63337c32d763b52909ed219239fb27f337cd94e7dcd0cd7bb547500a75
7
- data.tar.gz: 74f26e404d32ebda0a33e4d3857f24013f3ce99ed2e8123f6b71fa9a51a1ad16b2a2b1125dfb515f82aa2f0d46a2304095ef5c65cb30ef3d6f63516d2db43af0
6
+ metadata.gz: 833d985c3c110abb905e5fb5020c1c36462970508a36babb94e213d7613cb4caafdd11d807ab3504b4723d0114a266c78d15e506cddef7a4cf65c5ba51c10abf
7
+ data.tar.gz: 2c0444ec1bce07cc3c844e1baa9643dbfc2092bfe246610a6de38eccb746408f18603c2b81ad832b9df0c17920c8873813db543e0714f59c3f4497a706912779
data/README.md CHANGED
@@ -14,9 +14,20 @@ Twitter bot that:
14
14
  * Search-and-replaces phrases in the tweets
15
15
  * Tweets them
16
16
 
17
+ ## Installation
18
+
19
+ gem install replacer_bot
20
+
21
+ or
22
+
23
+ git clone https://github.com/pikesley/replacer_bot
24
+ cd replacer_bot
25
+ bundle
26
+ rake install
27
+
17
28
  ## Configuration
18
29
 
19
- The default config is [here](https://github.com/pikesley/replacer_bot/blob/master/config/defaults.yml), you'll want to create your own config at `~/.replacer_bot/config.yml`, something like:
30
+ The default config is [here](https://github.com/pikesley/replacer_bot/blob/master/config/defaults.yml), you'll want to create your own config at `~/.replacer_bot/config.yml` to override come of these, something like:
20
31
 
21
32
  search_term: David Cameron
22
33
  replacements:
@@ -24,6 +35,10 @@ The default config is [here](https://github.com/pikesley/replacer_bot/blob/maste
24
35
  - cameron: Satan
25
36
  save_file: /Users/sam/.replacer_bot/last.tweet
26
37
 
38
+ Note:
39
+
40
+ * The search-and-replace terms will be applied in the order listed, which you may or may not care about
41
+
27
42
  You'll also need some Twitter credentials, store them in `~/.replacer_botrc` like this:
28
43
 
29
44
  CONSUMER_KEY: some_key
@@ -41,3 +56,5 @@ You should now be able to do run it like so:
41
56
  Tweeting: Satan's Little Helper sets out academy 'vision' for every school http://t.co/S6yFWRf7pD
42
57
  Sleeping 60 seconds
43
58
  Tweeting: Swarm warning: Satan's Little Helper accuses migrants of 'breaking in' to UK http://t.co/1sB5J8Alwi
59
+
60
+ There's also a `dry_run` command, which shows you what it would have tweeted
@@ -11,7 +11,13 @@ module ReplacerBot
11
11
  desc 'tweet', 'find, munge and send tweets'
12
12
  def tweet
13
13
  r = Replacer.new
14
- r.tweet
14
+ r.tweet chatty: true
15
+ end
16
+
17
+ desc 'dry_run', "find, munge but don't actually send tweets"
18
+ def dry_run
19
+ r = Replacer.new
20
+ r.tweet dry_run: true, chatty: true
15
21
  end
16
22
  end
17
23
  end
@@ -1,6 +1,6 @@
1
1
  module ReplacerBot
2
2
  class Replacer
3
- attr_reader :results, :config
3
+ attr_reader :results, :config, :client
4
4
 
5
5
  def initialize
6
6
  @config = Config.instance.config
@@ -18,17 +18,19 @@ module ReplacerBot
18
18
  search.map { |r| ReplacerBot.truncate ReplacerBot.replace r.text }
19
19
  end
20
20
 
21
- def tweet
21
+ def tweet dry_run: false, chatty: false
22
22
  tweets.each_with_index do |tweet, index|
23
- puts "Tweeting: #{tweet}"
24
- @client.update tweet
25
- unless index == tweets.count - 1
26
- puts "Sleeping #{@config.interval} seconds"
27
- sleep @config.interval
23
+ puts "Tweeting: #{tweet}" if chatty
24
+ @client.update tweet unless dry_run
25
+ unless dry_run
26
+ unless index == tweets.count - 1
27
+ puts "Sleeping #{@config.interval} seconds" if chatty
28
+ sleep @config.interval
29
+ end
28
30
  end
29
31
  end
30
32
 
31
- save
33
+ save unless dry_run
32
34
  end
33
35
 
34
36
  def save
@@ -1,3 +1,3 @@
1
1
  module ReplacerBot
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.6"
3
3
  end
data/replacer_bot.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = ReplacerBot::VERSION
9
9
  spec.authors = ['pikesley']
10
10
  spec.email = ['github@orgraphone.org']
11
- spec.summary = %q{Taylor Swift}
12
- spec.description = %q{Taylor Swift}
11
+ spec.summary = %q{Search, mangle and tweet}
12
+ spec.description = %q{Search Twitter for a phrase, search-and-replace phrases in the tweets, tweet them}
13
13
  spec.homepage = ''
14
14
  spec.license = 'MIT'
15
15
 
@@ -1,6 +1,6 @@
1
1
  module ReplacerBot
2
2
  describe Replacer do
3
- before :all do
3
+ after :each do
4
4
  FileUtils.rm_f 'last.tweet'
5
5
  end
6
6
 
@@ -29,7 +29,6 @@ module ReplacerBot
29
29
  expect(File).to exist 'last.tweet'
30
30
 
31
31
  expect(Marshal.load File.read 'last.tweet').to eq 632605951594524672
32
- FileUtils.rm 'last.tweet'
33
32
  end
34
33
 
35
34
  it 'only saves if there is something to save', :vcr do
@@ -40,7 +39,6 @@ module ReplacerBot
40
39
  replacer.save
41
40
 
42
41
  expect(Marshal.load File.read 'last.tweet').to eq 732591313607589889
43
- FileUtils.rm 'last.tweet'
44
42
  end
45
43
  end
46
44
 
@@ -53,7 +51,6 @@ module ReplacerBot
53
51
  end
54
52
 
55
53
  expect(replacer.search.count).to eq 2
56
- FileUtils.rm 'last.tweet'
57
54
  end
58
55
  end
59
56
 
@@ -66,6 +63,19 @@ module ReplacerBot
66
63
  expect(replacer.tweets[27]).to eq 'CompTIA_SLED: RT CADeptTech: Building a User-Centric #California #Government through Demand-Driven #TaylorSwift http://t.co/mh91wbk4xK ---…'
67
64
  expect(replacer.tweets.all? { |t| t.length <= 140} ).to eq true
68
65
  end
66
+
67
+ it 'actually sends tweets', :vcr do
68
+ expect(replacer.client).to(receive(:update)).exactly(21).times
69
+ interval = replacer.config.interval
70
+ replacer.config.interval = 0
71
+ replacer.tweet
72
+ replacer.config.interval = interval
73
+ end
74
+
75
+ it 'sends no tweets on a dry-run', :vcr do
76
+ expect(replacer.client).to_not(receive(:update))
77
+ replacer.tweet dry_run: true
78
+ end
69
79
  end
70
80
  end
71
81
  end
@@ -0,0 +1,979 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.twitter.com/1.1/search/tweets.json?count=100&q=%2522open%2520data%2522&result_type=recent
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - TwitterRubyGem/5.14.0
14
+ Authorization:
15
+ - OAuth oauth_consumer_key="<CONSUMER_KEY>", oauth_nonce="88ff41908811786a756c7143ceaedcaf",
16
+ oauth_signature="zFBrk2%2BpCByS80EsfGVSbkCIgt0%3D", oauth_signature_method="HMAC-SHA1",
17
+ oauth_timestamp="1439734043", oauth_token="<TOKEN>", oauth_version="1.0"
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Cache-Control:
26
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
27
+ Content-Disposition:
28
+ - attachment; filename=json.json
29
+ Content-Length:
30
+ - '36115'
31
+ Content-Type:
32
+ - application/json;charset=utf-8
33
+ Date:
34
+ - Sun, 16 Aug 2015 14:07:24 GMT
35
+ Expires:
36
+ - Tue, 31 Mar 1981 05:00:00 GMT
37
+ Last-Modified:
38
+ - Sun, 16 Aug 2015 14:07:24 GMT
39
+ Pragma:
40
+ - no-cache
41
+ Server:
42
+ - tsa_f
43
+ Set-Cookie:
44
+ - guest_id=v1%3A143973404411822645; Domain=.twitter.com; Path=/; Expires=Tue,
45
+ 15-Aug-2017 14:07:24 UTC
46
+ - lang=en; Path=/
47
+ Status:
48
+ - 200 OK
49
+ Strict-Transport-Security:
50
+ - max-age=631138519
51
+ X-Access-Level:
52
+ - read-write
53
+ X-Connection-Hash:
54
+ - 801dc166c2f932cfd6b0958a94bf27b8
55
+ X-Content-Type-Options:
56
+ - nosniff
57
+ X-Frame-Options:
58
+ - SAMEORIGIN
59
+ X-Rate-Limit-Limit:
60
+ - '180'
61
+ X-Rate-Limit-Remaining:
62
+ - '170'
63
+ X-Rate-Limit-Reset:
64
+ - '1439734315'
65
+ X-Response-Time:
66
+ - '335'
67
+ X-Transaction:
68
+ - 436e4ecc64ccb398
69
+ X-Twitter-Response-Tags:
70
+ - BouncerCompliant
71
+ X-Xss-Protection:
72
+ - 1; mode=block
73
+ body:
74
+ encoding: ASCII-8BIT
75
+ string: '{"statuses":[{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
76
+ Aug 16 14:06:38 +0000 2015","id":632916379830763520,"id_str":"632916379830763520","text":"Nepal
77
+ earthquake: How Taylor Swift and social media helped the Nepalese to help
78
+ ... http:\/\/t.co\/R8KrBGeVg9","source":"\u003ca href=\"http:\/\/pikesley.org\"
79
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
80
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
81
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":"http:\/\/t.co\/R8KrBGeVg9","expanded_url":"http:\/\/www.snsanalytics.com\/9y4Vy6","display_url":"snsanalytics.com\/9y4Vy6","indices":[84,106]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
82
+ Aug 16 14:05:37 +0000 2015","id":632916125316182016,"id_str":"632916125316182016","text":"\"Start
83
+ with real-world problems and then work out how data can be part of the solution\"
84
+ #TaylorSwift http:\/\/t.co\/bJ1Xy1YZxa","source":"\u003ca href=\"http:\/\/pikesley.org\"
85
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
86
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
87
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[88,100]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/bJ1Xy1YZxa","expanded_url":"http:\/\/bit.ly\/1IQWyM4","display_url":"bit.ly\/1IQWyM4","indices":[101,123]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
88
+ Aug 16 14:05:12 +0000 2015","id":632916018449543168,"id_str":"632916018449543168","text":"\"Start
89
+ with real-world problems and then work out how data can be part of the solution\"
90
+ #OpenData http:\/\/t.co\/05YNh0iVG2","source":"\u003ca href=\"http:\/\/bufferapp.com\"
91
+ 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":172280127,"id_str":"172280127","name":"SciDev.Net","screen_name":"SciDevNet","location":"Global","description":"Bringing
92
+ #science and #globaldev together through news and analysis. For regional news
93
+ visit @SciDevNet_al @SciDevNetSSA @SciDevNet_MENA @SciDevNet_SA","url":"http:\/\/t.co\/oNMnE0ynae","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/oNMnE0ynae","expanded_url":"http:\/\/www.scidev.net","display_url":"scidev.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":18286,"friends_count":5845,"listed_count":1001,"created_at":"Thu
94
+ Jul 29 09:28:29 +0000 2010","favourites_count":5375,"utc_offset":7200,"time_zone":"Amsterdam","geo_enabled":true,"verified":false,"statuses_count":13778,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/134820443\/Twitter_SDN_theme_crop.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/134820443\/Twitter_SDN_theme_crop.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471586543031681024\/tDbJPaHd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471586543031681024\/tDbJPaHd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172280127\/1402489712","profile_link_color":"E10000","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OpenData","indices":[88,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/05YNh0iVG2","expanded_url":"http:\/\/bit.ly\/1IQWyM4","display_url":"bit.ly\/1IQWyM4","indices":[98,120]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
95
+ Aug 16 14:03:53 +0000 2015","id":632915687493734400,"id_str":"632915687493734400","text":"RT
96
+ @willmorgan66: Who is using all this government #opendata? - http:\/\/t.co\/CvjcTUM4Lw","source":"\u003ca
97
+ href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\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":112537427,"id_str":"112537427","name":"Kate
98
+ M. Daley","screen_name":"thedaleykate","location":"Waterloo, ON","description":"Political
99
+ science PhD candidate at YorkU, studying the local politics of growth management.
100
+ Knitter, feminist, recreational soprano. Co-founder @SmartGrowthWR.","url":"http:\/\/t.co\/x5YTvADgGO","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/x5YTvADgGO","expanded_url":"http:\/\/katemdaley.ca","display_url":"katemdaley.ca","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1938,"friends_count":1911,"listed_count":100,"created_at":"Mon
101
+ Feb 08 21:29:22 +0000 2010","favourites_count":2,"utc_offset":-14400,"time_zone":"Eastern
102
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":19561,"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\/378800000282719770\/acef4ee2570601be989422b224f1ace9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000282719770\/acef4ee2570601be989422b224f1ace9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112537427\/1423245070","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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
103
+ Aug 16 13:45:07 +0000 2015","id":632910964032081920,"id_str":"632910964032081920","text":"Who
104
+ is using all this government #opendata? - http:\/\/t.co\/CvjcTUM4Lw","source":"\u003ca
105
+ href=\"http:\/\/klout.com\" rel=\"nofollow\"\u003ePost with Klout\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":115751488,"id_str":"115751488","name":"William
106
+ Morgan, Ph.D","screen_name":"willmorgan66","location":"Bloomington, IN","description":"Midwest
107
+ Political Science Association, Social Scientist, Higher ed, Publishing, Non-profit
108
+ management, Associations, Advocacy.","url":"http:\/\/t.co\/qeBLPjzygc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/qeBLPjzygc","expanded_url":"http:\/\/www.mpsanet.org","display_url":"mpsanet.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7371,"friends_count":7861,"listed_count":148,"created_at":"Fri
109
+ Feb 19 20:21:21 +0000 2010","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1927,"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\/527841972052955136\/9G-1Vboe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527841972052955136\/9G-1Vboe_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":2,"favorite_count":1,"entities":{"hashtags":[{"text":"opendata","indices":[33,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/CvjcTUM4Lw","expanded_url":"http:\/\/klou.tt\/nghr22y0fwe2","display_url":"klou.tt\/nghr22y0fwe2","indices":[46,68]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[51,60]}],"symbols":[],"user_mentions":[{"screen_name":"willmorgan66","name":"William
110
+ Morgan, Ph.D","id":115751488,"id_str":"115751488","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/CvjcTUM4Lw","expanded_url":"http:\/\/klou.tt\/nghr22y0fwe2","display_url":"klou.tt\/nghr22y0fwe2","indices":[64,86]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"es","result_type":"recent"},"created_at":"Sun
111
+ Aug 16 14:03:35 +0000 2015","id":632915611195154432,"id_str":"632915611195154432","text":"Taylor
112
+ Swift en acci\u00f3n. https:\/\/t.co\/vZM0sbkZMY","source":"\u003ca href=\"http:\/\/pikesley.org\"
113
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
114
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
115
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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\/vZM0sbkZMY","expanded_url":"https:\/\/lnkd.in\/eKE8QzY","display_url":"lnkd.in\/eKE8QzY","indices":[24,47]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
116
+ Aug 16 14:02:43 +0000 2015","id":632915392575352832,"id_str":"632915392575352832","text":"RT
117
+ @willmorgan66: Who is using all this government #opendata? - http:\/\/t.co\/CvjcTUM4Lw","source":"\u003ca
118
+ href=\"http:\/\/tweetfull.com\" rel=\"nofollow\"\u003eTweet Full\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":29292473,"id_str":"29292473","name":"Clifford
119
+ McDowell","screen_name":"cliffordious","location":"London","description":"Founder
120
+ of Doorda and open data guru. Loves analysis and tweaking the nose of bad
121
+ data. #OpenData #OpenGov\n\n\nLinkedin: https:\/\/t.co\/jEKlmlCwuD","url":"http:\/\/t.co\/2yJ7o9yoEo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/2yJ7o9yoEo","expanded_url":"http:\/\/www.doorda.com","display_url":"doorda.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jEKlmlCwuD","expanded_url":"https:\/\/uk.linkedin.com\/in\/cliffordmcdowell","display_url":"uk.linkedin.com\/in\/cliffordmcd\u2026","indices":[119,142]}]}},"protected":false,"followers_count":1646,"friends_count":1980,"listed_count":577,"created_at":"Mon
122
+ Apr 06 21:02:11 +0000 2009","favourites_count":8722,"utc_offset":3600,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":9186,"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\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29292473\/1422544067","profile_link_color":"4A913C","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
123
+ Aug 16 13:45:07 +0000 2015","id":632910964032081920,"id_str":"632910964032081920","text":"Who
124
+ is using all this government #opendata? - http:\/\/t.co\/CvjcTUM4Lw","source":"\u003ca
125
+ href=\"http:\/\/klout.com\" rel=\"nofollow\"\u003ePost with Klout\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":115751488,"id_str":"115751488","name":"William
126
+ Morgan, Ph.D","screen_name":"willmorgan66","location":"Bloomington, IN","description":"Midwest
127
+ Political Science Association, Social Scientist, Higher ed, Publishing, Non-profit
128
+ management, Associations, Advocacy.","url":"http:\/\/t.co\/qeBLPjzygc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/qeBLPjzygc","expanded_url":"http:\/\/www.mpsanet.org","display_url":"mpsanet.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7371,"friends_count":7861,"listed_count":148,"created_at":"Fri
129
+ Feb 19 20:21:21 +0000 2010","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1927,"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\/527841972052955136\/9G-1Vboe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527841972052955136\/9G-1Vboe_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":2,"favorite_count":1,"entities":{"hashtags":[{"text":"opendata","indices":[33,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/CvjcTUM4Lw","expanded_url":"http:\/\/klou.tt\/nghr22y0fwe2","display_url":"klou.tt\/nghr22y0fwe2","indices":[46,68]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[51,60]}],"symbols":[],"user_mentions":[{"screen_name":"willmorgan66","name":"William
130
+ Morgan, Ph.D","id":115751488,"id_str":"115751488","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/CvjcTUM4Lw","expanded_url":"http:\/\/klou.tt\/nghr22y0fwe2","display_url":"klou.tt\/nghr22y0fwe2","indices":[64,86]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
131
+ Aug 16 14:01:58 +0000 2015","id":632915204750184452,"id_str":"632915204750184452","text":"Nepal
132
+ earthquake: How open data and social media helped the Nepalese to help ...
133
+ http:\/\/t.co\/kd53MEfMou","source":"\u003ca href=\"http:\/\/www.snsanalytics.com\"
134
+ rel=\"nofollow\"\u003eSNS Analytics\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":614028185,"id_str":"614028185","name":"The
135
+ Nepal News","screen_name":"TheNepalNews","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":903,"friends_count":1639,"listed_count":2,"created_at":"Thu
136
+ Jun 21 04:52:19 +0000 2012","favourites_count":0,"utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"verified":false,"statuses_count":3005,"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\/593693489797304320\/MJTVmc7k.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593693489797304320\/MJTVmc7k.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593692871141666816\/d75ArSvt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593692871141666816\/d75ArSvt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614028185\/1430382423","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":[],"urls":[{"url":"http:\/\/t.co\/kd53MEfMou","expanded_url":"http:\/\/www.snsanalytics.com\/9y4Vy6","display_url":"snsanalytics.com\/9y4Vy6","indices":[81,103]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
137
+ Aug 16 14:00:10 +0000 2015","id":632914750003789824,"id_str":"632914750003789824","text":"The
138
+ (hidden) costs of open data -- and how to keep them down http:\/\/t.co\/cOOmNyEwiL","source":"\u003ca
139
+ href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\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":25334900,"id_str":"25334900","name":"GOVERNING","screen_name":"GOVERNING","location":"Washington,
140
+ D.C.","description":"Follow us for news and analysis of state and local government
141
+ politics, policy and management.","url":"http:\/\/t.co\/9GKDmBid0P","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9GKDmBid0P","expanded_url":"http:\/\/www.governing.com","display_url":"governing.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":16360,"friends_count":1574,"listed_count":791,"created_at":"Thu
142
+ Mar 19 16:47:56 +0000 2009","favourites_count":182,"utc_offset":-14400,"time_zone":"Eastern
143
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":15674,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DEDEDE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/682147596\/5e6d96bfbdf7d431c9c1ef1b5ea1a4ae.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/682147596\/5e6d96bfbdf7d431c9c1ef1b5ea1a4ae.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2705977674\/0646fc8ccb1ebbe4aa4fd0877eb62b3f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2705977674\/0646fc8ccb1ebbe4aa4fd0877eb62b3f_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25334900\/1438606228","profile_link_color":"F00010","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":[],"urls":[{"url":"http:\/\/t.co\/cOOmNyEwiL","expanded_url":"http:\/\/bit.ly\/1IYC9nw","display_url":"bit.ly\/1IYC9nw","indices":[61,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"es","result_type":"recent"},"created_at":"Sun
144
+ Aug 16 13:59:44 +0000 2015","id":632914643443433472,"id_str":"632914643443433472","text":"RTE
145
+ 2015 Alvaro Flores - Open data (english subtitles) | @scoopit http:\/\/t.co\/ixaSkW2LWi","source":"\u003ca
146
+ href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\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":520670131,"id_str":"520670131","name":"Arcanus","screen_name":"Arcanus_tco","location":"","description":"Tecn\u00f3logo
147
+ M\u00e9dico, Magister en cs de la ing. menci\u00f3n Bioteecn\u00f3log\u00edia,
148
+ nerd y orgulloso integrante del Partido Pirata de Chile \u24c5","url":"http:\/\/t.co\/pkXzPF2yNO","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/pkXzPF2yNO","expanded_url":"http:\/\/arcanusrandomstuffs.wordpress.com\/","display_url":"arcanusrandomstuffs.wordpress.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":352,"friends_count":1730,"listed_count":35,"created_at":"Sat
149
+ Mar 10 19:32:06 +0000 2012","favourites_count":607,"utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"verified":false,"statuses_count":20947,"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\/1941624225\/pedobear_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1941624225\/pedobear_normal.png","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":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[57,65]}],"urls":[{"url":"http:\/\/t.co\/ixaSkW2LWi","expanded_url":"http:\/\/ln.is\/www.scoop.it\/t\/softw\/bCpOK","display_url":"ln.is\/www.scoop.it\/t\u2026","indices":[66,88]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
150
+ Aug 16 13:57:49 +0000 2015","id":632914160909746181,"id_str":"632914160909746181","text":"RT
151
+ @farhana_bd: Is the #opendata discussion #open enough? http:\/\/t.co\/FfzWWsYoPl
152
+ #data #datascience #datasciencecentral #ict4d #ICTs #Globa\u2026","source":"\u003ca
153
+ 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":18976192,"id_str":"18976192","name":"Bobby
154
+ Caudill","screen_name":"BobbyCaudill","location":"Potomac Falls, Virginia","description":"Director,
155
+ Industry Marketing, US Public Sector @InformaticaCorp \u2013 Cloud\/Big Data\/Analytics\/Technology\/Marketing
156
+ - Opinions expressed here are my own.","url":"http:\/\/t.co\/xKtwAAZ7Ox","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xKtwAAZ7Ox","expanded_url":"http:\/\/about.me\/BobbyCaudill","display_url":"about.me\/BobbyCaudill","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1152,"friends_count":837,"listed_count":207,"created_at":"Wed
157
+ Jan 14 13:33:06 +0000 2009","favourites_count":16,"utc_offset":-14400,"time_zone":"Eastern
158
+ Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2307,"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\/492138314040754177\/6m0tO60d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492138314040754177\/6m0tO60d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18976192\/1391778562","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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
159
+ Aug 16 13:49:02 +0000 2015","id":632911951211790337,"id_str":"632911951211790337","text":"Is
160
+ the #opendata discussion #open enough? http:\/\/t.co\/FfzWWsYoPl #data #datascience
161
+ #datasciencecentral #ict4d #ICTs #GlobalDev #development","source":"\u003ca
162
+ 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":231753336,"id_str":"231753336","name":"Farhana
163
+ Akter","screen_name":"farhana_bd","location":"Dhaka, Bangladesh","description":"#Development
164
+ Activist for over 5 years. Program and Research Officer of VOICE. Interests:
165
+ Public Policy, #Governance, #Gender, #Globalization, #Aid, #ICT4D etc.","url":"http:\/\/t.co\/thuynCwjJJ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/thuynCwjJJ","expanded_url":"http:\/\/www.voicebd.org","display_url":"voicebd.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":1328,"listed_count":106,"created_at":"Wed
166
+ Dec 29 11:01:20 +0000 2010","favourites_count":24,"utc_offset":10800,"time_zone":"Volgograd","geo_enabled":false,"verified":false,"statuses_count":6588,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254109439\/fan_background_ver2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254109439\/fan_background_ver2.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1620094664\/Twitter_Profile_Picture_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1620094664\/Twitter_Profile_Picture_normal.JPG","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","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":1,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[7,16]},{"text":"open","indices":[28,33]},{"text":"data","indices":[65,70]},{"text":"datascience","indices":[71,83]},{"text":"datasciencecentral","indices":[84,103]},{"text":"ict4d","indices":[104,110]},{"text":"ICTs","indices":[111,116]},{"text":"GlobalDev","indices":[117,127]},{"text":"development","indices":[128,140]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/FfzWWsYoPl","expanded_url":"http:\/\/zunia.org\/post\/is-the-open-data-discussion-open-enough","display_url":"zunia.org\/post\/is-the-op\u2026","indices":[42,64]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[23,32]},{"text":"open","indices":[44,49]},{"text":"data","indices":[81,86]},{"text":"datascience","indices":[87,99]},{"text":"datasciencecentral","indices":[100,119]},{"text":"ict4d","indices":[120,126]},{"text":"ICTs","indices":[127,132]},{"text":"GlobalDev","indices":[133,140]},{"text":"development","indices":[139,140]}],"symbols":[],"user_mentions":[{"screen_name":"farhana_bd","name":"Farhana
167
+ Akter","id":231753336,"id_str":"231753336","indices":[3,14]}],"urls":[{"url":"http:\/\/t.co\/FfzWWsYoPl","expanded_url":"http:\/\/zunia.org\/post\/is-the-open-data-discussion-open-enough","display_url":"zunia.org\/post\/is-the-op\u2026","indices":[58,80]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
168
+ Aug 16 13:57:29 +0000 2015","id":632914077652787200,"id_str":"632914077652787200","text":"How
169
+ Taylor Swift and #socialmedia helped Nepal rebuild after earthquake.\nhttp:\/\/t.co\/OxTnVOUAj9
170
+ http:\/\/t.co\/EqGuw481nr","source":"\u003ca href=\"http:\/\/pikesley.org\"
171
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
172
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
173
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"socialmedia","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/OxTnVOUAj9","expanded_url":"http:\/\/goo.gl\/df8K35","display_url":"goo.gl\/df8K35","indices":[73,95]}],"media":[{"id":632858986073706496,"id_str":"632858986073706496","indices":[96,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","url":"http:\/\/t.co\/EqGuw481nr","display_url":"pic.twitter.com\/EqGuw481nr","expanded_url":"http:\/\/twitter.com\/iCreateworld4u\/status\/632869463340134400\/photo\/1","type":"photo","sizes":{"medium":{"w":340,"h":227,"resize":"fit"},"large":{"w":340,"h":227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":632869463340134400,"source_status_id_str":"632869463340134400","source_user_id":1953795199,"source_user_id_str":"1953795199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
174
+ Aug 16 13:56:29 +0000 2015","id":632913823058542592,"id_str":"632913823058542592","text":"#SocialMedia:
175
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/X5d4PQ98yQ\n
176
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
177
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
178
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
179
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/X5d4PQ98yQ","expanded_url":"http:\/\/chilp.it\/ac1e588","display_url":"chilp.it\/ac1e588","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"nl","result_type":"recent"},"created_at":"Sun
180
+ Aug 16 13:55:28 +0000 2015","id":632913568594309120,"id_str":"632913568594309120","text":"Taylor
181
+ Swift: waarom loopt het vaak in de soep? http:\/\/t.co\/PIunVQetkX #Consument
182
+ #Overheid","source":"\u003ca href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
183
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
184
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Consument","indices":[71,81]},{"text":"Overheid","indices":[82,91]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/PIunVQetkX","expanded_url":"http:\/\/tinyurl.com\/nvyyvky","display_url":"tinyurl.com\/nvyyvky","indices":[48,70]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Sun
185
+ Aug 16 13:53:37 +0000 2015","id":632913102883852289,"id_str":"632913102883852289","text":"RT
186
+ @AudeMathey: Pousser au clic droit mais pas statuer sur l''open data ? Cela
187
+ pousse \u00e0 la confusion et \u00e0 des usages malsains https:\/\/t.co\/t\u2026","source":"\u003ca
188
+ 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":3299142297,"id_str":"3299142297","name":"Jean
189
+ Baptiste ","screen_name":"JBCyrille","location":"","description":"Travaille
190
+ \u00e0 @mus\u00e9eXXXX. Cofondateur @Cadomus3D, membre @MuseomixBN. A \u00e9tudi\u00e9
191
+ conservation du patrimoine. #Mus\u00e9es, #M\u00e9diations & #Patrimoines.
192
+ Et num\u00e9rique.","url":"http:\/\/t.co\/his4bUSdcb","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/his4bUSdcb","expanded_url":"http:\/\/www.cadomus.org","display_url":"cadomus.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":177,"listed_count":9,"created_at":"Tue
193
+ May 26 12:55:09 +0000 2015","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":738,"lang":"fr","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\/632819140135399424\/ECayCqjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632819140135399424\/ECayCqjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3299142297\/1436027509","profile_link_color":"555C61","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":{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Sun
194
+ Aug 16 13:52:44 +0000 2015","id":632912881907068928,"id_str":"632912881907068928","text":"Pousser
195
+ au clic droit mais pas statuer sur l''open data ? Cela pousse \u00e0 la confusion
196
+ et \u00e0 des usages malsains https:\/\/t.co\/tpigGJfwAw","source":"\u003ca
197
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
198
+ 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":218142358,"id_str":"218142358","name":"Aude
199
+ MATHEY \/\/ C&C","screen_name":"AudeMathey","location":"Canada - France","description":"#museogeek
200
+ #geek #com & #culture @museomixMTL @muzeonum. Perso Blogueuse. Pro @Cirque.
201
+ Suivez-moi aussi sur http:\/\/t.co\/sZltRX29Wf","url":"http:\/\/t.co\/bVDhYzubmd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bVDhYzubmd","expanded_url":"http:\/\/culture-communication.fr","display_url":"culture-communication.fr","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/sZltRX29Wf","expanded_url":"http:\/\/www.facebook.com\/Cultureetcommunication","display_url":"facebook.com\/Cultureetcommu\u2026","indices":[108,130]}]}},"protected":false,"followers_count":2440,"friends_count":1293,"listed_count":129,"created_at":"Sun
202
+ Nov 21 14:57:27 +0000 2010","favourites_count":1287,"utc_offset":7200,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":5452,"lang":"fr","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\/450355765044187136\/q2cIzdhI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450355765044187136\/q2cIzdhI.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603307689783984129\/R_8IrH6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603307689783984129\/R_8IrH6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218142358\/1401992353","profile_link_color":"525657","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","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":632482934964928512,"quoted_status_id_str":"632482934964928512","quoted_status":{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Sat
203
+ Aug 15 09:24:17 +0000 2015","id":632482934964928512,"id_str":"632482934964928512","text":"Le
204
+ @MinistereCC aime parler d''#opendata mais pour les photos de mus\u00e9es
205
+ @fleurpellerin dit niet \ud83d\udc4e\ud83c\udffc http:\/\/t.co\/ZC08MkTBJY
206
+ via @nextinpact","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\"
207
+ 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":60649687,"id_str":"60649687","name":"Louvre
208
+ pour tous","screen_name":"louvrepourtous","location":"Paris","description":"MUS\u00c9ES,
209
+ ART & CULTURE \/ compte g\u00e9r\u00e9 par Bernard Hasquenoph, Paris, France","url":"http:\/\/t.co\/opQUs0nwNx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/opQUs0nwNx","expanded_url":"http:\/\/www.louvrepourtous.fr","display_url":"louvrepourtous.fr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":27034,"friends_count":1214,"listed_count":884,"created_at":"Mon
210
+ Jul 27 17:05:49 +0000 2009","favourites_count":7776,"utc_offset":7200,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":19028,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D0C0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563973842234646529\/OjEvGtRy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563973842234646529\/OjEvGtRy.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557448866492981250\/bq9OATUS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557448866492981250\/bq9OATUS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60649687\/1423296646","profile_link_color":"F20EB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0DC7FF","profile_text_color":"1F1818","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":22,"favorite_count":8,"entities":{"hashtags":[{"text":"opendata","indices":[30,39]}],"symbols":[],"user_mentions":[{"screen_name":"MinistereCC","name":"Minist\u00e8re
211
+ CultureCom","id":822984456,"id_str":"822984456","indices":[3,15]},{"screen_name":"fleurpellerin","name":"Fleur
212
+ Pellerin","id":38021678,"id_str":"38021678","indices":[71,85]},{"screen_name":"nextinpact","name":"Next
213
+ INpact.com","id":14813709,"id_str":"14813709","indices":[125,136]}],"urls":[{"url":"http:\/\/t.co\/ZC08MkTBJY","expanded_url":"http:\/\/www.nextinpact.com\/news\/96166-fleur-pellerin-peu-inspiree-par-licences-libres-pour-photos-musees.htm","display_url":"nextinpact.com\/news\/96166-fle\u2026","indices":[98,120]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tpigGJfwAw","expanded_url":"https:\/\/twitter.com\/louvrepourtous\/status\/632482934964928512","display_url":"twitter.com\/louvrepourtous\u2026","indices":[109,132]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AudeMathey","name":"Aude
214
+ MATHEY \/\/ C&C","id":218142358,"id_str":"218142358","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/tpigGJfwAw","expanded_url":"https:\/\/twitter.com\/louvrepourtous\/status\/632482934964928512","display_url":"twitter.com\/louvrepourtous\u2026","indices":[125,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Sun
215
+ Aug 16 13:52:44 +0000 2015","id":632912881907068928,"id_str":"632912881907068928","text":"Pousser
216
+ au clic droit mais pas statuer sur l''open data ? Cela pousse \u00e0 la confusion
217
+ et \u00e0 des usages malsains https:\/\/t.co\/tpigGJfwAw","source":"\u003ca
218
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
219
+ 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":218142358,"id_str":"218142358","name":"Aude
220
+ MATHEY \/\/ C&C","screen_name":"AudeMathey","location":"Canada - France","description":"#museogeek
221
+ #geek #com & #culture @museomixMTL @muzeonum. Perso Blogueuse. Pro @Cirque.
222
+ Suivez-moi aussi sur http:\/\/t.co\/sZltRX29Wf","url":"http:\/\/t.co\/bVDhYzubmd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bVDhYzubmd","expanded_url":"http:\/\/culture-communication.fr","display_url":"culture-communication.fr","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/sZltRX29Wf","expanded_url":"http:\/\/www.facebook.com\/Cultureetcommunication","display_url":"facebook.com\/Cultureetcommu\u2026","indices":[108,130]}]}},"protected":false,"followers_count":2440,"friends_count":1293,"listed_count":129,"created_at":"Sun
223
+ Nov 21 14:57:27 +0000 2010","favourites_count":1287,"utc_offset":7200,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":5452,"lang":"fr","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\/450355765044187136\/q2cIzdhI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450355765044187136\/q2cIzdhI.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603307689783984129\/R_8IrH6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603307689783984129\/R_8IrH6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218142358\/1401992353","profile_link_color":"525657","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","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":632482934964928512,"quoted_status_id_str":"632482934964928512","quoted_status":{"metadata":{"iso_language_code":"fr","result_type":"recent"},"created_at":"Sat
224
+ Aug 15 09:24:17 +0000 2015","id":632482934964928512,"id_str":"632482934964928512","text":"Le
225
+ @MinistereCC aime parler d''#opendata mais pour les photos de mus\u00e9es
226
+ @fleurpellerin dit niet \ud83d\udc4e\ud83c\udffc http:\/\/t.co\/ZC08MkTBJY
227
+ via @nextinpact","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\"
228
+ 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":60649687,"id_str":"60649687","name":"Louvre
229
+ pour tous","screen_name":"louvrepourtous","location":"Paris","description":"MUS\u00c9ES,
230
+ ART & CULTURE \/ compte g\u00e9r\u00e9 par Bernard Hasquenoph, Paris, France","url":"http:\/\/t.co\/opQUs0nwNx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/opQUs0nwNx","expanded_url":"http:\/\/www.louvrepourtous.fr","display_url":"louvrepourtous.fr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":27034,"friends_count":1214,"listed_count":884,"created_at":"Mon
231
+ Jul 27 17:05:49 +0000 2009","favourites_count":7776,"utc_offset":7200,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":19028,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D0C0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563973842234646529\/OjEvGtRy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563973842234646529\/OjEvGtRy.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557448866492981250\/bq9OATUS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557448866492981250\/bq9OATUS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60649687\/1423296646","profile_link_color":"F20EB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0DC7FF","profile_text_color":"1F1818","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":22,"favorite_count":8,"entities":{"hashtags":[{"text":"opendata","indices":[30,39]}],"symbols":[],"user_mentions":[{"screen_name":"MinistereCC","name":"Minist\u00e8re
232
+ CultureCom","id":822984456,"id_str":"822984456","indices":[3,15]},{"screen_name":"fleurpellerin","name":"Fleur
233
+ Pellerin","id":38021678,"id_str":"38021678","indices":[71,85]},{"screen_name":"nextinpact","name":"Next
234
+ INpact.com","id":14813709,"id_str":"14813709","indices":[125,136]}],"urls":[{"url":"http:\/\/t.co\/ZC08MkTBJY","expanded_url":"http:\/\/www.nextinpact.com\/news\/96166-fleur-pellerin-peu-inspiree-par-licences-libres-pour-photos-musees.htm","display_url":"nextinpact.com\/news\/96166-fle\u2026","indices":[98,120]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tpigGJfwAw","expanded_url":"https:\/\/twitter.com\/louvrepourtous\/status\/632482934964928512","display_url":"twitter.com\/louvrepourtous\u2026","indices":[109,132]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
235
+ Aug 16 13:51:52 +0000 2015","id":632912664138784768,"id_str":"632912664138784768","text":"#SocialMedia:
236
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/xjf6iUKTU4\n
237
+ #ITjob\u261bhttp:\/\/t.co\/L5aCcW0JdC","source":"\u003ca href=\"http:\/\/ifttt.com\"
238
+ rel=\"nofollow\"\u003eIFTTT\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":2738184725,"id_str":"2738184725","name":"Nepal
239
+ Bot","screen_name":"BotNepal","location":"Nepal","description":"","url":"http:\/\/t.co\/juWx6EgFKd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/juWx6EgFKd","expanded_url":"http:\/\/twitter.com\/nepalbot","display_url":"twitter.com\/nepalbot","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":3,"listed_count":28,"created_at":"Sat
240
+ Aug 09 15:08:01 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10454,"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\/631342729415532544\/QYCYoCLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631342729415532544\/QYCYoCLs_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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/xjf6iUKTU4","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/L5aCcW0JdC","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
241
+ Aug 16 13:51:25 +0000 2015","id":632912551030968320,"id_str":"632912551030968320","text":"Is
242
+ the Taylor Swift discussion open enough? http:\/\/t.co\/yFjDQKzFXF #TaylorSwift","source":"\u003ca
243
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
244
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
245
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/yFjDQKzFXF","expanded_url":"http:\/\/bit.ly\/1DV5mEd","display_url":"bit.ly\/1DV5mEd","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
246
+ Aug 16 13:50:25 +0000 2015","id":632912296558374912,"id_str":"632912296558374912","text":"Taylor
247
+ Swift and crowdfunding can breathe new life into democracy http:\/\/t.co\/KjgkbE3jUg
248
+ #crowdfunding #TaylorSwift #Publiek","source":"\u003ca href=\"http:\/\/pikesley.org\"
249
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
250
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
251
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"crowdfunding","indices":[89,102]},{"text":"TaylorSwift","indices":[103,115]},{"text":"Publiek","indices":[116,124]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KjgkbE3jUg","expanded_url":"http:\/\/tinyurl.com\/pepfokf","display_url":"tinyurl.com\/pepfokf","indices":[66,88]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"es","result_type":"recent"},"created_at":"Sun
252
+ Aug 16 13:50:21 +0000 2015","id":632912283312746496,"id_str":"632912283312746496","text":"RT
253
+ @OSHLUMH: ''Open Data'' en acci\u00f3n: http:\/\/t.co\/NilLsozehy #tecnolog\u00eda","source":"\u003ca
254
+ href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
255
+ 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":119194516,"id_str":"119194516","name":"Diego
256
+ Gustavo Vega","screen_name":"dgustavovega","location":"Argentina","description":"Cultura
257
+ Libre y Trabajo Colaborativo desde el Estado y la Educaci\u00f3n","url":"http:\/\/t.co\/g5WNTsI4sj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/g5WNTsI4sj","expanded_url":"http:\/\/culturalibremunicipal.blogspot.com","display_url":"culturalibremunicipal.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":440,"friends_count":787,"listed_count":33,"created_at":"Tue
258
+ Mar 02 23:16:42 +0000 2010","favourites_count":2564,"utc_offset":-10800,"time_zone":"Buenos
259
+ Aires","geo_enabled":true,"verified":false,"statuses_count":7684,"lang":"es","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\/258303365\/Widescreen_Diary_of_a_businessman_011536_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/258303365\/Widescreen_Diary_of_a_businessman_011536_.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145001705\/3aca9cd8-c71f-4d10-a9f2-1927d38a8681_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145001705\/3aca9cd8-c71f-4d10-a9f2-1927d38a8681_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119194516\/1398219596","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,"retweeted_status":{"metadata":{"iso_language_code":"es","result_type":"recent"},"created_at":"Sat
260
+ Aug 15 09:01:46 +0000 2015","id":632477268057661440,"id_str":"632477268057661440","text":"''Open
261
+ Data'' en acci\u00f3n: http:\/\/t.co\/NilLsozehy #tecnolog\u00eda","source":"\u003ca
262
+ 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,"user":{"id":1241153966,"id_str":"1241153966","name":"OSHLUMH","screen_name":"OSHLUMH","location":"","description":"Oficina
263
+ de Software y Hardware Libre de la @universidadMH","url":"http:\/\/t.co\/ElfVJUUF1j","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ElfVJUUF1j","expanded_url":"http:\/\/oshl.edu.umh.es","display_url":"oshl.edu.umh.es","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2884,"friends_count":1365,"listed_count":159,"created_at":"Mon
264
+ Mar 04 11:36:10 +0000 2013","favourites_count":340,"utc_offset":7200,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":3606,"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\/3337460194\/82f7acb56d6cc018db102b90b4241db1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3337460194\/82f7acb56d6cc018db102b90b4241db1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241153966\/1423826640","profile_link_color":"D68521","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,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"tecnolog\u00eda","indices":[46,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/NilLsozehy","expanded_url":"http:\/\/ow.ly\/QQyVB","display_url":"ow.ly\/QQyVB","indices":[23,45]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"tecnolog\u00eda","indices":[59,70]}],"symbols":[],"user_mentions":[{"screen_name":"OSHLUMH","name":"OSHLUMH","id":1241153966,"id_str":"1241153966","indices":[3,11]}],"urls":[{"url":"http:\/\/t.co\/NilLsozehy","expanded_url":"http:\/\/ow.ly\/QQyVB","display_url":"ow.ly\/QQyVB","indices":[36,58]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"metadata":{"iso_language_code":"es","result_type":"recent"},"created_at":"Sun
265
+ Aug 16 13:49:27 +0000 2015","id":632912056790847489,"id_str":"632912056790847489","text":"Open
266
+ Data en acci\u00f3n. https:\/\/t.co\/tZ7Jl8rA6m","source":"\u003ca href=\"http:\/\/www.linkedin.com\/\"
267
+ rel=\"nofollow\"\u003eLinkedIn\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":119194516,"id_str":"119194516","name":"Diego
268
+ Gustavo Vega","screen_name":"dgustavovega","location":"Argentina","description":"Cultura
269
+ Libre y Trabajo Colaborativo desde el Estado y la Educaci\u00f3n","url":"http:\/\/t.co\/g5WNTsI4sj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/g5WNTsI4sj","expanded_url":"http:\/\/culturalibremunicipal.blogspot.com","display_url":"culturalibremunicipal.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":440,"friends_count":787,"listed_count":33,"created_at":"Tue
270
+ Mar 02 23:16:42 +0000 2010","favourites_count":2564,"utc_offset":-10800,"time_zone":"Buenos
271
+ Aires","geo_enabled":true,"verified":false,"statuses_count":7684,"lang":"es","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\/258303365\/Widescreen_Diary_of_a_businessman_011536_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/258303365\/Widescreen_Diary_of_a_businessman_011536_.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145001705\/3aca9cd8-c71f-4d10-a9f2-1927d38a8681_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145001705\/3aca9cd8-c71f-4d10-a9f2-1927d38a8681_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119194516\/1398219596","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":[],"urls":[{"url":"https:\/\/t.co\/tZ7Jl8rA6m","expanded_url":"https:\/\/lnkd.in\/eKE8QzY","display_url":"lnkd.in\/eKE8QzY","indices":[21,44]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
272
+ Aug 16 13:49:24 +0000 2015","id":632912041674711041,"id_str":"632912041674711041","text":"Is
273
+ the #TaylorSwift discussion open enough? http:\/\/t.co\/OAt1awVBVn @davesaldivar
274
+ via @OxfamAmerica #globaldev HT @intldogooder #data4dev","source":"\u003ca
275
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
276
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
277
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[7,19]},{"text":"globaldev","indices":[99,109]},{"text":"data4dev","indices":[127,136]}],"symbols":[],"user_mentions":[{"screen_name":"davesaldivar","name":"David
278
+ Saldivar","id":23722998,"id_str":"23722998","indices":[67,80]},{"screen_name":"OxfamAmerica","name":"Oxfam
279
+ America","id":11695602,"id_str":"11695602","indices":[85,98]},{"screen_name":"intldogooder","name":"How
280
+ Matters","id":167203538,"id_str":"167203538","indices":[113,126]}],"urls":[{"url":"http:\/\/t.co\/OAt1awVBVn","expanded_url":"http:\/\/ow.ly\/QUrKe","display_url":"ow.ly\/QUrKe","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
281
+ Aug 16 13:49:02 +0000 2015","id":632911951564156928,"id_str":"632911951564156928","text":"Is
282
+ the #opendata discussion #open enough? http:\/\/t.co\/uyx5hXleiJ #data #datascience
283
+ #datasciencecentral #ict4d #ICTs #GlobalDev #development","source":"\u003ca
284
+ 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":250904023,"id_str":"250904023","name":"DChakraborty","screen_name":"Devbd","location":"","description":"Spent
285
+ half a life in #Research #ICT4D #Development. Android app developer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":1592,"listed_count":75,"created_at":"Sat
286
+ Feb 12 01:42:10 +0000 2011","favourites_count":3,"utc_offset":21600,"time_zone":"Dhaka","geo_enabled":false,"verified":false,"statuses_count":6497,"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\/254033513\/fan_background_ver2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254033513\/fan_background_ver2.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2222944635\/New_Twitter_Profile_Picture_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2222944635\/New_Twitter_Profile_Picture_normal.jpg","profile_link_color":"02127A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"E3EEFA","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":2,"entities":{"hashtags":[{"text":"opendata","indices":[7,16]},{"text":"open","indices":[28,33]},{"text":"data","indices":[65,70]},{"text":"datascience","indices":[71,83]},{"text":"datasciencecentral","indices":[84,103]},{"text":"ict4d","indices":[104,110]},{"text":"ICTs","indices":[111,116]},{"text":"GlobalDev","indices":[117,127]},{"text":"development","indices":[128,140]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/uyx5hXleiJ","expanded_url":"http:\/\/zunia.org\/post\/is-the-open-data-discussion-open-enough","display_url":"zunia.org\/post\/is-the-op\u2026","indices":[42,64]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
287
+ Aug 16 13:49:02 +0000 2015","id":632911951211790337,"id_str":"632911951211790337","text":"Is
288
+ the #opendata discussion #open enough? http:\/\/t.co\/FfzWWsYoPl #data #datascience
289
+ #datasciencecentral #ict4d #ICTs #GlobalDev #development","source":"\u003ca
290
+ 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":231753336,"id_str":"231753336","name":"Farhana
291
+ Akter","screen_name":"farhana_bd","location":"Dhaka, Bangladesh","description":"#Development
292
+ Activist for over 5 years. Program and Research Officer of VOICE. Interests:
293
+ Public Policy, #Governance, #Gender, #Globalization, #Aid, #ICT4D etc.","url":"http:\/\/t.co\/thuynCwjJJ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/thuynCwjJJ","expanded_url":"http:\/\/www.voicebd.org","display_url":"voicebd.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":1328,"listed_count":106,"created_at":"Wed
294
+ Dec 29 11:01:20 +0000 2010","favourites_count":24,"utc_offset":10800,"time_zone":"Volgograd","geo_enabled":false,"verified":false,"statuses_count":6588,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254109439\/fan_background_ver2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254109439\/fan_background_ver2.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1620094664\/Twitter_Profile_Picture_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1620094664\/Twitter_Profile_Picture_normal.JPG","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","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":1,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[7,16]},{"text":"open","indices":[28,33]},{"text":"data","indices":[65,70]},{"text":"datascience","indices":[71,83]},{"text":"datasciencecentral","indices":[84,103]},{"text":"ict4d","indices":[104,110]},{"text":"ICTs","indices":[111,116]},{"text":"GlobalDev","indices":[117,127]},{"text":"development","indices":[128,140]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/FfzWWsYoPl","expanded_url":"http:\/\/zunia.org\/post\/is-the-open-data-discussion-open-enough","display_url":"zunia.org\/post\/is-the-op\u2026","indices":[42,64]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
295
+ Aug 16 13:48:23 +0000 2015","id":632911787256639488,"id_str":"632911787256639488","text":"#SocialMedia:
296
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/a4tKwkZ27E\n
297
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
298
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
299
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
300
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/a4tKwkZ27E","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
301
+ Aug 16 13:47:56 +0000 2015","id":632911675075592192,"id_str":"632911675075592192","text":"thinking
302
+ of a name for our open data compliance tracker for government agencies. the
303
+ following tweets may be cringeworthy. PARENTAL GUIDANCE","source":"\u003ca
304
+ 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":165477080,"id_str":"165477080","name":"Pepe
305
+ Bawagan","screen_name":"syk0saje","location":"Metro Manila, Philippines","description":"The
306
+ most awesome person you will never know.\n\nThoughts are not my own, they
307
+ belong to god and the government. \/s","url":"http:\/\/t.co\/tTzD73AC3j","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/tTzD73AC3j","expanded_url":"http:\/\/syk0saje.com","display_url":"syk0saje.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":305,"friends_count":304,"listed_count":20,"created_at":"Sun
308
+ Jul 11 17:46:20 +0000 2010","favourites_count":5690,"utc_offset":28800,"time_zone":"Hong
309
+ Kong","geo_enabled":false,"verified":false,"statuses_count":7574,"lang":"en","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\/604410557\/o3lr9xm1v98bqm66jr2q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604410557\/o3lr9xm1v98bqm66jr2q.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624274519134445568\/is3I3-92_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624274519134445568\/is3I3-92_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165477080\/1399131672","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","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},"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"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
310
+ Aug 16 13:47:39 +0000 2015","id":632911603797651456,"id_str":"632911603797651456","text":"#SocialMedia:
311
+ Nepal earthquake: How open data and social media helped the Nepa... http:\/\/t.co\/P2ySKTJR5q
312
+ #ITjob\u261bhttp:\/\/t.co\/rJkeq7xMaL","source":"\u003ca href=\"http:\/\/twitterfeed.com\"
313
+ 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,"user":{"id":67531161,"id_str":"67531161","name":"Web''s
314
+ Eye View","screen_name":"ExploreWeb2dot0","location":"USA","description":"Social
315
+ media, social networking, social networks, SMM, marketing, web 2.0, etc. (Visit
316
+ our blog \u261b http:\/\/t.co\/QQaYudFurL)","url":"https:\/\/t.co\/jdevyaTIRM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jdevyaTIRM","expanded_url":"https:\/\/plus.google.com\/106927175947074277294\/posts","display_url":"plus.google.com\/10692717594707\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"http:\/\/t.co\/QQaYudFurL","expanded_url":"http:\/\/goo.gl\/1uK0xV","display_url":"goo.gl\/1uK0xV","indices":[98,120]}]}},"protected":false,"followers_count":7320,"friends_count":6612,"listed_count":962,"created_at":"Fri
317
+ Aug 21 05:06:41 +0000 2009","favourites_count":6,"utc_offset":-14400,"time_zone":"Eastern
318
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":351746,"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\/577832064130527233\/dswb_ru9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577832064130527233\/dswb_ru9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67531161\/1426600934","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[105,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/P2ySKTJR5q","expanded_url":"http:\/\/tinyurl.com\/qze3cau","display_url":"tinyurl.com\/qze3cau","indices":[82,104]},{"url":"http:\/\/t.co\/rJkeq7xMaL","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[112,134]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
319
+ Aug 16 13:47:36 +0000 2015","id":632911587544711169,"id_str":"632911587544711169","text":"#SocialMedia:
320
+ Nepal earthquake: How open data and social media helped the Nepa... http:\/\/t.co\/KB5dbDBTFT
321
+ #ITjob\u261bhttp:\/\/t.co\/yjSFtPHXPo","source":"\u003ca href=\"http:\/\/twitterfeed.com\"
322
+ 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,"user":{"id":69196651,"id_str":"69196651","name":"Web
323
+ Marketing Buzz","screen_name":"Go2WebMarketing","location":"USA","description":"Web
324
+ marketing, internet marketing, online marketing, social media marketing (SMM),
325
+ etc. (Visit our blog \u261b http:\/\/t.co\/QQaYudFurL)","url":"https:\/\/t.co\/jdevyaTIRM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jdevyaTIRM","expanded_url":"https:\/\/plus.google.com\/106927175947074277294\/posts","display_url":"plus.google.com\/10692717594707\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"http:\/\/t.co\/QQaYudFurL","expanded_url":"http:\/\/goo.gl\/1uK0xV","display_url":"goo.gl\/1uK0xV","indices":[106,128]}]}},"protected":false,"followers_count":5297,"friends_count":4271,"listed_count":879,"created_at":"Thu
326
+ Aug 27 04:08:55 +0000 2009","favourites_count":11,"utc_offset":-14400,"time_zone":"Eastern
327
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":313264,"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\/1216881757\/world_globe_in_hands_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216881757\/world_globe_in_hands_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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[105,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KB5dbDBTFT","expanded_url":"http:\/\/tinyurl.com\/qze3cau","display_url":"tinyurl.com\/qze3cau","indices":[82,104]},{"url":"http:\/\/t.co\/yjSFtPHXPo","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[112,134]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
328
+ Aug 16 13:47:22 +0000 2015","id":632911532733689856,"id_str":"632911532733689856","text":"\"What
329
+ Taylor Swift can do for Africa\u2019s growing population?\" by @LudaBujoreanu
330
+ on @LinkedIn https:\/\/t.co\/6jHs3V0uMY","source":"\u003ca href=\"http:\/\/pikesley.org\"
331
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
332
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
333
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"screen_name":"LudaBujoreanu","name":"Luda
334
+ ","id":499084045,"id_str":"499084045","indices":[63,77]},{"screen_name":"LinkedIn","name":"LinkedIn","id":13058772,"id_str":"13058772","indices":[81,90]}],"urls":[{"url":"https:\/\/t.co\/6jHs3V0uMY","expanded_url":"https:\/\/www.linkedin.com\/pulse\/what-open-data-can-do-africas-growing-population-luda-bujoreanu","display_url":"linkedin.com\/pulse\/what-ope\u2026","indices":[91,114]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
335
+ Aug 16 13:46:40 +0000 2015","id":632911356186853376,"id_str":"632911356186853376","text":"RT
336
+ @JoelGurin: Excitement building for Africa #OpenData Conf, Tanzania Sept 4-5.
337
+ @LudaBujoreanu and the #ImpactMap tell you why. http:\/\/t.c\u2026","source":"\u003ca
338
+ href=\"http:\/\/tweetfull.com\" rel=\"nofollow\"\u003eTweet Full\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":29292473,"id_str":"29292473","name":"Clifford
339
+ McDowell","screen_name":"cliffordious","location":"London","description":"Founder
340
+ of Doorda and open data guru. Loves analysis and tweaking the nose of bad
341
+ data. #OpenData #OpenGov\n\n\nLinkedin: https:\/\/t.co\/jEKlmlCwuD","url":"http:\/\/t.co\/2yJ7o9yoEo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/2yJ7o9yoEo","expanded_url":"http:\/\/www.doorda.com","display_url":"doorda.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jEKlmlCwuD","expanded_url":"https:\/\/uk.linkedin.com\/in\/cliffordmcdowell","display_url":"uk.linkedin.com\/in\/cliffordmcd\u2026","indices":[119,142]}]}},"protected":false,"followers_count":1646,"friends_count":1980,"listed_count":577,"created_at":"Mon
342
+ Apr 06 21:02:11 +0000 2009","favourites_count":8722,"utc_offset":3600,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":9186,"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\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29292473\/1422544067","profile_link_color":"4A913C","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
343
+ Aug 16 13:33:10 +0000 2015","id":632907958100361216,"id_str":"632907958100361216","text":"Excitement
344
+ building for Africa #OpenData Conf, Tanzania Sept 4-5. @LudaBujoreanu and
345
+ the #ImpactMap tell you why. http:\/\/t.co\/r8P6nFEzgI","source":"\u003ca
346
+ 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":226602721,"id_str":"226602721","name":"Joel
347
+ Gurin","screen_name":"JoelGurin","location":"Washington, DC","description":"President
348
+ and Founder of Center for Open Data Enterprise, author of Open Data Now. Working
349
+ to put #OpenData to the best possible use.","url":"http:\/\/t.co\/v5UCSVDdll","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/v5UCSVDdll","expanded_url":"http:\/\/OpenDataEnterprise.org","display_url":"OpenDataEnterprise.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1785,"friends_count":474,"listed_count":174,"created_at":"Tue
350
+ Dec 14 16:02:37 +0000 2010","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":974,"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\/424910099987955712\/u5jLEDna_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424910099987955712\/u5jLEDna_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":{"id":"dea1eac2d7ef8878","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/dea1eac2d7ef8878.json","place_type":"admin","name":"Maryland","full_name":"Maryland,
351
+ USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.487651,37.886607],[-74.986286,37.886607],[-74.986286,39.723622],[-79.487651,39.723622]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[{"text":"OpenData","indices":[31,40]},{"text":"ImpactMap","indices":[89,99]}],"symbols":[],"user_mentions":[{"screen_name":"LudaBujoreanu","name":"Luda
352
+ ","id":499084045,"id_str":"499084045","indices":[66,80]}],"urls":[{"url":"http:\/\/t.co\/r8P6nFEzgI","expanded_url":"http:\/\/blogs.worldbank.org\/ic4d\/what-open-data-can-do-africa-s-growing-population","display_url":"blogs.worldbank.org\/ic4d\/what-open\u2026","indices":[114,136]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"OpenData","indices":[46,55]},{"text":"ImpactMap","indices":[104,114]}],"symbols":[],"user_mentions":[{"screen_name":"JoelGurin","name":"Joel
353
+ Gurin","id":226602721,"id_str":"226602721","indices":[3,13]},{"screen_name":"LudaBujoreanu","name":"Luda
354
+ ","id":499084045,"id_str":"499084045","indices":[81,95]}],"urls":[{"url":"http:\/\/t.co\/r8P6nFEzgI","expanded_url":"http:\/\/blogs.worldbank.org\/ic4d\/what-open-data-can-do-africa-s-growing-population","display_url":"blogs.worldbank.org\/ic4d\/what-open\u2026","indices":[139,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
355
+ Aug 16 13:46:22 +0000 2015","id":632911277933858816,"id_str":"632911277933858816","text":"#Bitcoin
356
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
357
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/wB8gRH53jd","source":"\u003ca href=\"http:\/\/pikesley.org\"
358
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
359
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
360
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/wB8gRH53jd","display_url":"pic.twitter.com\/wB8gRH53jd","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
361
+ Aug 16 13:45:07 +0000 2015","id":632910964032081920,"id_str":"632910964032081920","text":"Who
362
+ is using all this government #opendata? - http:\/\/t.co\/CvjcTUM4Lw","source":"\u003ca
363
+ href=\"http:\/\/klout.com\" rel=\"nofollow\"\u003ePost with Klout\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":115751488,"id_str":"115751488","name":"William
364
+ Morgan, Ph.D","screen_name":"willmorgan66","location":"Bloomington, IN","description":"Midwest
365
+ Political Science Association, Social Scientist, Higher ed, Publishing, Non-profit
366
+ management, Associations, Advocacy.","url":"http:\/\/t.co\/qeBLPjzygc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/qeBLPjzygc","expanded_url":"http:\/\/www.mpsanet.org","display_url":"mpsanet.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7371,"friends_count":7861,"listed_count":148,"created_at":"Fri
367
+ Feb 19 20:21:21 +0000 2010","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1927,"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\/527841972052955136\/9G-1Vboe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527841972052955136\/9G-1Vboe_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":2,"favorite_count":1,"entities":{"hashtags":[{"text":"opendata","indices":[33,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/CvjcTUM4Lw","expanded_url":"http:\/\/klou.tt\/nghr22y0fwe2","display_url":"klou.tt\/nghr22y0fwe2","indices":[46,68]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
368
+ Aug 16 13:42:59 +0000 2015","id":632910428939620352,"id_str":"632910428939620352","text":"RT
369
+ @t_s_institute: Understanding the value of #TaylorSwift: what it is and how
370
+ to use it? http:\/\/t.co\/IuNP1bE9cL #bigdata http:\/\/t.co\/eCKhm\u2026","source":"\u003ca
371
+ href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
372
+ 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":492685422,"id_str":"492685422","name":"Bias","screen_name":"_Bias","location":"Fairfax,
373
+ VA","description":"#Twitter is an insidious form of censorship masquerading
374
+ as Free Speech!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4774,"friends_count":5246,"listed_count":191,"created_at":"Wed
375
+ Feb 15 00:41:10 +0000 2012","favourites_count":14671,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41777,"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\/590899505614041088\/EzuoGeec.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590899505614041088\/EzuoGeec.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615293583713783808\/5RR_wQBN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615293583713783808\/5RR_wQBN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492685422\/1430769373","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
376
+ Aug 16 13:34:12 +0000 2015","id":632908216230375424,"id_str":"632908216230375424","text":"Understanding
377
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
378
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
379
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
380
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
381
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":1,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[46,58]},{"text":"bigdata","indices":[113,121]}],"symbols":[],"user_mentions":[{"screen_name":"t_s_institute","name":"OpenDataTaylorSwift","id":3407124952,"id_str":"3407124952","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[90,112]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
382
+ Aug 16 13:42:19 +0000 2015","id":632910258789314560,"id_str":"632910258789314560","text":"ODI
383
+ urges government not to use #TaylorSwift as an excuse to clamp down on #FOI
384
+ http:\/\/t.co\/rHu82pdb3l","source":"\u003ca href=\"http:\/\/pikesley.org\"
385
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
386
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
387
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[32,44]},{"text":"FOI","indices":[75,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/rHu82pdb3l","expanded_url":"http:\/\/diginomica.com\/2015\/08\/10\/odi-urges-government-not-to-use-open-data-as-an-excuse-to-clamp-down-on-fois\/#.VdCI9op4WnM","display_url":"diginomica.com\/2015\/08\/10\/odi\u2026","indices":[80,102]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
388
+ Aug 16 13:41:18 +0000 2015","id":632910004274753536,"id_str":"632910004274753536","text":"#Bitcoin
389
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
390
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/yzmIZ5r9Bf","source":"\u003ca href=\"http:\/\/pikesley.org\"
391
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
392
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
393
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632902621792219136,"id_str":"632902621792219136","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","url":"http:\/\/t.co\/yzmIZ5r9Bf","display_url":"pic.twitter.com\/yzmIZ5r9Bf","expanded_url":"http:\/\/twitter.com\/BitcoinzWoman\/status\/632902624279441408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632902624279441408,"source_status_id_str":"632902624279441408","source_user_id":2828426172,"source_user_id_str":"2828426172"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
394
+ Aug 16 13:40:43 +0000 2015","id":632909855683121152,"id_str":"632909855683121152","text":"RT
395
+ @t_s_institute: Understanding the value of #TaylorSwift: what it is and how
396
+ to use it? http:\/\/t.co\/IuNP1bE9cL #bigdata http:\/\/t.co\/eCKhm\u2026","source":"\u003ca
397
+ href=\"https:\/\/gamedevbrain.wordpress.com\/\" rel=\"nofollow\"\u003eBigDataTweetBot\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":3356052532,"id_str":"3356052532","name":"Big
398
+ Data Tweet","screen_name":"BigDataTweetBot","location":"","description":"I
399
+ retweet #bigdata follow to get a feed of all that is tweeted about this subject.
400
+ createdby @magicrat_larry","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1340,"friends_count":254,"listed_count":1016,"created_at":"Fri
401
+ Jul 03 01:30:20 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97459,"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\/616793252524650496\/bQbxJqmz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616793252524650496\/bQbxJqmz_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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
402
+ Aug 16 13:34:12 +0000 2015","id":632908216230375424,"id_str":"632908216230375424","text":"Understanding
403
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
404
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
405
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
406
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
407
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":1,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[46,58]},{"text":"bigdata","indices":[113,121]}],"symbols":[],"user_mentions":[{"screen_name":"t_s_institute","name":"OpenDataTaylorSwift","id":3407124952,"id_str":"3407124952","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[90,112]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
408
+ Aug 16 13:40:22 +0000 2015","id":632909769104211968,"id_str":"632909769104211968","text":"RT
409
+ @t_s_institute: Understanding the value of #TaylorSwift: what it is and how
410
+ to use it? http:\/\/t.co\/IuNP1bE9cL #bigdata http:\/\/t.co\/eCKhm\u2026","source":"\u003ca
411
+ href=\"http:\/\/www.simbasystems.com\" rel=\"nofollow\"\u003eNoSQLDigest\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":2704548373,"id_str":"2704548373","name":"NoSQL","screen_name":"NoSQLDigest","location":"","description":"NoSQL
412
+ Digest of tweets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8966,"friends_count":12,"listed_count":4867,"created_at":"Sun
413
+ Aug 03 17:07:24 +0000 2014","favourites_count":75,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":641775,"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\/499257180009529344\/CSWhr7LZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499257180009529344\/CSWhr7LZ_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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
414
+ Aug 16 13:10:53 +0000 2015","id":632902350894669824,"id_str":"632902350894669824","text":"Understanding
415
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
416
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
417
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
418
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
419
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[46,58]},{"text":"bigdata","indices":[113,121]}],"symbols":[],"user_mentions":[{"screen_name":"t_s_institute","name":"OpenDataTaylorSwift","id":3407124952,"id_str":"3407124952","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[90,112]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
420
+ Aug 16 13:40:17 +0000 2015","id":632909749625954304,"id_str":"632909749625954304","text":"These
421
+ Taylor Swift pioneers are making cities smart and workforces diverse http:\/\/t.co\/qUyYtONp5T
422
+ http:\/\/t.co\/lBNwnspEhn","source":"\u003ca href=\"http:\/\/pikesley.org\"
423
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
424
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
425
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":"http:\/\/t.co\/qUyYtONp5T","expanded_url":"http:\/\/buff.ly\/1JkhFf7","display_url":"buff.ly\/1JkhFf7","indices":[75,97]}],"media":[{"id":632905669226704896,"id_str":"632905669226704896","indices":[98,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CMiIWlaWsAAlplw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMiIWlaWsAAlplw.jpg","url":"http:\/\/t.co\/lBNwnspEhn","display_url":"pic.twitter.com\/lBNwnspEhn","expanded_url":"http:\/\/twitter.com\/noelito\/status\/632905669323173888\/photo\/1","type":"photo","sizes":{"large":{"w":620,"h":372,"resize":"fit"},"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":632905669323173888,"source_status_id_str":"632905669323173888","source_user_id":16361040,"source_user_id_str":"16361040"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
426
+ Aug 16 13:38:16 +0000 2015","id":632909240663998464,"id_str":"632909240663998464","text":"Excitement
427
+ building for Africa #TaylorSwift Conf, Tanzania Sept 4-5. @LudaBujoreanu and
428
+ the #ImpactMap tell you why. http:\/\/t.co\/ISYDqmECoI","source":"\u003ca
429
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
430
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
431
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[31,43]},{"text":"ImpactMap","indices":[92,102]}],"symbols":[],"user_mentions":[{"screen_name":"LudaBujoreanu","name":"Luda
432
+ ","id":499084045,"id_str":"499084045","indices":[69,83]}],"urls":[{"url":"http:\/\/t.co\/ISYDqmECoI","expanded_url":"http:\/\/blogs.worldbank.org\/ic4d\/what-open-data-can-do-africa-s-growing-population","display_url":"blogs.worldbank.org\/ic4d\/what-open\u2026","indices":[117,139]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
433
+ Aug 16 13:36:14 +0000 2015","id":632908726832353284,"id_str":"632908726832353284","text":"Gartner
434
+ says Taylor Swift, analytics, online citizen IDs are the future of government
435
+ technology - GovFresh http:\/\/t.co\/geFsBFLVXc","source":"\u003ca href=\"http:\/\/pikesley.org\"
436
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
437
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
438
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
439
+ Aug 16 13:34:12 +0000 2015","id":632908216230375424,"id_str":"632908216230375424","text":"Understanding
440
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
441
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
442
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
443
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
444
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":1,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
445
+ Aug 16 13:33:10 +0000 2015","id":632907958100361216,"id_str":"632907958100361216","text":"Excitement
446
+ building for Africa #OpenData Conf, Tanzania Sept 4-5. @LudaBujoreanu and
447
+ the #ImpactMap tell you why. http:\/\/t.co\/r8P6nFEzgI","source":"\u003ca
448
+ 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":226602721,"id_str":"226602721","name":"Joel
449
+ Gurin","screen_name":"JoelGurin","location":"Washington, DC","description":"President
450
+ and Founder of Center for Open Data Enterprise, author of Open Data Now. Working
451
+ to put #OpenData to the best possible use.","url":"http:\/\/t.co\/v5UCSVDdll","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/v5UCSVDdll","expanded_url":"http:\/\/OpenDataEnterprise.org","display_url":"OpenDataEnterprise.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1785,"friends_count":474,"listed_count":174,"created_at":"Tue
452
+ Dec 14 16:02:37 +0000 2010","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":974,"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\/424910099987955712\/u5jLEDna_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424910099987955712\/u5jLEDna_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":{"id":"dea1eac2d7ef8878","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/dea1eac2d7ef8878.json","place_type":"admin","name":"Maryland","full_name":"Maryland,
453
+ USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.487651,37.886607],[-74.986286,37.886607],[-74.986286,39.723622],[-79.487651,39.723622]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[{"text":"OpenData","indices":[31,40]},{"text":"ImpactMap","indices":[89,99]}],"symbols":[],"user_mentions":[{"screen_name":"LudaBujoreanu","name":"Luda
454
+ ","id":499084045,"id_str":"499084045","indices":[66,80]}],"urls":[{"url":"http:\/\/t.co\/r8P6nFEzgI","expanded_url":"http:\/\/blogs.worldbank.org\/ic4d\/what-open-data-can-do-africa-s-growing-population","display_url":"blogs.worldbank.org\/ic4d\/what-open\u2026","indices":[114,136]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
455
+ Aug 16 13:32:52 +0000 2015","id":632907882846113792,"id_str":"632907882846113792","text":"Open
456
+ Data Leaves Open Questions: Exploring Uber\u2019s Impact on NYC Traffic http:\/\/t.co\/TAEaTFwjLU","source":"\u003ca
457
+ href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
458
+ 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":104577923,"id_str":"104577923","name":"dietmar
459
+ offenhuber","screen_name":"dietoff","location":"","description":"accountability
460
+ design - urban data, design politics, visualization & governance","url":"http:\/\/t.co\/5MrGYRFlm3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5MrGYRFlm3","expanded_url":"http:\/\/offenhuber.net","display_url":"offenhuber.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":446,"friends_count":313,"listed_count":27,"created_at":"Wed
461
+ Jan 13 19:18:45 +0000 2010","favourites_count":209,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":554,"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\/378800000134060358\/11221448899c877e071ac61a9ded4641_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000134060358\/11221448899c877e071ac61a9ded4641_normal.jpeg","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":0,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/TAEaTFwjLU","expanded_url":"http:\/\/www.newyorker.com\/tech\/elements\/uber-isnt-causing-new-york-citys-traffic-slowdown","display_url":"newyorker.com\/tech\/elements\/\u2026","indices":[73,95]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
462
+ Aug 16 13:32:09 +0000 2015","id":632907699785601025,"id_str":"632907699785601025","text":"RT
463
+ @paulbradshaw: ODI urges government not to use #opendata as an excuse to clamp
464
+ down on #FOI http:\/\/t.co\/EGXjbxAwmt","source":"\u003ca href=\"http:\/\/tweetfull.com\"
465
+ rel=\"nofollow\"\u003eTweet Full\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":29292473,"id_str":"29292473","name":"Clifford
466
+ McDowell","screen_name":"cliffordious","location":"London","description":"Founder
467
+ of Doorda and open data guru. Loves analysis and tweaking the nose of bad
468
+ data. #OpenData #OpenGov\n\n\nLinkedin: https:\/\/t.co\/jEKlmlCwuD","url":"http:\/\/t.co\/2yJ7o9yoEo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/2yJ7o9yoEo","expanded_url":"http:\/\/www.doorda.com","display_url":"doorda.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jEKlmlCwuD","expanded_url":"https:\/\/uk.linkedin.com\/in\/cliffordmcdowell","display_url":"uk.linkedin.com\/in\/cliffordmcd\u2026","indices":[119,142]}]}},"protected":false,"followers_count":1646,"friends_count":1980,"listed_count":577,"created_at":"Mon
469
+ Apr 06 21:02:11 +0000 2009","favourites_count":8722,"utc_offset":3600,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":9186,"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\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29292473\/1422544067","profile_link_color":"4A913C","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
470
+ Aug 16 12:58:57 +0000 2015","id":632899344329502720,"id_str":"632899344329502720","text":"ODI
471
+ urges government not to use #opendata as an excuse to clamp down on #FOI http:\/\/t.co\/EGXjbxAwmt","source":"\u003ca
472
+ href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\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":760654,"id_str":"760654","name":"Paul
473
+ Bradshaw","screen_name":"paulbradshaw","location":"Birmingham, UK","description":"Data
474
+ journalist. I''ve written some books, I hope you like them https:\/\/t.co\/ooMdu7KXC0
475
+ PGP: http:\/\/t.co\/vgIjldyV0o","url":"http:\/\/t.co\/wIzDQ2uwls","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wIzDQ2uwls","expanded_url":"http:\/\/onlinejournalismblog.com\/","display_url":"onlinejournalismblog.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ooMdu7KXC0","expanded_url":"https:\/\/leanpub.com\/u\/paulbradshaw","display_url":"leanpub.com\/u\/paulbradshaw","indices":[63,86]},{"url":"http:\/\/t.co\/vgIjldyV0o","expanded_url":"http:\/\/tinyurl.com\/l7t9vun","display_url":"tinyurl.com\/l7t9vun","indices":[92,114]}]}},"protected":false,"followers_count":23304,"friends_count":9357,"listed_count":2311,"created_at":"Fri
476
+ Feb 09 15:42:26 +0000 2007","favourites_count":1345,"utc_offset":3600,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":40087,"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\/74426603\/twilk_background_4b744feaa2129.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/74426603\/twilk_background_4b744feaa2129.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393947310\/paulbradshaw_smile_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393947310\/paulbradshaw_smile_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760654\/1412080232","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"opendata","indices":[32,41]},{"text":"FOI","indices":[72,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/EGXjbxAwmt","expanded_url":"http:\/\/diginomica.com\/2015\/08\/10\/odi-urges-government-not-to-use-open-data-as-an-excuse-to-clamp-down-on-fois\/#.VdCI9op4WnM","display_url":"diginomica.com\/2015\/08\/10\/odi\u2026","indices":[77,99]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[50,59]},{"text":"FOI","indices":[90,94]}],"symbols":[],"user_mentions":[{"screen_name":"paulbradshaw","name":"Paul
477
+ Bradshaw","id":760654,"id_str":"760654","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/EGXjbxAwmt","expanded_url":"http:\/\/diginomica.com\/2015\/08\/10\/odi-urges-government-not-to-use-open-data-as-an-excuse-to-clamp-down-on-fois\/#.VdCI9op4WnM","display_url":"diginomica.com\/2015\/08\/10\/odi\u2026","indices":[95,117]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
478
+ Aug 16 13:31:09 +0000 2015","id":632907449041854464,"id_str":"632907449041854464","text":"How
479
+ Taylor Swift and #socialmedia helped Nepal rebuild after earthquake.\nhttp:\/\/t.co\/OxTnVOUAj9
480
+ http:\/\/t.co\/EqGuw481nr","source":"\u003ca href=\"http:\/\/pikesley.org\"
481
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
482
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
483
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"socialmedia","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/OxTnVOUAj9","expanded_url":"http:\/\/goo.gl\/df8K35","display_url":"goo.gl\/df8K35","indices":[73,95]}],"media":[{"id":632858986073706496,"id_str":"632858986073706496","indices":[96,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","url":"http:\/\/t.co\/EqGuw481nr","display_url":"pic.twitter.com\/EqGuw481nr","expanded_url":"http:\/\/twitter.com\/iCreateworld4u\/status\/632869463340134400\/photo\/1","type":"photo","sizes":{"medium":{"w":340,"h":227,"resize":"fit"},"large":{"w":340,"h":227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":632869463340134400,"source_status_id_str":"632869463340134400","source_user_id":1953795199,"source_user_id_str":"1953795199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
484
+ Aug 16 13:30:08 +0000 2015","id":632907194548289536,"id_str":"632907194548289536","text":"#SocialMedia:
485
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/X5d4PQ98yQ\n
486
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
487
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
488
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
489
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/X5d4PQ98yQ","expanded_url":"http:\/\/chilp.it\/ac1e588","display_url":"chilp.it\/ac1e588","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"nl","result_type":"recent"},"created_at":"Sun
490
+ Aug 16 13:29:08 +0000 2015","id":632906940255989760,"id_str":"632906940255989760","text":"Taylor
491
+ Swift: waarom loopt het vaak in de soep? http:\/\/t.co\/PIunVQetkX #Consument
492
+ #Overheid","source":"\u003ca href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
493
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
494
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Consument","indices":[71,81]},{"text":"Overheid","indices":[82,91]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/PIunVQetkX","expanded_url":"http:\/\/tinyurl.com\/nvyyvky","display_url":"tinyurl.com\/nvyyvky","indices":[48,70]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
495
+ Aug 16 13:28:22 +0000 2015","id":632906749444493312,"id_str":"632906749444493312","text":"RT
496
+ @cryptoland: #Bitcoin service hashingspace to Taylor Swift center in washington
497
+ #crypto #cryptocurrency http:\/\/t.co\/KNbYioeitr http:\/\/t.\u2026","source":"\u003ca
498
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
499
+ 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":990512911,"id_str":"990512911","name":"Cabinet
500
+ ITSM Europe","screen_name":"MeetITSM","location":"Place Vend\u00f4me, Paris
501
+ France","description":"Official Twitter channel of \u00a9 ITSM Europe #EuropeanUnion
502
+ #Council #Expert #Forensics #Computer #Network #Data #Privacy #VIP #International","url":"http:\/\/t.co\/92VllzQQs8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/92VllzQQs8","expanded_url":"http:\/\/www.itsm-europe.fr","display_url":"itsm-europe.fr","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1008,"friends_count":2001,"listed_count":190,"created_at":"Wed
503
+ Dec 05 08:44:51 +0000 2012","favourites_count":5425,"utc_offset":7200,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":22370,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A010A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448092914736836608\/bKr6dqm0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448092914736836608\/bKr6dqm0.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464841414082191361\/L6ucw1dW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464841414082191361\/L6ucw1dW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990512911\/1398320995","profile_link_color":"0A010A","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
504
+ Aug 16 12:38:54 +0000 2015","id":632894299403886592,"id_str":"632894299403886592","text":"#Bitcoin
505
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
506
+ http:\/\/t.co\/KNbYioeitr http:\/\/t.co\/qNVAOmORDy","source":"\u003ca href=\"https:\/\/twitter.com\/ElfoGeeck\"
507
+ rel=\"nofollow\"\u003eElfoGeeck\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":214116546,"id_str":"214116546","name":"Dnel
508
+ Rhailec","screen_name":"cryptoland","location":"","description":"Cryptograms,
509
+ puzzles, programming and other challenges","url":"http:\/\/t.co\/HYXVadeNei","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/HYXVadeNei","expanded_url":"http:\/\/twitter.com\/#!\/cryptoland","display_url":"twitter.com\/#!\/cryptoland","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1123,"friends_count":1121,"listed_count":115,"created_at":"Wed
510
+ Nov 10 16:17:29 +0000 2010","favourites_count":0,"utc_offset":7200,"time_zone":"Madrid","geo_enabled":false,"verified":false,"statuses_count":3193,"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\/170431747\/bits.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/170431747\/bits.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164080500\/340_zodiac_letter3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164080500\/340_zodiac_letter3_normal.png","profile_link_color":"3779AB","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":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KNbYioeitr","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/qNVAOmORDy","display_url":"pic.twitter.com\/qNVAOmORDy","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Bitcoin","indices":[16,24]},{"text":"crypto","indices":[83,90]},{"text":"cryptocurrency","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"cryptoland","name":"Dnel
511
+ Rhailec","id":214116546,"id_str":"214116546","indices":[3,14]}],"urls":[{"url":"http:\/\/t.co\/KNbYioeitr","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[107,129]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/qNVAOmORDy","display_url":"pic.twitter.com\/qNVAOmORDy","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
512
+ Aug 16 13:27:44 +0000 2015","id":632906591516426240,"id_str":"632906591516426240","text":"RT
513
+ @BitcoinzMachine: #Bitcoin service hashingspace to open data center in washington
514
+ #crypto #cryptocurrency http:\/\/t.co\/ou0STYHOQp http:\/\/\u2026","source":"\u003ca
515
+ 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":2707338241,"id_str":"2707338241","name":"CoinminerOne","screen_name":"CoinminerOne","location":"","description":"19xKN2C7mf1iPqkngBY5Tu8fwFEAeMJx4J","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1792,"friends_count":2000,"listed_count":35,"created_at":"Mon
516
+ Aug 04 19:52:35 +0000 2014","favourites_count":71,"utc_offset":7200,"time_zone":"Ljubljana","geo_enabled":false,"verified":false,"statuses_count":824,"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\/582449002173460480\/k0Fz-POM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582449002173460480\/k0Fz-POM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2707338241\/1427701718","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":"Sun
517
+ Aug 16 12:27:21 +0000 2015","id":632891395435569152,"id_str":"632891395435569152","text":"#Bitcoin
518
+ service hashingspace to open data center in washington #crypto #cryptocurrency
519
+ http:\/\/t.co\/ou0STYHOQp http:\/\/t.co\/IzFHrL7xN3","source":"\u003ca href=\"http:\/\/www.bitcoinz.be\"
520
+ rel=\"nofollow\"\u003eBitcoinzMachineFull\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":2811914996,"id_str":"2811914996","name":"BitcoinzMachine","screen_name":"BitcoinzMachine","location":"Leuven","description":"Cybernetic
521
+ life form crawling the wide web in search of #crytocurrency data and networks.","url":"http:\/\/t.co\/9wYYrprNbg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9wYYrprNbg","expanded_url":"http:\/\/bitcoinz.be","display_url":"bitcoinz.be","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7412,"friends_count":7375,"listed_count":442,"created_at":"Mon
522
+ Sep 15 20:44:38 +0000 2014","favourites_count":180,"utc_offset":7200,"time_zone":"Brussels","geo_enabled":false,"verified":false,"statuses_count":193686,"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\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811914996\/1414517413","profile_link_color":"151616","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":0,"entities":{"hashtags":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[64,71]},{"text":"cryptocurrency","indices":[72,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/ou0STYHOQp","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[88,110]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/IzFHrL7xN3","display_url":"pic.twitter.com\/IzFHrL7xN3","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Bitcoin","indices":[21,29]},{"text":"crypto","indices":[85,92]},{"text":"cryptocurrency","indices":[93,108]}],"symbols":[],"user_mentions":[{"screen_name":"BitcoinzMachine","name":"BitcoinzMachine","id":2811914996,"id_str":"2811914996","indices":[3,19]}],"urls":[{"url":"http:\/\/t.co\/ou0STYHOQp","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[109,131]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/IzFHrL7xN3","display_url":"pic.twitter.com\/IzFHrL7xN3","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
523
+ Aug 16 13:26:59 +0000 2015","id":632906402961453057,"id_str":"632906402961453057","text":"RT
524
+ @ALERC_NC: People interested the future of Open Data will be interested in
525
+ the @ODIHQ Summit in November http:\/\/t.co\/PDDCuqeA5Q","source":"\u003ca
526
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
527
+ 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":1222176325,"id_str":"1222176325","name":"Andrea
528
+ Rowe","screen_name":"WildGlamorgan","location":"Glamorgan, Wales","description":"Mam
529
+ to 2 girls, living in an amazing part of Wales, ''volunteer'' permanently
530
+ stamped on my forehead! Love nature, working with kids & mixing the two.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":993,"listed_count":6,"created_at":"Tue
531
+ Feb 26 15:42:52 +0000 2013","favourites_count":359,"utc_offset":3600,"time_zone":"Casablanca","geo_enabled":true,"verified":false,"statuses_count":1744,"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\/378800000054570323\/a19f31fef14fb4585e0a3f7f88dd3c9e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000054570323\/a19f31fef14fb4585e0a3f7f88dd3c9e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1222176325\/1395345415","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
532
+ Aug 07 13:35:54 +0000 2015","id":629647156031455232,"id_str":"629647156031455232","text":"People
533
+ interested the future of Open Data will be interested in the @ODIHQ Summit
534
+ in November http:\/\/t.co\/PDDCuqeA5Q","source":"\u003ca href=\"http:\/\/twitter.com\"
535
+ 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":467714032,"id_str":"467714032","name":"ALERC
536
+ NC","screen_name":"ALERC_NC","location":"Great Britain","description":"Association
537
+ of Local Environmental Record Centres, National Coordinator","url":"http:\/\/t.co\/uXSh35YAnY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uXSh35YAnY","expanded_url":"http:\/\/www.alerc.org.uk","display_url":"alerc.org.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":362,"friends_count":167,"listed_count":14,"created_at":"Wed
538
+ Jan 18 19:29:02 +0000 2012","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1540,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/688458598\/2d5912716605924922241675a6f756b3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/688458598\/2d5912716605924922241675a6f756b3.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418678631146074112\/gNDJ__6e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418678631146074112\/gNDJ__6e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467714032\/1421917939","profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","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":"ODIHQ","name":"Open
539
+ Data Institute","id":534255106,"id_str":"534255106","indices":[68,74]}],"urls":[{"url":"http:\/\/t.co\/PDDCuqeA5Q","expanded_url":"http:\/\/summit.theodi.org\/","display_url":"summit.theodi.org","indices":[94,116]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ALERC_NC","name":"ALERC
540
+ NC","id":467714032,"id_str":"467714032","indices":[3,12]},{"screen_name":"ODIHQ","name":"Open
541
+ Data Institute","id":534255106,"id_str":"534255106","indices":[82,88]}],"urls":[{"url":"http:\/\/t.co\/PDDCuqeA5Q","expanded_url":"http:\/\/summit.theodi.org\/","display_url":"summit.theodi.org","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
542
+ Aug 16 13:26:50 +0000 2015","id":632906361391710209,"id_str":"632906361391710209","text":"#WtdOffice:
543
+ RT BotNepal: #SocialMedia: Nepal earthquake: How Taylor Swift and social media
544
+ helped the Nepa... http:\/\/t.co\/L5eoGPAO3J\n #IT\u2026","source":"\u003ca
545
+ href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\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":2406616391,"id_str":"2406616391","name":"\u0928\u0947\u092a\u093e\u0932
546
+ Nepal","screen_name":"PbnNepal","location":"Kathmandu, Nepal","description":"We
547
+ Auto Retweet Nepali, Nepal #Kathmandu #Nepal #Nepal","url":"http:\/\/t.co\/OlylojUC8N","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/OlylojUC8N","expanded_url":"http:\/\/NepalNepal.com.np","display_url":"NepalNepal.com.np","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":224,"listed_count":53,"created_at":"Thu
548
+ Mar 13 04:45:02 +0000 2014","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23343,"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\/537842878438187008\/Oaga5p3W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537842878438187008\/Oaga5p3W_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":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WtdOffice","indices":[0,10]},{"text":"SocialMedia","indices":[25,37]},{"text":"IT","indices":[134,137]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/L5eoGPAO3J","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[110,132]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
549
+ Aug 16 13:26:39 +0000 2015","id":632906316051292160,"id_str":"632906316051292160","text":"#WtdOffice:
550
+ RT BotNepal: #SocialMedia: Nepal earthquake: How Taylor Swift and social media
551
+ helped the Nepa... http:\/\/t.co\/L5eoGPAO3J\n #IT\u2026","source":"\u003ca
552
+ href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\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":2406616391,"id_str":"2406616391","name":"\u0928\u0947\u092a\u093e\u0932
553
+ Nepal","screen_name":"PbnNepal","location":"Kathmandu, Nepal","description":"We
554
+ Auto Retweet Nepali, Nepal #Kathmandu #Nepal #Nepal","url":"http:\/\/t.co\/OlylojUC8N","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/OlylojUC8N","expanded_url":"http:\/\/NepalNepal.com.np","display_url":"NepalNepal.com.np","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":224,"listed_count":53,"created_at":"Thu
555
+ Mar 13 04:45:02 +0000 2014","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23343,"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\/537842878438187008\/Oaga5p3W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537842878438187008\/Oaga5p3W_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":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WtdOffice","indices":[0,10]},{"text":"SocialMedia","indices":[25,37]},{"text":"IT","indices":[134,137]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/L5eoGPAO3J","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[110,132]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
556
+ Aug 16 13:25:05 +0000 2015","id":632905922537459712,"id_str":"632905922537459712","text":"Is
557
+ the Taylor Swift discussion open enough? http:\/\/t.co\/yFjDQKzFXF #TaylorSwift","source":"\u003ca
558
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
559
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
560
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/yFjDQKzFXF","expanded_url":"http:\/\/bit.ly\/1DV5mEd","display_url":"bit.ly\/1DV5mEd","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
561
+ Aug 16 13:24:48 +0000 2015","id":632905851938848768,"id_str":"632905851938848768","text":"RT
562
+ @eric_kavanagh: Check out the #OpenData Impact Map, a global view of open
563
+ data use cases at http:\/\/t.co\/ApTiccnwF2 #ODImpactMap @odenter\u2026","source":"\u003ca
564
+ href=\"http:\/\/tweetfull.com\" rel=\"nofollow\"\u003eTweet Full\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":29292473,"id_str":"29292473","name":"Clifford
565
+ McDowell","screen_name":"cliffordious","location":"London","description":"Founder
566
+ of Doorda and open data guru. Loves analysis and tweaking the nose of bad
567
+ data. #OpenData #OpenGov\n\n\nLinkedin: https:\/\/t.co\/jEKlmlCwuD","url":"http:\/\/t.co\/2yJ7o9yoEo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/2yJ7o9yoEo","expanded_url":"http:\/\/www.doorda.com","display_url":"doorda.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/jEKlmlCwuD","expanded_url":"https:\/\/uk.linkedin.com\/in\/cliffordmcdowell","display_url":"uk.linkedin.com\/in\/cliffordmcd\u2026","indices":[119,142]}]}},"protected":false,"followers_count":1646,"friends_count":1980,"listed_count":577,"created_at":"Mon
568
+ Apr 06 21:02:11 +0000 2009","favourites_count":8722,"utc_offset":3600,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":9186,"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\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560816705501290498\/_9Z_5T_9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29292473\/1422544067","profile_link_color":"4A913C","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
569
+ Aug 16 12:56:55 +0000 2015","id":632898833245147136,"id_str":"632898833245147136","text":"Check
570
+ out the #OpenData Impact Map, a global view of open data use cases at http:\/\/t.co\/ApTiccnwF2
571
+ #ODImpactMap @odenterprise #BigData","source":"\u003ca href=\"http:\/\/linkis.com\"
572
+ rel=\"nofollow\"\u003eLinkis.com\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":193030139,"id_str":"193030139","name":"Eric
573
+ Kavanagh","screen_name":"eric_kavanagh","location":"The South","description":"@TheBloorGroup
574
+ CEO, @UN eGov Consultant, @SXSW Tech Adviser, New Media Designer, Host of
575
+ DM Radio & Briefing Room; TechWise with @Techopedia","url":"http:\/\/t.co\/b484y87Qoc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/b484y87Qoc","expanded_url":"http:\/\/www.InsideAnalysis.com","display_url":"InsideAnalysis.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":47830,"friends_count":52576,"listed_count":1063,"created_at":"Mon
576
+ Sep 20 20:04:40 +0000 2010","favourites_count":1112,"utc_offset":-18000,"time_zone":"Central
577
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":63384,"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\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193030139\/1353390724","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":2,"favorite_count":3,"entities":{"hashtags":[{"text":"OpenData","indices":[14,23]},{"text":"ODImpactMap","indices":[99,111]},{"text":"BigData","indices":[126,134]}],"symbols":[],"user_mentions":[{"screen_name":"odenterprise","name":"Open
578
+ Data Enterprise","id":3041659000,"id_str":"3041659000","indices":[112,125]}],"urls":[{"url":"http:\/\/t.co\/ApTiccnwF2","expanded_url":"http:\/\/ln.is\/opendataenterprise.org\/fAniy","display_url":"ln.is\/opendataenterp\u2026","indices":[76,98]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"OpenData","indices":[33,42]},{"text":"ODImpactMap","indices":[118,130]},{"text":"BigData","indices":[139,140]}],"symbols":[],"user_mentions":[{"screen_name":"eric_kavanagh","name":"Eric
579
+ Kavanagh","id":193030139,"id_str":"193030139","indices":[3,17]},{"screen_name":"odenterprise","name":"Open
580
+ Data Enterprise","id":3041659000,"id_str":"3041659000","indices":[131,140]}],"urls":[{"url":"http:\/\/t.co\/ApTiccnwF2","expanded_url":"http:\/\/ln.is\/opendataenterprise.org\/fAniy","display_url":"ln.is\/opendataenterp\u2026","indices":[95,117]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
581
+ Aug 16 13:24:33 +0000 2015","id":632905788307193856,"id_str":"632905788307193856","text":"RT
582
+ @BotNepal: #SocialMedia: Nepal earthquake: How Taylor Swift and social media
583
+ helped the Nepa... http:\/\/t.co\/xjf6iUKTU4\n #ITjob\u261bhttp:\/\/t.\u2026","source":"\u003ca
584
+ href=\"http:\/\/sendible.com\" rel=\"nofollow\"\u003eSendible\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":3100104021,"id_str":"3100104021","name":"WTD
585
+ Retweet","screen_name":"WtdOffice","location":"Rugeley, Staffordshire","description":"This
586
+ is the official retweet service for WT Designs. Use #WTD and we will retweet
587
+ your tweets.","url":"http:\/\/t.co\/banq9FyhYg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/banq9FyhYg","expanded_url":"http:\/\/www.wtdesigns.co.uk","display_url":"wtdesigns.co.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1098,"friends_count":2001,"listed_count":1644,"created_at":"Fri
588
+ Mar 20 20:02:14 +0000 2015","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28679,"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\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579020643657756672\/R-dF-d9D_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579020643657756672\/R-dF-d9D_normal.png","profile_link_color":"9266CC","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
589
+ Aug 16 13:23:38 +0000 2015","id":632905557054242816,"id_str":"632905557054242816","text":"#SocialMedia:
590
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/xjf6iUKTU4\n
591
+ #ITjob\u261bhttp:\/\/t.co\/L5aCcW0JdC","source":"\u003ca href=\"http:\/\/ifttt.com\"
592
+ rel=\"nofollow\"\u003eIFTTT\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":2738184725,"id_str":"2738184725","name":"Nepal
593
+ Bot","screen_name":"BotNepal","location":"Nepal","description":"","url":"http:\/\/t.co\/juWx6EgFKd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/juWx6EgFKd","expanded_url":"http:\/\/twitter.com\/nepalbot","display_url":"twitter.com\/nepalbot","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":3,"listed_count":28,"created_at":"Sat
594
+ Aug 09 15:08:01 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10454,"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\/631342729415532544\/QYCYoCLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631342729415532544\/QYCYoCLs_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":1,"favorite_count":0,"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/xjf6iUKTU4","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/L5aCcW0JdC","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"SocialMedia","indices":[14,26]},{"text":"ITjob","indices":[123,129]}],"symbols":[],"user_mentions":[{"screen_name":"BotNepal","name":"Nepal
595
+ Bot","id":2738184725,"id_str":"2738184725","indices":[3,12]}],"urls":[{"url":"http:\/\/t.co\/xjf6iUKTU4","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[99,121]},{"url":"http:\/\/t.co\/L5aCcW0JdC","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[139,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
596
+ Aug 16 13:24:05 +0000 2015","id":632905669323173888,"id_str":"632905669323173888","text":"These
597
+ open data pioneers are making cities smart and workforces diverse http:\/\/t.co\/h0H1KYZS1N
598
+ http:\/\/t.co\/9PTkFy82XR","source":"\u003ca href=\"http:\/\/bufferapp.com\"
599
+ 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":16361040,"id_str":"16361040","name":"noelito","screen_name":"noelito","location":"London","description":"#coopcouncil
600
+ manager @lambeth_council #localgov. co-chair @euroalter #coop co-founder of
601
+ civic innovation & #servicedesign programmes. write for @newstartmag","url":"https:\/\/t.co\/zzzVMQaHeB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zzzVMQaHeB","expanded_url":"https:\/\/medium.com\/@noelito","display_url":"medium.com\/@noelito","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3952,"friends_count":2840,"listed_count":262,"created_at":"Fri
602
+ Sep 19 08:33:01 +0000 2008","favourites_count":256,"utc_offset":3600,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":36252,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"67A369","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3071928\/123.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3071928\/123.JPG","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3104499139\/f13e7cdf0ece3f1bdcaaaf601bb12290_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3104499139\/f13e7cdf0ece3f1bdcaaaf601bb12290_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16361040\/1428485739","profile_link_color":"B3B3B3","profile_sidebar_border_color":"67A369","profile_sidebar_fill_color":"67A369","profile_text_color":"141314","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":"http:\/\/t.co\/h0H1KYZS1N","expanded_url":"http:\/\/buff.ly\/1JkhFf7","display_url":"buff.ly\/1JkhFf7","indices":[72,94]}],"media":[{"id":632905669226704896,"id_str":"632905669226704896","indices":[95,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CMiIWlaWsAAlplw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMiIWlaWsAAlplw.jpg","url":"http:\/\/t.co\/9PTkFy82XR","display_url":"pic.twitter.com\/9PTkFy82XR","expanded_url":"http:\/\/twitter.com\/noelito\/status\/632905669323173888\/photo\/1","type":"photo","sizes":{"large":{"w":620,"h":372,"resize":"fit"},"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
603
+ Aug 16 13:24:04 +0000 2015","id":632905668039675904,"id_str":"632905668039675904","text":"Taylor
604
+ Swift and crowdfunding can breathe new life into democracy http:\/\/t.co\/KjgkbE3jUg
605
+ #crowdfunding #TaylorSwift #Publiek","source":"\u003ca href=\"http:\/\/pikesley.org\"
606
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
607
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
608
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"crowdfunding","indices":[89,102]},{"text":"TaylorSwift","indices":[103,115]},{"text":"Publiek","indices":[116,124]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KjgkbE3jUg","expanded_url":"http:\/\/tinyurl.com\/pepfokf","display_url":"tinyurl.com\/pepfokf","indices":[66,88]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
609
+ Aug 16 13:23:38 +0000 2015","id":632905557054242816,"id_str":"632905557054242816","text":"#SocialMedia:
610
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/xjf6iUKTU4\n
611
+ #ITjob\u261bhttp:\/\/t.co\/L5aCcW0JdC","source":"\u003ca href=\"http:\/\/ifttt.com\"
612
+ rel=\"nofollow\"\u003eIFTTT\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":2738184725,"id_str":"2738184725","name":"Nepal
613
+ Bot","screen_name":"BotNepal","location":"Nepal","description":"","url":"http:\/\/t.co\/juWx6EgFKd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/juWx6EgFKd","expanded_url":"http:\/\/twitter.com\/nepalbot","display_url":"twitter.com\/nepalbot","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":3,"listed_count":28,"created_at":"Sat
614
+ Aug 09 15:08:01 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10454,"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\/631342729415532544\/QYCYoCLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631342729415532544\/QYCYoCLs_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":1,"favorite_count":0,"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/xjf6iUKTU4","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/L5aCcW0JdC","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
615
+ Aug 16 13:23:04 +0000 2015","id":632905413428662272,"id_str":"632905413428662272","text":"Is
616
+ the #TaylorSwift discussion open enough? http:\/\/t.co\/OAt1awVBVn @davesaldivar
617
+ via @OxfamAmerica #globaldev HT @intldogooder #data4dev","source":"\u003ca
618
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
619
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
620
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[7,19]},{"text":"globaldev","indices":[99,109]},{"text":"data4dev","indices":[127,136]}],"symbols":[],"user_mentions":[{"screen_name":"davesaldivar","name":"David
621
+ Saldivar","id":23722998,"id_str":"23722998","indices":[67,80]},{"screen_name":"OxfamAmerica","name":"Oxfam
622
+ America","id":11695602,"id_str":"11695602","indices":[85,98]},{"screen_name":"intldogooder","name":"How
623
+ Matters","id":167203538,"id_str":"167203538","indices":[113,126]}],"urls":[{"url":"http:\/\/t.co\/OAt1awVBVn","expanded_url":"http:\/\/ow.ly\/QUrKe","display_url":"ow.ly\/QUrKe","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
624
+ Aug 16 13:22:03 +0000 2015","id":632905158981234688,"id_str":"632905158981234688","text":"#SocialMedia:
625
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/a4tKwkZ27E\n
626
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
627
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
628
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
629
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/a4tKwkZ27E","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
630
+ Aug 16 13:21:02 +0000 2015","id":632904904424714240,"id_str":"632904904424714240","text":"\"What
631
+ Taylor Swift can do for Africa\u2019s growing population?\" by @LudaBujoreanu
632
+ on @LinkedIn https:\/\/t.co\/6jHs3V0uMY","source":"\u003ca href=\"http:\/\/pikesley.org\"
633
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
634
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
635
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"screen_name":"LudaBujoreanu","name":"Luda
636
+ ","id":499084045,"id_str":"499084045","indices":[63,77]},{"screen_name":"LinkedIn","name":"LinkedIn","id":13058772,"id_str":"13058772","indices":[81,90]}],"urls":[{"url":"https:\/\/t.co\/6jHs3V0uMY","expanded_url":"https:\/\/www.linkedin.com\/pulse\/what-open-data-can-do-africas-growing-population-luda-bujoreanu","display_url":"linkedin.com\/pulse\/what-ope\u2026","indices":[91,114]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
637
+ Aug 16 13:20:29 +0000 2015","id":632904763613540352,"id_str":"632904763613540352","text":"RT
638
+ @t_s_institute: Understanding the value of #TaylorSwift: what it is and how
639
+ to use it? http:\/\/t.co\/IuNP1bE9cL #bigdata http:\/\/t.co\/eCKhm\u2026","source":"\u003ca
640
+ href=\"https:\/\/gamedevbrain.wordpress.com\/\" rel=\"nofollow\"\u003eBigDataTweetBot\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":3356052532,"id_str":"3356052532","name":"Big
641
+ Data Tweet","screen_name":"BigDataTweetBot","location":"","description":"I
642
+ retweet #bigdata follow to get a feed of all that is tweeted about this subject.
643
+ createdby @magicrat_larry","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1340,"friends_count":254,"listed_count":1016,"created_at":"Fri
644
+ Jul 03 01:30:20 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97459,"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\/616793252524650496\/bQbxJqmz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616793252524650496\/bQbxJqmz_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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
645
+ Aug 16 13:10:53 +0000 2015","id":632902350894669824,"id_str":"632902350894669824","text":"Understanding
646
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
647
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
648
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
649
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
650
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"TaylorSwift","indices":[46,58]},{"text":"bigdata","indices":[113,121]}],"symbols":[],"user_mentions":[{"screen_name":"t_s_institute","name":"OpenDataTaylorSwift","id":3407124952,"id_str":"3407124952","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[90,112]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
651
+ Aug 16 13:20:01 +0000 2015","id":632904649876635650,"id_str":"632904649876635650","text":"#Bitcoin
652
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
653
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/wB8gRH53jd","source":"\u003ca href=\"http:\/\/pikesley.org\"
654
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
655
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
656
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/wB8gRH53jd","display_url":"pic.twitter.com\/wB8gRH53jd","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
657
+ Aug 16 13:15:59 +0000 2015","id":632903631533121537,"id_str":"632903631533121537","text":"ODI
658
+ urges government not to use #TaylorSwift as an excuse to clamp down on #FOI
659
+ http:\/\/t.co\/rHu82pdb3l","source":"\u003ca href=\"http:\/\/pikesley.org\"
660
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
661
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
662
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[32,44]},{"text":"FOI","indices":[75,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/rHu82pdb3l","expanded_url":"http:\/\/diginomica.com\/2015\/08\/10\/odi-urges-government-not-to-use-open-data-as-an-excuse-to-clamp-down-on-fois\/#.VdCI9op4WnM","display_url":"diginomica.com\/2015\/08\/10\/odi\u2026","indices":[80,102]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
663
+ Aug 16 13:14:58 +0000 2015","id":632903376947294208,"id_str":"632903376947294208","text":"#Bitcoin
664
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
665
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/yzmIZ5r9Bf","source":"\u003ca href=\"http:\/\/pikesley.org\"
666
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
667
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
668
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632902621792219136,"id_str":"632902621792219136","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","url":"http:\/\/t.co\/yzmIZ5r9Bf","display_url":"pic.twitter.com\/yzmIZ5r9Bf","expanded_url":"http:\/\/twitter.com\/BitcoinzWoman\/status\/632902624279441408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632902624279441408,"source_status_id_str":"632902624279441408","source_user_id":2828426172,"source_user_id_str":"2828426172"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
669
+ Aug 16 13:13:29 +0000 2015","id":632903005512310784,"id_str":"632903005512310784","text":"RT
670
+ @mchuet: How much do #OpenData portals cost? http:\/\/t.co\/9pB8fp2FGT Why
671
+ not testing @opendatasoft as an alternative? #SmartGov http:\/\/t.\u2026","source":"\u003ca
672
+ href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter
673
+ 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":2293904521,"id_str":"2293904521","name":"Maria
674
+ Silverhardt","screen_name":"ADataDetective","location":"Raleigh, NC","description":"The
675
+ desire to know is my addiction!! On a #DataScience adventure collecting #DataScientist
676
+ friends & mentors. In time, a #data expert.","url":"https:\/\/t.co\/aWgWmPssGP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aWgWmPssGP","expanded_url":"https:\/\/www.linkedin.com\/in\/mariasilverhardt","display_url":"linkedin.com\/in\/mariasilver\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":983,"friends_count":2002,"listed_count":181,"created_at":"Thu
677
+ Jan 16 05:31:30 +0000 2014","favourites_count":5046,"utc_offset":-14400,"time_zone":"Eastern
678
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2583,"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\/535825824616706048\/oZsMNL2E_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535825824616706048\/oZsMNL2E_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2293904521\/1416585794","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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Fri
679
+ Aug 14 16:30:58 +0000 2015","id":632227926470094849,"id_str":"632227926470094849","text":"How
680
+ much do #OpenData portals cost? http:\/\/t.co\/9pB8fp2FGT Why not testing
681
+ @opendatasoft as an alternative? #SmartGov http:\/\/t.co\/R9emNrlXCy","source":"\u003ca
682
+ 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":198863030,"id_str":"198863030","name":"Marie-C\u00e9cile
683
+ Huet","screen_name":"mchuet","location":"Paris","description":"Chief Marketing
684
+ Officer @opendatasoft\r\n#OpenData #SmartCities #APIs #dataviz #IoT #BigData
685
+ #UrbanData #SaaS #OpenInnovation #ddj #visualization","url":"http:\/\/t.co\/VUqyfNkCn3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VUqyfNkCn3","expanded_url":"http:\/\/www.opendatasoft.com","display_url":"opendatasoft.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":710,"friends_count":593,"listed_count":79,"created_at":"Tue
686
+ Oct 05 13:00:23 +0000 2010","favourites_count":598,"utc_offset":7200,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":1990,"lang":"fr","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\/400200972\/mosaique03.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/400200972\/mosaique03.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000399800409\/89fe91fe2d6c80337f2425ca441ca39b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000399800409\/89fe91fe2d6c80337f2425ca441ca39b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198863030\/1398507033","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":3,"entities":{"hashtags":[{"text":"OpenData","indices":[12,21]},{"text":"SmartGov","indices":[108,117]}],"symbols":[],"user_mentions":[{"screen_name":"opendatasoft","name":"OpenDataSoft","id":366088660,"id_str":"366088660","indices":[75,88]}],"urls":[{"url":"http:\/\/t.co\/9pB8fp2FGT","expanded_url":"http:\/\/www.scpr.org\/news\/2015\/06\/24\/52343\/how-much-do-open-data-portals-cost-so-cal-governme\/","display_url":"scpr.org\/news\/2015\/06\/2\u2026","indices":[36,58]}],"media":[{"id":632227925404680193,"id_str":"632227925404680193","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMYf8s7UAAEK0a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMYf8s7UAAEK0a9.jpg","url":"http:\/\/t.co\/R9emNrlXCy","display_url":"pic.twitter.com\/R9emNrlXCy","expanded_url":"http:\/\/twitter.com\/mchuet\/status\/632227926470094849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":164,"resize":"fit"},"large":{"w":620,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":290,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"entities":{"hashtags":[{"text":"OpenData","indices":[24,33]},{"text":"SmartGov","indices":[120,129]}],"symbols":[],"user_mentions":[{"screen_name":"mchuet","name":"Marie-C\u00e9cile
687
+ Huet","id":198863030,"id_str":"198863030","indices":[3,10]},{"screen_name":"opendatasoft","name":"OpenDataSoft","id":366088660,"id_str":"366088660","indices":[87,100]}],"urls":[{"url":"http:\/\/t.co\/9pB8fp2FGT","expanded_url":"http:\/\/www.scpr.org\/news\/2015\/06\/24\/52343\/how-much-do-open-data-portals-cost-so-cal-governme\/","display_url":"scpr.org\/news\/2015\/06\/2\u2026","indices":[48,70]}],"media":[{"id":632227925404680193,"id_str":"632227925404680193","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMYf8s7UAAEK0a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMYf8s7UAAEK0a9.jpg","url":"http:\/\/t.co\/R9emNrlXCy","display_url":"pic.twitter.com\/R9emNrlXCy","expanded_url":"http:\/\/twitter.com\/mchuet\/status\/632227926470094849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":164,"resize":"fit"},"large":{"w":620,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":290,"resize":"fit"}},"source_status_id":632227926470094849,"source_status_id_str":"632227926470094849","source_user_id":198863030,"source_user_id_str":"198863030"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
688
+ Aug 16 13:12:55 +0000 2015","id":632902861777686528,"id_str":"632902861777686528","text":"Gartner
689
+ says Taylor Swift, analytics, online citizen IDs are the future of government
690
+ technology - GovFresh http:\/\/t.co\/geFsBFLVXc","source":"\u003ca href=\"http:\/\/pikesley.org\"
691
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
692
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
693
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
694
+ Aug 16 13:11:59 +0000 2015","id":632902624279441408,"id_str":"632902624279441408","text":"#Bitcoin
695
+ service hashingspace to open data center in washington #crypto #cryptocurrency
696
+ http:\/\/t.co\/i22NGddUHT http:\/\/t.co\/lKu4TliplK","source":"\u003ca href=\"http:\/\/bitcoinz.be\"
697
+ rel=\"nofollow\"\u003eBitcoinzWomanFull\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":2828426172,"id_str":"2828426172","name":"BitcoinzWoman","screen_name":"BitcoinzWoman","location":"Brussels
698
+ area","description":"Spreading the #bitcoin gospel with a female touch. Love
699
+ various #cryptocurrencies and contribute my part in spreading the word.","url":"http:\/\/t.co\/9wYYrprNbg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9wYYrprNbg","expanded_url":"http:\/\/bitcoinz.be","display_url":"bitcoinz.be","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":9273,"friends_count":9212,"listed_count":528,"created_at":"Tue
700
+ Sep 23 17:42:40 +0000 2014","favourites_count":371,"utc_offset":7200,"time_zone":"Brussels","geo_enabled":false,"verified":false,"statuses_count":234317,"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\/514530175795482624\/dOPwzxMI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514530175795482624\/dOPwzxMI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2828426172\/1411495302","profile_link_color":"000000","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":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[64,71]},{"text":"cryptocurrency","indices":[72,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/i22NGddUHT","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[88,110]}],"media":[{"id":632902621792219136,"id_str":"632902621792219136","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMiFlM1WsAA3FT2.png","url":"http:\/\/t.co\/lKu4TliplK","display_url":"pic.twitter.com\/lKu4TliplK","expanded_url":"http:\/\/twitter.com\/BitcoinzWoman\/status\/632902624279441408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
701
+ Aug 16 13:10:53 +0000 2015","id":632902350894669824,"id_str":"632902350894669824","text":"Understanding
702
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
703
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
704
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
705
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
706
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
707
+ Aug 16 13:08:43 +0000 2015","id":632901804179726336,"id_str":"632901804179726336","text":"How
708
+ Taylor Swift and #socialmedia helped Nepal rebuild after earthquake.\nhttp:\/\/t.co\/OOqYRT1HoB
709
+ http:\/\/t.co\/8lEQuDcMKo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\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":2738184725,"id_str":"2738184725","name":"Nepal
710
+ Bot","screen_name":"BotNepal","location":"Nepal","description":"","url":"http:\/\/t.co\/juWx6EgFKd","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/juWx6EgFKd","expanded_url":"http:\/\/twitter.com\/nepalbot","display_url":"twitter.com\/nepalbot","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":3,"listed_count":28,"created_at":"Sat
711
+ Aug 09 15:08:01 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10454,"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\/631342729415532544\/QYCYoCLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631342729415532544\/QYCYoCLs_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":[{"text":"socialmedia","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/OOqYRT1HoB","expanded_url":"http:\/\/goo.gl\/df8K35","display_url":"goo.gl\/df8K35","indices":[73,95]}],"media":[{"id":632858986073706496,"id_str":"632858986073706496","indices":[96,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","url":"http:\/\/t.co\/8lEQuDcMKo","display_url":"pic.twitter.com\/8lEQuDcMKo","expanded_url":"http:\/\/twitter.com\/iCreateworld4u\/status\/632869463340134400\/photo\/1","type":"photo","sizes":{"medium":{"w":340,"h":227,"resize":"fit"},"large":{"w":340,"h":227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":632869463340134400,"source_status_id_str":"632869463340134400","source_user_id":1953795199,"source_user_id_str":"1953795199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
712
+ Aug 16 13:07:50 +0000 2015","id":632901583718744064,"id_str":"632901583718744064","text":"How
713
+ Taylor Swift and #socialmedia helped Nepal rebuild after earthquake.\nhttp:\/\/t.co\/OxTnVOUAj9
714
+ http:\/\/t.co\/EqGuw481nr","source":"\u003ca href=\"http:\/\/pikesley.org\"
715
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
716
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
717
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"socialmedia","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/OxTnVOUAj9","expanded_url":"http:\/\/goo.gl\/df8K35","display_url":"goo.gl\/df8K35","indices":[73,95]}],"media":[{"id":632858986073706496,"id_str":"632858986073706496","indices":[96,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","url":"http:\/\/t.co\/EqGuw481nr","display_url":"pic.twitter.com\/EqGuw481nr","expanded_url":"http:\/\/twitter.com\/iCreateworld4u\/status\/632869463340134400\/photo\/1","type":"photo","sizes":{"medium":{"w":340,"h":227,"resize":"fit"},"large":{"w":340,"h":227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":632869463340134400,"source_status_id_str":"632869463340134400","source_user_id":1953795199,"source_user_id_str":"1953795199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
718
+ Aug 16 13:06:50 +0000 2015","id":632901329174798336,"id_str":"632901329174798336","text":"#SocialMedia:
719
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/X5d4PQ98yQ\n
720
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
721
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
722
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
723
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/X5d4PQ98yQ","expanded_url":"http:\/\/chilp.it\/ac1e588","display_url":"chilp.it\/ac1e588","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"nl","result_type":"recent"},"created_at":"Sun
724
+ Aug 16 13:05:49 +0000 2015","id":632901074735792128,"id_str":"632901074735792128","text":"Taylor
725
+ Swift: waarom loopt het vaak in de soep? http:\/\/t.co\/PIunVQetkX #Consument
726
+ #Overheid","source":"\u003ca href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
727
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
728
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Consument","indices":[71,81]},{"text":"Overheid","indices":[82,91]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/PIunVQetkX","expanded_url":"http:\/\/tinyurl.com\/nvyyvky","display_url":"tinyurl.com\/nvyyvky","indices":[48,70]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
729
+ Aug 16 13:02:50 +0000 2015","id":632900322894180352,"id_str":"632900322894180352","text":"RT
730
+ @RichardKerby: The open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
731
+ 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":197111481,"id_str":"197111481","name":"The
732
+ Bloor Group","screen_name":"thebloorgroup","location":"Austin, Texas","description":"The
733
+ Bloor Group is an independent analyst firm that produces objective, high-quality
734
+ analysis of technology products, services and markets.","url":"http:\/\/t.co\/8CayOXTZLl","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/8CayOXTZLl","expanded_url":"http:\/\/www.BloorGroup.com","display_url":"BloorGroup.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6509,"friends_count":7020,"listed_count":250,"created_at":"Thu
735
+ Sep 30 17:41:40 +0000 2010","favourites_count":159,"utc_offset":-18000,"time_zone":"Central
736
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":9458,"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\/3521149385\/b864463e9d246b4c87ab2e1ca6b38dce_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3521149385\/b864463e9d246b4c87ab2e1ca6b38dce_normal.png","profile_link_color":"009999","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Tue
737
+ Jun 30 21:40:01 +0000 2015","id":615998249200132097,"id_str":"615998249200132097","text":"The
738
+ open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
739
+ href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\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":301014555,"id_str":"301014555","name":"Richard
740
+ Kerby","screen_name":"RichardKerby","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":25,"listed_count":11,"created_at":"Wed
741
+ May 18 18:44:52 +0000 2011","favourites_count":4,"utc_offset":-10800,"time_zone":"Atlantic
742
+ Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":356,"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\/1360018232\/066fa87_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360018232\/066fa87_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":3,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[43,65]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RichardKerby","name":"Richard
743
+ Kerby","id":301014555,"id_str":"301014555","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[61,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
744
+ Aug 16 13:02:45 +0000 2015","id":632900302732197888,"id_str":"632900302732197888","text":"RT
745
+ @eric_kavanagh: Check out the #OpenData Impact Map, a global view of open
746
+ data use cases at http:\/\/t.co\/ApTiccnwF2 #ODImpactMap @odenter\u2026","source":"\u003ca
747
+ 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":197111481,"id_str":"197111481","name":"The
748
+ Bloor Group","screen_name":"thebloorgroup","location":"Austin, Texas","description":"The
749
+ Bloor Group is an independent analyst firm that produces objective, high-quality
750
+ analysis of technology products, services and markets.","url":"http:\/\/t.co\/8CayOXTZLl","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/8CayOXTZLl","expanded_url":"http:\/\/www.BloorGroup.com","display_url":"BloorGroup.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":6509,"friends_count":7020,"listed_count":250,"created_at":"Thu
751
+ Sep 30 17:41:40 +0000 2010","favourites_count":159,"utc_offset":-18000,"time_zone":"Central
752
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":9458,"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\/3521149385\/b864463e9d246b4c87ab2e1ca6b38dce_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3521149385\/b864463e9d246b4c87ab2e1ca6b38dce_normal.png","profile_link_color":"009999","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
753
+ Aug 16 12:56:55 +0000 2015","id":632898833245147136,"id_str":"632898833245147136","text":"Check
754
+ out the #OpenData Impact Map, a global view of open data use cases at http:\/\/t.co\/ApTiccnwF2
755
+ #ODImpactMap @odenterprise #BigData","source":"\u003ca href=\"http:\/\/linkis.com\"
756
+ rel=\"nofollow\"\u003eLinkis.com\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":193030139,"id_str":"193030139","name":"Eric
757
+ Kavanagh","screen_name":"eric_kavanagh","location":"The South","description":"@TheBloorGroup
758
+ CEO, @UN eGov Consultant, @SXSW Tech Adviser, New Media Designer, Host of
759
+ DM Radio & Briefing Room; TechWise with @Techopedia","url":"http:\/\/t.co\/b484y87Qoc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/b484y87Qoc","expanded_url":"http:\/\/www.InsideAnalysis.com","display_url":"InsideAnalysis.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":47830,"friends_count":52576,"listed_count":1063,"created_at":"Mon
760
+ Sep 20 20:04:40 +0000 2010","favourites_count":1112,"utc_offset":-18000,"time_zone":"Central
761
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":63384,"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\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193030139\/1353390724","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":2,"favorite_count":3,"entities":{"hashtags":[{"text":"OpenData","indices":[14,23]},{"text":"ODImpactMap","indices":[99,111]},{"text":"BigData","indices":[126,134]}],"symbols":[],"user_mentions":[{"screen_name":"odenterprise","name":"Open
762
+ Data Enterprise","id":3041659000,"id_str":"3041659000","indices":[112,125]}],"urls":[{"url":"http:\/\/t.co\/ApTiccnwF2","expanded_url":"http:\/\/ln.is\/opendataenterprise.org\/fAniy","display_url":"ln.is\/opendataenterp\u2026","indices":[76,98]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"OpenData","indices":[33,42]},{"text":"ODImpactMap","indices":[118,130]},{"text":"BigData","indices":[139,140]}],"symbols":[],"user_mentions":[{"screen_name":"eric_kavanagh","name":"Eric
763
+ Kavanagh","id":193030139,"id_str":"193030139","indices":[3,17]},{"screen_name":"odenterprise","name":"Open
764
+ Data Enterprise","id":3041659000,"id_str":"3041659000","indices":[131,140]}],"urls":[{"url":"http:\/\/t.co\/ApTiccnwF2","expanded_url":"http:\/\/ln.is\/opendataenterprise.org\/fAniy","display_url":"ln.is\/opendataenterp\u2026","indices":[95,117]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
765
+ Aug 16 13:01:46 +0000 2015","id":632900056715264000,"id_str":"632900056715264000","text":"Is
766
+ the Taylor Swift discussion open enough? http:\/\/t.co\/yFjDQKzFXF #TaylorSwift","source":"\u003ca
767
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
768
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
769
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[67,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/yFjDQKzFXF","expanded_url":"http:\/\/bit.ly\/1DV5mEd","display_url":"bit.ly\/1DV5mEd","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
770
+ Aug 16 13:00:46 +0000 2015","id":632899802158735361,"id_str":"632899802158735361","text":"Taylor
771
+ Swift and crowdfunding can breathe new life into democracy http:\/\/t.co\/KjgkbE3jUg
772
+ #crowdfunding #TaylorSwift #Publiek","source":"\u003ca href=\"http:\/\/pikesley.org\"
773
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
774
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
775
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"crowdfunding","indices":[89,102]},{"text":"TaylorSwift","indices":[103,115]},{"text":"Publiek","indices":[116,124]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KjgkbE3jUg","expanded_url":"http:\/\/tinyurl.com\/pepfokf","display_url":"tinyurl.com\/pepfokf","indices":[66,88]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
776
+ Aug 16 12:59:45 +0000 2015","id":632899547556151296,"id_str":"632899547556151296","text":"Is
777
+ the #TaylorSwift discussion open enough? http:\/\/t.co\/OAt1awVBVn @davesaldivar
778
+ via @OxfamAmerica #globaldev HT @intldogooder #data4dev","source":"\u003ca
779
+ href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
780
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
781
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[7,19]},{"text":"globaldev","indices":[99,109]},{"text":"data4dev","indices":[127,136]}],"symbols":[],"user_mentions":[{"screen_name":"davesaldivar","name":"David
782
+ Saldivar","id":23722998,"id_str":"23722998","indices":[67,80]},{"screen_name":"OxfamAmerica","name":"Oxfam
783
+ America","id":11695602,"id_str":"11695602","indices":[85,98]},{"screen_name":"intldogooder","name":"How
784
+ Matters","id":167203538,"id_str":"167203538","indices":[113,126]}],"urls":[{"url":"http:\/\/t.co\/OAt1awVBVn","expanded_url":"http:\/\/ow.ly\/QUrKe","display_url":"ow.ly\/QUrKe","indices":[44,66]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
785
+ Aug 16 12:58:57 +0000 2015","id":632899344329502720,"id_str":"632899344329502720","text":"ODI
786
+ urges government not to use #opendata as an excuse to clamp down on #FOI http:\/\/t.co\/EGXjbxAwmt","source":"\u003ca
787
+ href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\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":760654,"id_str":"760654","name":"Paul
788
+ Bradshaw","screen_name":"paulbradshaw","location":"Birmingham, UK","description":"Data
789
+ journalist. I''ve written some books, I hope you like them https:\/\/t.co\/ooMdu7KXC0
790
+ PGP: http:\/\/t.co\/vgIjldyV0o","url":"http:\/\/t.co\/wIzDQ2uwls","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wIzDQ2uwls","expanded_url":"http:\/\/onlinejournalismblog.com\/","display_url":"onlinejournalismblog.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ooMdu7KXC0","expanded_url":"https:\/\/leanpub.com\/u\/paulbradshaw","display_url":"leanpub.com\/u\/paulbradshaw","indices":[63,86]},{"url":"http:\/\/t.co\/vgIjldyV0o","expanded_url":"http:\/\/tinyurl.com\/l7t9vun","display_url":"tinyurl.com\/l7t9vun","indices":[92,114]}]}},"protected":false,"followers_count":23304,"friends_count":9357,"listed_count":2311,"created_at":"Fri
791
+ Feb 09 15:42:26 +0000 2007","favourites_count":1345,"utc_offset":3600,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":40087,"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\/74426603\/twilk_background_4b744feaa2129.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/74426603\/twilk_background_4b744feaa2129.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393947310\/paulbradshaw_smile_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393947310\/paulbradshaw_smile_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760654\/1412080232","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},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"opendata","indices":[32,41]},{"text":"FOI","indices":[72,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/EGXjbxAwmt","expanded_url":"http:\/\/diginomica.com\/2015\/08\/10\/odi-urges-government-not-to-use-open-data-as-an-excuse-to-clamp-down-on-fois\/#.VdCI9op4WnM","display_url":"diginomica.com\/2015\/08\/10\/odi\u2026","indices":[77,99]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
792
+ Aug 16 12:58:44 +0000 2015","id":632899293079314432,"id_str":"632899293079314432","text":"#SocialMedia:
793
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/a4tKwkZ27E\n
794
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
795
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
796
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
797
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/a4tKwkZ27E","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
798
+ Aug 16 12:57:44 +0000 2015","id":632899038560550912,"id_str":"632899038560550912","text":"\"What
799
+ Taylor Swift can do for Africa\u2019s growing population?\" by @LudaBujoreanu
800
+ on @LinkedIn https:\/\/t.co\/6jHs3V0uMY","source":"\u003ca href=\"http:\/\/pikesley.org\"
801
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
802
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
803
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"screen_name":"LudaBujoreanu","name":"Luda
804
+ ","id":499084045,"id_str":"499084045","indices":[63,77]},{"screen_name":"LinkedIn","name":"LinkedIn","id":13058772,"id_str":"13058772","indices":[81,90]}],"urls":[{"url":"https:\/\/t.co\/6jHs3V0uMY","expanded_url":"https:\/\/www.linkedin.com\/pulse\/what-open-data-can-do-africas-growing-population-luda-bujoreanu","display_url":"linkedin.com\/pulse\/what-ope\u2026","indices":[91,114]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
805
+ Aug 16 12:57:27 +0000 2015","id":632898968805056512,"id_str":"632898968805056512","text":"RT
806
+ @RichardKerby: The open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
807
+ 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":16813249,"id_str":"16813249","name":"mobiusmedia","screen_name":"mobiusmedia","location":"The
808
+ South","description":"Music, Movies and All Things New Orleans! PR Handle
809
+ for @Eric_Kavanagh -- @TheBloorGroup CEO, @UN eGov Consultant & @SXSW Tech
810
+ Adviser","url":"http:\/\/t.co\/F1DHLwg0W1","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/F1DHLwg0W1","expanded_url":"http:\/\/www.info-mgmt.com\/dmradio","display_url":"info-mgmt.com\/dmradio","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13287,"friends_count":14462,"listed_count":331,"created_at":"Thu
811
+ Oct 16 20:08:00 +0000 2008","favourites_count":3113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18540,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552357124030730240\/DiffOB5m.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552357124030730240\/DiffOB5m.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620284517094457345\/ZGenznkA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620284517094457345\/ZGenznkA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16813249\/1360506896","profile_link_color":"4A913C","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":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Tue
812
+ Jun 30 21:40:01 +0000 2015","id":615998249200132097,"id_str":"615998249200132097","text":"The
813
+ open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
814
+ href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\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":301014555,"id_str":"301014555","name":"Richard
815
+ Kerby","screen_name":"RichardKerby","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":25,"listed_count":11,"created_at":"Wed
816
+ May 18 18:44:52 +0000 2011","favourites_count":4,"utc_offset":-10800,"time_zone":"Atlantic
817
+ Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":356,"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\/1360018232\/066fa87_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360018232\/066fa87_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":3,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[43,65]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RichardKerby","name":"Richard
818
+ Kerby","id":301014555,"id_str":"301014555","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[61,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
819
+ Aug 16 12:56:55 +0000 2015","id":632898833245147136,"id_str":"632898833245147136","text":"Check
820
+ out the #OpenData Impact Map, a global view of open data use cases at http:\/\/t.co\/ApTiccnwF2
821
+ #ODImpactMap @odenterprise #BigData","source":"\u003ca href=\"http:\/\/linkis.com\"
822
+ rel=\"nofollow\"\u003eLinkis.com\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":193030139,"id_str":"193030139","name":"Eric
823
+ Kavanagh","screen_name":"eric_kavanagh","location":"The South","description":"@TheBloorGroup
824
+ CEO, @UN eGov Consultant, @SXSW Tech Adviser, New Media Designer, Host of
825
+ DM Radio & Briefing Room; TechWise with @Techopedia","url":"http:\/\/t.co\/b484y87Qoc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/b484y87Qoc","expanded_url":"http:\/\/www.InsideAnalysis.com","display_url":"InsideAnalysis.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":47830,"friends_count":52576,"listed_count":1063,"created_at":"Mon
826
+ Sep 20 20:04:40 +0000 2010","favourites_count":1112,"utc_offset":-18000,"time_zone":"Central
827
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":63384,"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\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193030139\/1353390724","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":2,"favorite_count":3,"entities":{"hashtags":[{"text":"OpenData","indices":[14,23]},{"text":"ODImpactMap","indices":[99,111]},{"text":"BigData","indices":[126,134]}],"symbols":[],"user_mentions":[{"screen_name":"odenterprise","name":"Open
828
+ Data Enterprise","id":3041659000,"id_str":"3041659000","indices":[112,125]}],"urls":[{"url":"http:\/\/t.co\/ApTiccnwF2","expanded_url":"http:\/\/ln.is\/opendataenterprise.org\/fAniy","display_url":"ln.is\/opendataenterp\u2026","indices":[76,98]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
829
+ Aug 16 12:56:43 +0000 2015","id":632898784058589184,"id_str":"632898784058589184","text":"#Bitcoin
830
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
831
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/wB8gRH53jd","source":"\u003ca href=\"http:\/\/pikesley.org\"
832
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
833
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
834
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/wB8gRH53jd","display_url":"pic.twitter.com\/wB8gRH53jd","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
835
+ Aug 16 12:52:39 +0000 2015","id":632897761600491520,"id_str":"632897761600491520","text":"Gartner
836
+ says Taylor Swift, analytics, online citizen IDs are the future of government
837
+ technology - GovFresh http:\/\/t.co\/geFsBFLVXc","source":"\u003ca href=\"http:\/\/pikesley.org\"
838
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
839
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
840
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
841
+ Aug 16 12:50:37 +0000 2015","id":632897250772021248,"id_str":"632897250772021248","text":"Understanding
842
+ the value of #TaylorSwift: what it is and how to use it? http:\/\/t.co\/IuNP1bE9cL
843
+ #bigdata http:\/\/t.co\/eCKhmEftrZ","source":"\u003ca href=\"http:\/\/pikesley.org\"
844
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
845
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
846
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"TaylorSwift","indices":[27,39]},{"text":"bigdata","indices":[94,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/IuNP1bE9cL","expanded_url":"http:\/\/ow.ly\/QXm8l","display_url":"ow.ly\/QXm8l","indices":[71,93]}],"media":[{"id":632869633930960896,"id_str":"632869633930960896","indices":[103,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhnlDeWIAAfdvQ.jpg","url":"http:\/\/t.co\/eCKhmEftrZ","display_url":"pic.twitter.com\/eCKhmEftrZ","expanded_url":"http:\/\/twitter.com\/PlaceILive\/status\/632869634182615041\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":342,"resize":"fit"},"large":{"w":917,"h":523,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":632869634182615041,"source_status_id_str":"632869634182615041","source_user_id":802398684,"source_user_id_str":"802398684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
847
+ Aug 16 12:47:34 +0000 2015","id":632896483499614208,"id_str":"632896483499614208","text":"How
848
+ Taylor Swift and #socialmedia helped Nepal rebuild after earthquake.\nhttp:\/\/t.co\/OxTnVOUAj9
849
+ http:\/\/t.co\/EqGuw481nr","source":"\u003ca href=\"http:\/\/pikesley.org\"
850
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
851
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
852
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"socialmedia","indices":[21,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/OxTnVOUAj9","expanded_url":"http:\/\/goo.gl\/df8K35","display_url":"goo.gl\/df8K35","indices":[73,95]}],"media":[{"id":632858986073706496,"id_str":"632858986073706496","indices":[96,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMhd5RHWUAAHT22.jpg","url":"http:\/\/t.co\/EqGuw481nr","display_url":"pic.twitter.com\/EqGuw481nr","expanded_url":"http:\/\/twitter.com\/iCreateworld4u\/status\/632869463340134400\/photo\/1","type":"photo","sizes":{"medium":{"w":340,"h":227,"resize":"fit"},"large":{"w":340,"h":227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":632869463340134400,"source_status_id_str":"632869463340134400","source_user_id":1953795199,"source_user_id_str":"1953795199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
853
+ Aug 16 12:46:34 +0000 2015","id":632896229022810112,"id_str":"632896229022810112","text":"#SocialMedia:
854
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/X5d4PQ98yQ\n
855
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
856
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
857
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
858
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/X5d4PQ98yQ","expanded_url":"http:\/\/chilp.it\/ac1e588","display_url":"chilp.it\/ac1e588","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
859
+ Aug 16 12:45:38 +0000 2015","id":632895996708671488,"id_str":"632895996708671488","text":"Open
860
+ Data around the world is out! http:\/\/t.co\/xjKGzi6X20 Stories via @KihnElwin
861
+ @thomsonreuters","source":"\u003ca href=\"http:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\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":43086900,"id_str":"43086900","name":"Comune
862
+ di Bologna","screen_name":"Twiperbole","location":"Bologna","description":"Account
863
+ ufficiale di Iperbole, la Rete Civica Comune di Bologna: eventi, news e un
864
+ dialogo sempre aperto. Info viabilit\u00e0 #viabiliBO Avvisi #boavviso","url":"http:\/\/t.co\/4s2oyWG7r7","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4s2oyWG7r7","expanded_url":"http:\/\/www.comune.bologna.it","display_url":"comune.bologna.it","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":33094,"friends_count":984,"listed_count":441,"created_at":"Thu
865
+ May 28 10:47:49 +0000 2009","favourites_count":5153,"utc_offset":7200,"time_zone":"Rome","geo_enabled":true,"verified":true,"statuses_count":46789,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F6F0D6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/102981817\/IMG_6630.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/102981817\/IMG_6630.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620543547964588032\/WNFQeafU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620543547964588032\/WNFQeafU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43086900\/1434970483","profile_link_color":"B63535","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F0D6","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":"KihnElwin","name":"Elwin
866
+ Kihn","id":3241213100,"id_str":"3241213100","indices":[70,80]},{"screen_name":"thomsonreuters","name":"Thomson
867
+ Reuters","id":14412844,"id_str":"14412844","indices":[81,96]}],"urls":[{"url":"http:\/\/t.co\/xjKGzi6X20","expanded_url":"http:\/\/paper.li\/Twiperbole\/1325504471?edition_id=b1772b80-4414-11e5-9ebc-002590a5ba2d","display_url":"paper.li\/Twiperbole\/132\u2026","indices":[35,57]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"nl","result_type":"recent"},"created_at":"Sun
868
+ Aug 16 12:45:33 +0000 2015","id":632895974449541120,"id_str":"632895974449541120","text":"Taylor
869
+ Swift: waarom loopt het vaak in de soep? http:\/\/t.co\/PIunVQetkX #Consument
870
+ #Overheid","source":"\u003ca href=\"http:\/\/pikesley.org\" rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
871
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
872
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Consument","indices":[71,81]},{"text":"Overheid","indices":[82,91]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/PIunVQetkX","expanded_url":"http:\/\/tinyurl.com\/nvyyvky","display_url":"tinyurl.com\/nvyyvky","indices":[48,70]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
873
+ Aug 16 12:38:54 +0000 2015","id":632894299403886592,"id_str":"632894299403886592","text":"#Bitcoin
874
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
875
+ http:\/\/t.co\/KNbYioeitr http:\/\/t.co\/qNVAOmORDy","source":"\u003ca href=\"https:\/\/twitter.com\/ElfoGeeck\"
876
+ rel=\"nofollow\"\u003eElfoGeeck\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":214116546,"id_str":"214116546","name":"Dnel
877
+ Rhailec","screen_name":"cryptoland","location":"","description":"Cryptograms,
878
+ puzzles, programming and other challenges","url":"http:\/\/t.co\/HYXVadeNei","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/HYXVadeNei","expanded_url":"http:\/\/twitter.com\/#!\/cryptoland","display_url":"twitter.com\/#!\/cryptoland","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1123,"friends_count":1121,"listed_count":115,"created_at":"Wed
879
+ Nov 10 16:17:29 +0000 2010","favourites_count":0,"utc_offset":7200,"time_zone":"Madrid","geo_enabled":false,"verified":false,"statuses_count":3193,"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\/170431747\/bits.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/170431747\/bits.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164080500\/340_zodiac_letter3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164080500\/340_zodiac_letter3_normal.png","profile_link_color":"3779AB","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":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/KNbYioeitr","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/qNVAOmORDy","display_url":"pic.twitter.com\/qNVAOmORDy","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
880
+ Aug 16 12:38:39 +0000 2015","id":632894239421145088,"id_str":"632894239421145088","text":"RT
881
+ @RichardKerby: The open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
882
+ 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":193030139,"id_str":"193030139","name":"Eric
883
+ Kavanagh","screen_name":"eric_kavanagh","location":"The South","description":"@TheBloorGroup
884
+ CEO, @UN eGov Consultant, @SXSW Tech Adviser, New Media Designer, Host of
885
+ DM Radio & Briefing Room; TechWise with @Techopedia","url":"http:\/\/t.co\/b484y87Qoc","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/b484y87Qoc","expanded_url":"http:\/\/www.InsideAnalysis.com","display_url":"InsideAnalysis.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":47830,"friends_count":52576,"listed_count":1063,"created_at":"Mon
886
+ Sep 20 20:04:40 +0000 2010","favourites_count":1112,"utc_offset":-18000,"time_zone":"Central
887
+ Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":63384,"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\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168111156\/CityParkNewOrleans2005-07OakTrees.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1633919683\/EricKavanagh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193030139\/1353390724","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,"retweeted_status":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Tue
888
+ Jun 30 21:40:01 +0000 2015","id":615998249200132097,"id_str":"615998249200132097","text":"The
889
+ open data impact map has been launched\nhttp:\/\/t.co\/JrZmiIQPpY","source":"\u003ca
890
+ href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\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":301014555,"id_str":"301014555","name":"Richard
891
+ Kerby","screen_name":"RichardKerby","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":25,"listed_count":11,"created_at":"Wed
892
+ May 18 18:44:52 +0000 2011","favourites_count":4,"utc_offset":-10800,"time_zone":"Atlantic
893
+ Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":356,"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\/1360018232\/066fa87_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360018232\/066fa87_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":3,"favorite_count":3,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[43,65]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RichardKerby","name":"Richard
894
+ Kerby","id":301014555,"id_str":"301014555","indices":[3,16]}],"urls":[{"url":"http:\/\/t.co\/JrZmiIQPpY","expanded_url":"http:\/\/www.opendataenterprise.org\/map.html","display_url":"opendataenterprise.org\/map.html","indices":[61,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
895
+ Aug 16 12:38:27 +0000 2015","id":632894187965390848,"id_str":"632894187965390848","text":"#SocialMedia:
896
+ Nepal earthquake: How Taylor Swift and social media helped the Nepa... http:\/\/t.co\/a4tKwkZ27E\n
897
+ #ITjob\u261bhttp:\/\/t.co\/KgnNuXZHX5","source":"\u003ca href=\"http:\/\/pikesley.org\"
898
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
899
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
900
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"SocialMedia","indices":[0,12]},{"text":"ITjob","indices":[109,115]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/a4tKwkZ27E","expanded_url":"http:\/\/chilp.it\/6d0fa91","display_url":"chilp.it\/6d0fa91","indices":[85,107]},{"url":"http:\/\/t.co\/KgnNuXZHX5","expanded_url":"http:\/\/goo.gl\/oxZc9B","display_url":"goo.gl\/oxZc9B","indices":[116,138]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
901
+ Aug 16 12:37:26 +0000 2015","id":632893933387956224,"id_str":"632893933387956224","text":"\"What
902
+ Taylor Swift can do for Africa\u2019s growing population?\" by @LudaBujoreanu
903
+ on @LinkedIn https:\/\/t.co\/6jHs3V0uMY","source":"\u003ca href=\"http:\/\/pikesley.org\"
904
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
905
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
906
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"screen_name":"LudaBujoreanu","name":"Luda
907
+ ","id":499084045,"id_str":"499084045","indices":[63,77]},{"screen_name":"LinkedIn","name":"LinkedIn","id":13058772,"id_str":"13058772","indices":[81,90]}],"urls":[{"url":"https:\/\/t.co\/6jHs3V0uMY","expanded_url":"https:\/\/www.linkedin.com\/pulse\/what-open-data-can-do-africas-growing-population-luda-bujoreanu","display_url":"linkedin.com\/pulse\/what-ope\u2026","indices":[91,114]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
908
+ Aug 16 12:36:26 +0000 2015","id":632893678630084608,"id_str":"632893678630084608","text":"#Bitcoin
909
+ service hashingspace to Taylor Swift center in washington #crypto #cryptocurrency
910
+ http:\/\/t.co\/UYrUxQXJcu http:\/\/t.co\/wB8gRH53jd","source":"\u003ca href=\"http:\/\/pikesley.org\"
911
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
912
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
913
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[67,74]},{"text":"cryptocurrency","indices":[75,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/UYrUxQXJcu","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[91,113]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/wB8gRH53jd","display_url":"pic.twitter.com\/wB8gRH53jd","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}},"source_status_id":632891395435569152,"source_status_id_str":"632891395435569152","source_user_id":2811914996,"source_user_id_str":"2811914996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
914
+ Aug 16 12:35:06 +0000 2015","id":632893342162915330,"id_str":"632893342162915330","text":"RT
915
+ @t_s_institute: Gartner says Taylor Swift, analytics, online citizen IDs are
916
+ the future of government technology - GovFresh http:\/\/t.co\/\u2026","source":"\u003ca
917
+ href=\"http:\/\/www.robinspost.com\/news\/\" rel=\"nofollow\"\u003eVote User
918
+ Posts\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":40173650,"id_str":"40173650","name":"World
919
+ News Report","screen_name":"robinsnewswire","location":"Flying The Web For
920
+ News","description":"Providing trusted world news reports and shopping discounts
921
+ on the web 24\/7. Retweeting for opinions, useful infomation, and the many
922
+ voices of Twitter.","url":"http:\/\/t.co\/DNyCun08Ab","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DNyCun08Ab","expanded_url":"http:\/\/www.robinspost.com","display_url":"robinspost.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":21315,"friends_count":19279,"listed_count":2084,"created_at":"Fri
923
+ May 15 04:16:20 +0000 2009","favourites_count":552,"utc_offset":-25200,"time_zone":"Pacific
924
+ Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":878633,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"141106","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/13240545\/microsoftocean1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/13240545\/microsoftocean1.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2240371734\/robin_digital_stamp_colored_icon2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2240371734\/robin_digital_stamp_colored_icon2_normal.png","profile_link_color":"880000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"634047","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":{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
925
+ Aug 16 12:33:22 +0000 2015","id":632892909830971392,"id_str":"632892909830971392","text":"Gartner
926
+ says Taylor Swift, analytics, online citizen IDs are the future of government
927
+ technology - GovFresh http:\/\/t.co\/geFsBFLVXc","source":"\u003ca href=\"http:\/\/pikesley.org\"
928
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
929
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
930
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"url":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"t_s_institute","name":"OpenDataTaylorSwift","id":3407124952,"id_str":"3407124952","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[127,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
931
+ Aug 16 12:33:22 +0000 2015","id":632892909830971392,"id_str":"632892909830971392","text":"Gartner
932
+ says Taylor Swift, analytics, online citizen IDs are the future of government
933
+ technology - GovFresh http:\/\/t.co\/geFsBFLVXc","source":"\u003ca href=\"http:\/\/pikesley.org\"
934
+ rel=\"nofollow\"\u003eSamReadWriteBot\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":3407124952,"id_str":"3407124952","name":"OpenDataTaylorSwift","screen_name":"t_s_institute","location":"","description":"s\/open
935
+ data\/Taylor Swift\/g","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1,"listed_count":68,"created_at":"Fri
936
+ Aug 07 11:05:54 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1840,"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\/629664764743053312\/WbQbW1rN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664764743053312\/WbQbW1rN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407124952\/1439564919","profile_link_color":"9266CC","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":[{"url":"http:\/\/t.co\/geFsBFLVXc","expanded_url":"http:\/\/buff.ly\/1Kl92vw","display_url":"buff.ly\/1Kl92vw","indices":[108,130]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
937
+ Aug 16 12:31:52 +0000 2015","id":632892528489046016,"id_str":"632892528489046016","text":"The
938
+ Open Data Daily is out! http:\/\/t.co\/gSwCYxoog9 Stories via @opengov20 @mcojo
939
+ @CABI_News","source":"\u003ca href=\"http:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\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":183995510,"id_str":"183995510","name":"Ze\u00efneb
940
+ Gharbi","screen_name":"z_gharbi","location":"Gatineau, Canada","description":"Professionnelle
941
+ de l''information, m\u00e8re, \u00e9pouse, technophile, lectrice. Strategic
942
+ Research Analyst at Library and Archives Canada. Opinions are mine.","url":"http:\/\/t.co\/xOObSG03iT","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xOObSG03iT","expanded_url":"http:\/\/ca.linkedin.com\/in\/zeinebgharbi","display_url":"ca.linkedin.com\/in\/zeinebgharbi","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":872,"friends_count":1143,"listed_count":95,"created_at":"Sat
943
+ Aug 28 12:18:03 +0000 2010","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10726,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","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\/445993307403874304\/64QnICWF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445993307403874304\/64QnICWF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/183995510\/1370973320","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","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":"opengov20","name":"opengov20","id":126403297,"id_str":"126403297","indices":[63,73]},{"screen_name":"mcojo","name":"John
944
+ McDonough","id":54224221,"id_str":"54224221","indices":[74,80]},{"screen_name":"CABI_News","name":"CABI
945
+ News","id":57363819,"id_str":"57363819","indices":[81,91]}],"urls":[{"url":"http:\/\/t.co\/gSwCYxoog9","expanded_url":"http:\/\/paper.li\/z_gharbi\/opendata?edition_id=c3943bc0-4412-11e5-8b84-0cc47a0d1609","display_url":"paper.li\/z_gharbi\/opend\u2026","indices":[28,50]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
946
+ Aug 16 12:30:06 +0000 2015","id":632892087067783168,"id_str":"632892087067783168","text":"RT
947
+ @fosterscience: RT @sjDCC: Where does your country rate on the #opendata scale?
948
+ Check it out at Open Data Barometer http:\/\/t.co\/mRVvpOZs\u2026","source":"\u003ca
949
+ href=\"http:\/\/www.darkdataconsult.in\" rel=\"nofollow\"\u003eDark Data Twitter
950
+ 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":3237683845,"id_str":"3237683845","name":"Data
951
+ Story","screen_name":"datstory","location":"","description":"Creating stories
952
+ using #datavisualization #dataviz #datstory","url":"http:\/\/t.co\/sMgrRIr83E","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/sMgrRIr83E","expanded_url":"http:\/\/datstory.org\/","display_url":"datstory.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":157,"listed_count":272,"created_at":"Sat
953
+ Jun 06 07:16:51 +0000 2015","favourites_count":1640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3363,"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\/607086536635510784\/MKY3lF_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607086536635510784\/MKY3lF_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237683845\/1433586485","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":"Sat
954
+ Aug 15 13:12:09 +0000 2015","id":632540281238331392,"id_str":"632540281238331392","text":"RT
955
+ @sjDCC: Where does your country rate on the #opendata scale? Check it out
956
+ at Open Data Barometer http:\/\/t.co\/mRVvpOZseL #wlic2015","source":"\u003ca
957
+ 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,"user":{"id":2283463274,"id_str":"2283463274","name":"Foster
958
+ Open Science","screen_name":"fosterscience","location":"European Research
959
+ Area","description":"FACILITATE OPEN SCIENCE TRAINING FOR EUROPEAN RESEARCH","url":"http:\/\/t.co\/bQZgxjNePi","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bQZgxjNePi","expanded_url":"http:\/\/www.fosteropenscience.eu\/","display_url":"fosteropenscience.eu","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1126,"friends_count":815,"listed_count":93,"created_at":"Thu
960
+ Jan 09 11:42:04 +0000 2014","favourites_count":829,"utc_offset":3600,"time_zone":"Casablanca","geo_enabled":true,"verified":false,"statuses_count":705,"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\/464812585712234496\/tI9cRV8S_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464812585712234496\/tI9cRV8S_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2283463274\/1399631825","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":2,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[47,56]},{"text":"wlic2015","indices":[123,132]}],"symbols":[],"user_mentions":[{"screen_name":"sjDCC","name":"Sarah
961
+ Jones","id":20695447,"id_str":"20695447","indices":[3,9]}],"urls":[{"url":"http:\/\/t.co\/mRVvpOZseL","expanded_url":"http:\/\/bit.ly\/1UGRn8Y","display_url":"bit.ly\/1UGRn8Y","indices":[100,122]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[66,75]},{"text":"wlic2015","indices":[139,140]}],"symbols":[],"user_mentions":[{"screen_name":"fosterscience","name":"Foster
962
+ Open Science","id":2283463274,"id_str":"2283463274","indices":[3,17]},{"screen_name":"sjDCC","name":"Sarah
963
+ Jones","id":20695447,"id_str":"20695447","indices":[22,28]}],"urls":[{"url":"http:\/\/t.co\/mRVvpOZseL","expanded_url":"http:\/\/bit.ly\/1UGRn8Y","display_url":"bit.ly\/1UGRn8Y","indices":[119,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
964
+ Aug 16 12:27:21 +0000 2015","id":632891395435569152,"id_str":"632891395435569152","text":"#Bitcoin
965
+ service hashingspace to open data center in washington #crypto #cryptocurrency
966
+ http:\/\/t.co\/ou0STYHOQp http:\/\/t.co\/IzFHrL7xN3","source":"\u003ca href=\"http:\/\/www.bitcoinz.be\"
967
+ rel=\"nofollow\"\u003eBitcoinzMachineFull\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":2811914996,"id_str":"2811914996","name":"BitcoinzMachine","screen_name":"BitcoinzMachine","location":"Leuven","description":"Cybernetic
968
+ life form crawling the wide web in search of #crytocurrency data and networks.","url":"http:\/\/t.co\/9wYYrprNbg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9wYYrprNbg","expanded_url":"http:\/\/bitcoinz.be","display_url":"bitcoinz.be","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":7412,"friends_count":7375,"listed_count":442,"created_at":"Mon
969
+ Sep 15 20:44:38 +0000 2014","favourites_count":180,"utc_offset":7200,"time_zone":"Brussels","geo_enabled":false,"verified":false,"statuses_count":193686,"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\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811914996\/1414517413","profile_link_color":"151616","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":0,"entities":{"hashtags":[{"text":"Bitcoin","indices":[0,8]},{"text":"crypto","indices":[64,71]},{"text":"cryptocurrency","indices":[72,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/ou0STYHOQp","expanded_url":"http:\/\/j.mp\/1gUcCWD","display_url":"j.mp\/1gUcCWD","indices":[88,110]}],"media":[{"id":632891392876941314,"id_str":"632891392876941314","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMh7Xl3VEAIZh6d.png","url":"http:\/\/t.co\/IzFHrL7xN3","display_url":"pic.twitter.com\/IzFHrL7xN3","expanded_url":"http:\/\/twitter.com\/BitcoinzMachine\/status\/632891395435569152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"medium":{"w":500,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"metadata":{"iso_language_code":"en","result_type":"recent"},"created_at":"Sun
970
+ Aug 16 12:24:34 +0000 2015","id":632890695406239744,"id_str":"632890695406239744","text":"\"What
971
+ Open Data can do for Africa\u2019s growing population?\" by @LudaBujoreanu
972
+ on @LinkedIn https:\/\/t.co\/5bgoSWxyCD","source":"\u003ca href=\"http:\/\/twitter.com\"
973
+ 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":499084045,"id_str":"499084045","name":"Luda
974
+ ","screen_name":"LudaBujoreanu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":50,"listed_count":1,"created_at":"Tue
975
+ Feb 21 19:14:59 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"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\/508292192947810305\/QUbobstb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508292192947810305\/QUbobstb_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":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LudaBujoreanu","name":"Luda
976
+ ","id":499084045,"id_str":"499084045","indices":[60,74]},{"screen_name":"LinkedIn","name":"LinkedIn","id":13058772,"id_str":"13058772","indices":[78,87]}],"urls":[{"url":"https:\/\/t.co\/5bgoSWxyCD","expanded_url":"https:\/\/www.linkedin.com\/pulse\/what-open-data-can-do-africas-growing-population-luda-bujoreanu","display_url":"linkedin.com\/pulse\/what-ope\u2026","indices":[88,111]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}],"search_metadata":{"completed_in":0.073,"max_id":632916379830763520,"max_id_str":"632916379830763520","next_results":"?max_id=632890695406239743&q=%2522open%2520data%2522&count=100&include_entities=1&result_type=recent","query":"%2522open%2520data%2522","refresh_url":"?since_id=632916379830763520&q=%2522open%2520data%2522&result_type=recent&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}'
977
+ http_version:
978
+ recorded_at: Sun, 16 Aug 2015 14:07:24 GMT
979
+ recorded_with: VCR 2.9.3