t 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ describe T::Delete do
6
6
  before do
7
7
  rcfile = RCFile.instance
8
8
  rcfile.path = fixture_path + "/.trc"
9
- @t = T::CLI.new
9
+ @delete = T::Delete.new
10
10
  @old_stderr = $stderr
11
11
  $stderr = StringIO.new
12
12
  @old_stdout = $stdout
@@ -20,96 +20,77 @@ describe T::Delete do
20
20
 
21
21
  describe "#block" do
22
22
  before do
23
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
23
+ @delete.options = @delete.options.merge(:profile => fixture_path + "/.trc")
24
24
  stub_delete("/1/blocks/destroy.json").
25
25
  with(:query => {:screen_name => "sferik", :include_entities => "false"}).
26
26
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
27
27
  end
28
28
  it "should request the correct resource" do
29
- @t.delete("block", "sferik")
29
+ @delete.block("sferik")
30
30
  a_delete("/1/blocks/destroy.json").
31
31
  with(:query => {:screen_name => "sferik", :include_entities => "false"}).
32
32
  should have_been_made
33
33
  end
34
34
  it "should have the correct output" do
35
- @t.delete("block", "sferik")
35
+ @delete.block("sferik")
36
36
  $stdout.string.should =~ /^@testcli unblocked @sferik\.$/
37
37
  end
38
38
  end
39
39
 
40
40
  describe "#dm" do
41
41
  before do
42
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
42
+ @delete.options = @delete.options.merge(:profile => fixture_path + "/.trc")
43
+ stub_delete("/1/direct_messages/destroy/1773478249.json").
44
+ with(:query => {:include_entities => "false"}).
45
+ to_return(:body => fixture("direct_message.json"), :headers => {:content_type => "application/json; charset=utf-8"})
43
46
  end
44
- context "not found" do
47
+ context ":force => true" do
45
48
  before do
46
- stub_get("/1/direct_messages/sent.json").
47
- with(:query => {:count => "1", :include_entities => "false"}).
48
- to_return(:body => "[]", :headers => {:content_type => "application/json; charset=utf-8"})
49
+ @delete.options = @delete.options.merge(:force => true)
49
50
  end
50
- it "should exit" do
51
- lambda do
52
- @t.delete("dm")
53
- end.should raise_error(Thor::Error, "Direct Message not found")
51
+ it "should request the correct resource" do
52
+ @delete.dm("1773478249")
53
+ a_delete("/1/direct_messages/destroy/1773478249.json").
54
+ with(:query => {:include_entities => "false"}).
55
+ should have_been_made
56
+ end
57
+ it "should have the correct output" do
58
+ @delete.dm("1773478249")
59
+ $stdout.string.chomp.should == "@testcli deleted the direct message sent to @pengwynn: \"Creating a fixture for the Twitter gem\""
54
60
  end
55
61
  end
56
- context "found" do
62
+ context ":force => false" do
57
63
  before do
58
- stub_get("/1/direct_messages/sent.json").
59
- with(:query => {:count => "1", :include_entities => "false"}).
60
- to_return(:body => fixture("direct_messages.json"), :headers => {:content_type => "application/json; charset=utf-8"})
61
- stub_delete("/1/direct_messages/destroy/1773478249.json").
64
+ @delete.options = @delete.options.merge(:force => false)
65
+ stub_get("/1/direct_messages/show/1773478249.json").
62
66
  with(:query => {:include_entities => "false"}).
63
67
  to_return(:body => fixture("direct_message.json"), :headers => {:content_type => "application/json; charset=utf-8"})
64
68
  end
65
- context ":force => true" do
66
- before do
67
- @t.options = @t.options.merge(:force => true)
68
- end
69
- it "should request the correct resource" do
70
- @t.delete("dm")
71
- a_get("/1/direct_messages/sent.json").
72
- with(:query => {:count => "1", :include_entities => "false"}).
73
- should have_been_made
74
- a_delete("/1/direct_messages/destroy/1773478249.json").
75
- with(:query => {:include_entities => "false"}).
76
- should have_been_made
77
- end
78
- it "should have the correct output" do
79
- @t.delete("dm")
80
- $stdout.string.chomp.should == "@sferik deleted the direct message sent to @pengwynn: \"Creating a fixture for the Twitter gem\""
81
- end
69
+ it "should request the correct resource" do
70
+ $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @pengwynn: \"Creating a fixture for the Twitter gem\"? [y/N] ")
71
+ $stdin.should_receive(:gets).and_return("yes")
72
+ @delete.dm("1773478249")
73
+ a_get("/1/direct_messages/show/1773478249.json").
74
+ with(:query => {:include_entities => "false"}).
75
+ should have_been_made
76
+ a_delete("/1/direct_messages/destroy/1773478249.json").
77
+ with(:query => {:include_entities => "false"}).
78
+ should have_been_made
82
79
  end
83
- context ":force => false" do
84
- before do
85
- @t.options = @t.options.merge(:force => false)
86
- end
87
- it "should request the correct resource" do
88
- $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: \"Sounds good. Meeting Tuesday is fine.\"? [y/N] ")
80
+ context "yes" do
81
+ it "should have the correct output" do
82
+ $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @pengwynn: \"Creating a fixture for the Twitter gem\"? [y/N] ")
89
83
  $stdin.should_receive(:gets).and_return("yes")
90
- @t.delete("dm")
91
- a_get("/1/direct_messages/sent.json").
92
- with(:query => {:count => "1", :include_entities => "false"}).
93
- should have_been_made
94
- a_delete("/1/direct_messages/destroy/1773478249.json").
95
- with(:query => {:include_entities => "false"}).
96
- should have_been_made
97
- end
98
- context "yes" do
99
- it "should have the correct output" do
100
- $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: \"Sounds good. Meeting Tuesday is fine.\"? [y/N] ")
101
- $stdin.should_receive(:gets).and_return("yes")
102
- @t.delete("dm")
103
- $stdout.string.chomp.should == "@sferik deleted the direct message sent to @pengwynn: \"Creating a fixture for the Twitter gem\""
104
- end
84
+ @delete.dm("1773478249")
85
+ $stdout.string.chomp.should == "@testcli deleted the direct message sent to @pengwynn: \"Creating a fixture for the Twitter gem\""
105
86
  end
106
- context "no" do
107
- it "should have the correct output" do
108
- $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: \"Sounds good. Meeting Tuesday is fine.\"? [y/N] ")
109
- $stdin.should_receive(:gets).and_return("no")
110
- @t.delete("dm")
111
- $stdout.string.chomp.should == ""
112
- end
87
+ end
88
+ context "no" do
89
+ it "should have the correct output" do
90
+ $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @pengwynn: \"Creating a fixture for the Twitter gem\"? [y/N] ")
91
+ $stdin.should_receive(:gets).and_return("no")
92
+ @delete.dm("1773478249")
93
+ $stdout.string.chomp.should be_empty
113
94
  end
114
95
  end
115
96
  end
@@ -117,29 +98,29 @@ describe T::Delete do
117
98
 
118
99
  describe "#favorite" do
119
100
  before do
120
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
101
+ @delete.options = @delete.options.merge(:profile => fixture_path + "/.trc")
121
102
  stub_delete("/1/favorites/destroy/28439861609.json").
122
103
  with(:query => {:include_entities => "false"}).
123
104
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
124
105
  end
125
106
  context ":force => true" do
126
107
  before do
127
- @t.options = @t.options.merge(:force => true)
108
+ @delete.options = @delete.options.merge(:force => true)
128
109
  end
129
110
  it "should request the correct resource" do
130
- @t.delete("favorite", "28439861609")
111
+ @delete.favorite("28439861609")
131
112
  a_delete("/1/favorites/destroy/28439861609.json").
132
113
  with(:query => {:include_entities => "false"}).
133
114
  should have_been_made
134
115
  end
135
116
  it "should have the correct output" do
136
- @t.delete("favorite", "28439861609")
117
+ @delete.favorite("28439861609")
137
118
  $stdout.string.should =~ /^@testcli unfavorited @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem\. Twurl is making it easy\. Thank you!\"$/
138
119
  end
139
120
  end
140
121
  context ":force => false" do
141
122
  before do
142
- @t.options = @t.options.merge(:force => false)
123
+ @delete.options = @delete.options.merge(:force => false)
143
124
  stub_get("/1/statuses/show/28439861609.json").
144
125
  with(:query => {:include_entities => "false", :include_my_retweet => "false", :trim_user => "true"}).
145
126
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
@@ -147,7 +128,7 @@ describe T::Delete do
147
128
  it "should request the correct resource" do
148
129
  $stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem\. Twurl is making it easy\. Thank you!\"? [y/N] ")
149
130
  $stdin.should_receive(:gets).and_return("yes")
150
- @t.delete("favorite", "28439861609")
131
+ @delete.favorite("28439861609")
151
132
  a_get("/1/statuses/show/28439861609.json").
152
133
  with(:query => {:include_entities => "false", :include_my_retweet => "false", :trim_user => "true"}).
153
134
  should have_been_made
@@ -159,7 +140,7 @@ describe T::Delete do
159
140
  it "should have the correct output" do
160
141
  $stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\"? [y/N] ")
161
142
  $stdin.should_receive(:gets).and_return("yes")
162
- @t.delete("favorite", "28439861609")
143
+ @delete.favorite("28439861609")
163
144
  $stdout.string.should =~ /^@testcli unfavorited @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem\. Twurl is making it easy\. Thank you!\"$/
164
145
  end
165
146
  end
@@ -167,8 +148,8 @@ describe T::Delete do
167
148
  it "should have the correct output" do
168
149
  $stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\"? [y/N] ")
169
150
  $stdin.should_receive(:gets).and_return("no")
170
- @t.delete("favorite", "28439861609")
171
- $stdout.string.chomp.should == ""
151
+ @delete.favorite("28439861609")
152
+ $stdout.string.chomp.should be_empty
172
153
  end
173
154
  end
174
155
  end
@@ -176,7 +157,7 @@ describe T::Delete do
176
157
 
177
158
  describe "#list" do
178
159
  before do
179
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
160
+ @delete.options = @delete.options.merge(:profile => fixture_path + "/.trc")
180
161
  stub_get("/1/account/verify_credentials.json").
181
162
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
182
163
  stub_delete("/1/lists/destroy.json").
@@ -185,10 +166,10 @@ describe T::Delete do
185
166
  end
186
167
  context ":force => true" do
187
168
  before do
188
- @t.options = @t.options.merge(:force => true)
169
+ @delete.options = @delete.options.merge(:force => true)
189
170
  end
190
171
  it "should request the correct resource" do
191
- @t.delete("list", "presidents")
172
+ @delete.list("presidents")
192
173
  a_get("/1/account/verify_credentials.json").
193
174
  should have_been_made
194
175
  a_delete("/1/lists/destroy.json").
@@ -196,18 +177,18 @@ describe T::Delete do
196
177
  should have_been_made
197
178
  end
198
179
  it "should have the correct output" do
199
- @t.delete("list", "presidents")
180
+ @delete.list("presidents")
200
181
  $stdout.string.chomp.should == "@testcli deleted the list \"presidents\"."
201
182
  end
202
183
  end
203
184
  context ":force => false" do
204
185
  before do
205
- @t.options = @t.options.merge(:force => false)
186
+ @delete.options = @delete.options.merge(:force => false)
206
187
  end
207
188
  it "should request the correct resource" do
208
189
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the list \"presidents\"? [y/N] ")
209
190
  $stdin.should_receive(:gets).and_return("yes")
210
- @t.delete("list", "presidents")
191
+ @delete.list("presidents")
211
192
  a_get("/1/account/verify_credentials.json").
212
193
  should have_been_made
213
194
  a_delete("/1/lists/destroy.json").
@@ -218,7 +199,7 @@ describe T::Delete do
218
199
  it "should have the correct output" do
219
200
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the list \"presidents\"? [y/N] ")
220
201
  $stdin.should_receive(:gets).and_return("yes")
221
- @t.delete("list", "presidents")
202
+ @delete.list("presidents")
222
203
  $stdout.string.chomp.should == "@testcli deleted the list \"presidents\"."
223
204
  end
224
205
  end
@@ -226,8 +207,8 @@ describe T::Delete do
226
207
  it "should have the correct output" do
227
208
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the list \"presidents\"? [y/N] ")
228
209
  $stdin.should_receive(:gets).and_return("no")
229
- @t.delete("list", "presidents")
230
- $stdout.string.chomp.should == ""
210
+ @delete.list("presidents")
211
+ $stdout.string.chomp.should be_empty
231
212
  end
232
213
  end
233
214
  end
@@ -235,29 +216,29 @@ describe T::Delete do
235
216
 
236
217
  describe "#status" do
237
218
  before do
238
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
219
+ @delete.options = @delete.options.merge(:profile => fixture_path + "/.trc")
239
220
  stub_delete("/1/statuses/destroy/26755176471724032.json").
240
221
  with(:query => {:include_entities => "false", :trim_user => "true"}).
241
222
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
242
223
  end
243
224
  context ":force => true" do
244
225
  before do
245
- @t.options = @t.options.merge(:force => true)
226
+ @delete.options = @delete.options.merge(:force => true)
246
227
  end
247
228
  it "should request the correct resource" do
248
- @t.delete("status", "26755176471724032")
229
+ @delete.status("26755176471724032")
249
230
  a_delete("/1/statuses/destroy/26755176471724032.json").
250
231
  with(:query => {:include_entities => "false", :trim_user => "true"}).
251
232
  should have_been_made
252
233
  end
253
234
  it "should have the correct output" do
254
- @t.delete("status", "26755176471724032")
235
+ @delete.status("26755176471724032")
255
236
  $stdout.string.chomp.should == "@testcli deleted the status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\""
256
237
  end
257
238
  end
258
239
  context ":force => false" do
259
240
  before do
260
- @t.options = @t.options.merge(:force => false)
241
+ @delete.options = @delete.options.merge(:force => false)
261
242
  stub_get("/1/statuses/show/26755176471724032.json").
262
243
  with(:query => {:include_entities => "false", :include_my_retweet => "false", :trim_user => "true"}).
263
244
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
@@ -265,7 +246,7 @@ describe T::Delete do
265
246
  it "should request the correct resource" do
266
247
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\"? [y/N] ")
267
248
  $stdin.should_receive(:gets).and_return("yes")
268
- @t.delete("status", "26755176471724032")
249
+ @delete.status("26755176471724032")
269
250
  a_get("/1/statuses/show/26755176471724032.json").
270
251
  with(:query => {:include_entities => "false", :include_my_retweet => "false", :trim_user => "true"}).
271
252
  should have_been_made
@@ -277,7 +258,7 @@ describe T::Delete do
277
258
  it "should have the correct output" do
278
259
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\"? [y/N] ")
279
260
  $stdin.should_receive(:gets).and_return("yes")
280
- @t.delete("status", "26755176471724032")
261
+ @delete.status("26755176471724032")
281
262
  $stdout.string.chomp.should == "@testcli deleted the status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\""
282
263
  end
283
264
  end
@@ -285,8 +266,8 @@ describe T::Delete do
285
266
  it "should have the correct output" do
286
267
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete @sferik's status: \"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!\"? [y/N] ")
287
268
  $stdin.should_receive(:gets).and_return("no")
288
- @t.delete("status", "26755176471724032")
289
- $stdout.string.chomp.should == ""
269
+ @delete.status("26755176471724032")
270
+ $stdout.string.chomp.should be_empty
290
271
  end
291
272
  end
292
273
  end
@@ -1 +1 @@
1
- [{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."},{"recipient_screen_name":"technoweenie","recipient_id":780561,"created_at":"Sat Oct 16 19:15:50 +0000 2010","sender_id":7505382,"recipient":{"description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","profile_use_background_image":true,"followers_count":3945,"notifications":false,"profile_background_color":"FFFFFF","listed_count":446,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","friends_count":192,"statuses_count":11437,"profile_text_color":"000000","url":"http:\/\/techno-weenie.net","show_all_inline_media":false,"profile_background_tile":false,"favourites_count":80,"contributors_enabled":false,"lang":"en","created_at":"Mon Feb 19 17:12:49 +0000 2007","profile_link_color":"0000ff","location":"sf","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1002166914\/rick2_normal.jpg","profile_sidebar_fill_color":"e0ff92","name":"technow\u00fcrst","following":false,"verified":false,"time_zone":"Central Time (US & Canada)","screen_name":"technoweenie","id":780561,"id_str":"780561","follow_request_sent":false,"utc_offset":-21600,"profile_sidebar_border_color":"87bc44"},"sender":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"followers_count":898,"notifications":false,"profile_background_color":"000000","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":88,"statuses_count":2968,"profile_text_color":"333333","url":null,"show_all_inline_media":true,"profile_background_tile":false,"favourites_count":729,"contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_link_color":"0084B4","location":"San Francisco","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_sidebar_fill_color":"DDEEF6","name":"Erik Michaels-Ober","following":true,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"id_str":"7505382","follow_request_sent":false,"utc_offset":-28800,"profile_sidebar_border_color":"C0DEED"},"sender_screen_name":"sferik","id":1769928706,"id_str":"1769928706","text":"if you want to add me to your GroupMe group, my phone number is 415-312-2382"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Oct 14 21:43:30 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1762960771","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1762960771,"text":"That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you? "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 15:07:12 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711812216","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711812216,"text":"I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better. "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 13:09:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711417617","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711417617,"text":"Just checking in. How's everything going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 22 04:01:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1674941247","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1674941247,"text":"Any luck completing graphs this weekend? There have been lots of commits to RailsAdmin since summer ended but none from you. How's it going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 16 16:13:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1653301471","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1653301471,"text":"Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 15 01:17:31 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1646568725","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1646568725,"text":"Looks good to me. I'm going to pull in the change now. My only concern is that we don't have any tests for auth."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Tue Sep 14 18:44:10 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1645324992","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1645324992,"text":"How are the graph enhancements coming?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:35:29 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638951325","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638951325,"text":"Changes pushed. You should pull and re-bundle when you have a minute."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:33 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638904422","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638904422,"text":"Glad to hear the new graphs are coming along. Can't wait to see them!"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:08 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638903478","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638903478,"text":"I figured out what was wrong with the tests: I accidentally unbundled webrat. The problem had nothing to do with rspec-rails."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:54 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638877375","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638877375,"text":"After the upgrade 54\/80 specs are failing. I'm working on fixing them now."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:18 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638875895","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638875895,"text":"a new version of rspec-rails just shipped with some nice features and fixes http:\/\/github.com\/rspec\/rspec-rails\/blob\/master\/History.md"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sat Sep 11 17:45:46 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1632933616","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1632933616,"text":"How are the graphs coming? I'm really looking forward to seeing what you do with Rapha\u00ebl."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 18:21:36 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629239903","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629239903,"text":"Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 17:56:53 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629166212","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629166212,"text":"I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 02:05:16 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1626403189","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1626403189,"text":"Can you try upgrading to 1.9.2 final, re-installing Bundler 1.0.0.rc.6 (don't remove 1.0.0) and see if you can reproduce the problem?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 18:11:48 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1624782206","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1624782206,"text":"I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 03:32:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1622306776","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1622306776,"text":"Let's try to debug that problem during our session in 1.5 hours. In the mean time, try working on the graphs or internationalization."}]
1
+ [{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Oct 14 21:43:30 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1762960771","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1762960771,"text":"That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 15:07:12 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711812216","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711812216,"text":"I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 13:09:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711417617","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711417617,"text":"Just checking in. How's everything going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 16 16:13:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1653301471","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1653301471,"text":"Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Tue Sep 14 18:44:10 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1645324992","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1645324992,"text":"How are the graph enhancements coming?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sat Sep 11 17:45:46 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1632933616","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1632933616,"text":"How are the graphs coming? I'm really looking forward to seeing what you do with Rapha\u00ebl."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 18:21:36 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629239903","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629239903,"text":"Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 17:56:53 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629166212","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629166212,"text":"I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 18:11:48 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1624782206","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1624782206,"text":"I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?"}]
@@ -1 +1 @@
1
- {"results":[{"from_user_id_str":"10689529","profile_image_url":"http://a3.twimg.com/profile_images/1038143835/killermelons_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:39 +0000","from_user":"killermelons","id_str":"28857935752","metadata":{"result_type":"recent"},"to_user_id":119182,"text":"@KaiserKuo from not too far away your new twitter icon looks like Vader.","id":28857935752,"from_user_id":10689529,"to_user":"kaiserkuo","geo":null,"iso_language_code":"en","to_user_id_str":"119182","source":"<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>"},{"from_user_id_str":"75748616","profile_image_url":"http://a2.twimg.com/profile_images/1108768290/61821513-44e3-4d1c-9033-5030923fc08c_normal.png","created_at":"Wed, 27 Oct 2010 03:56:38 +0000","from_user":"FelipeNoMore","id_str":"28857935253","metadata":{"result_type":"recent"},"to_user_id":null,"text":"RT @nicoMaiden: RT @golden254: Quien habra sido el habil en decirle al negro pi\u00f1era que era cantante?/el mismo que le dijo a @copano que la lleva en twitter","id":28857935253,"from_user_id":75748616,"geo":null,"iso_language_code":"es","to_user_id_str":null,"source":"<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>"},{"from_user_id_str":"54285861","profile_image_url":"http://a1.twimg.com/profile_images/1111746765/C_pia_de_P7280092_normal.JPG","created_at":"Wed, 27 Oct 2010 03:56:37 +0000","from_user":"Je_eF","id_str":"28857934155","metadata":{"result_type":"recent"},"to_user_id":null,"text":"\u00e9 cada louco que tem nesse twitter que o vicio nao me deixa largar isso jam\u00e9","id":28857934155,"from_user_id":54285861,"geo":null,"iso_language_code":"pt","to_user_id_str":null,"source":"<a href="http://twitter.com/">web</a>"},{"from_user_id_str":"34333644","profile_image_url":"http://a2.twimg.com/profile_images/1153163678/small2-1_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:37 +0000","from_user":"TriceyTrice2U","id_str":"28857933830","metadata":{"result_type":"recent"},"to_user_id":164868506,"text":"@Jae_Savage same name as twitter","id":28857933830,"from_user_id":34333644,"to_user":"Jae_Savage","geo":null,"iso_language_code":"nl","to_user_id_str":"164868506","source":"<a href="http://twitter.com/">web</a>"},{"from_user_id_str":"11855839","profile_image_url":"http://a0.twimg.com/profile_images/1153381236/72714_1438672812308_1397641096_31000422_3363391_n_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:36 +0000","from_user":"eternity4","id_str":"28857932968","metadata":{"result_type":"recent"},"to_user_id":9612177,"text":"@enishi39 Its awesome huh? Its ALL Spn anime epicness!! I had a tough time getting twitter to put it up.xD","id":28857932968,"from_user_id":11855839,"to_user":"enishi39","geo":null,"iso_language_code":"en","to_user_id_str":"9612177","source":"<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:34 +0000","from_user":"twittag","id_str":"28857930925","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u8239\u4e95\u7dcf\u7814\u767a\uff01\u4e00\u756a\u5e97\u306e\u6cd5\u5247\uff5e\u5b9f\u8cbb\u578b\u6cbb\u7642\u9662\uff08\u6574\u9aa8\u9662\u30fb\u63a5\u9aa8\u9662\uff09\u30fb\u30b5\u30ed\u30f3\u7d4c\u55b6\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u30d6\u30ed\u30b0\uff5e http://bit.ly/cxoSGL","id":28857930925,"from_user_id":115719,"geo":null,"iso_language_code":"zh","to_user_id_str":null,"source":"<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:34 +0000","from_user":"twittag","id_str":"28857930608","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u30cb\u30d5\u30c6\u30a3\u30af\u30e9\u30a6\u30c9\u3001\u660e\u65e5\u3088\u308a\u300c\u30b5\u30fc\u30d0\u30fc\u30b3\u30d4\u30fc\u300d\u3001\u300c\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30a4\u30e1\u30fc\u30b8\u300d\u3001\u300c\u30aa\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb\u300d\u3001\u300c\u57fa\u672c\u76e3\u8996\u30fb\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e3\u30fc\u30c8\u300d\u3092\u516c\u958b | P2P today \u30c0\u30d6\u30eb\u30b9\u30e9\u30c3\u30b7\u30e5 http://wslash.com/?p=2959","id":28857930608,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857930295","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u30cb\u30d5\u30c6\u30a3\u30af\u30e9\u30a6\u30c9\u3001\u660e\u65e5\u3088\u308a\u300c\u30b5\u30fc\u30d0\u30fc\u30b3\u30d4\u30fc\u300d\u3001\u300c\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30a4\u30e1\u30fc\u30b8\u300d\u3001\u300c\u30aa\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb\u300d\u3001\u300c\u57fa\u672c\u76e3\u8996\u30fb\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e3\u30fc\u30c8\u300d\u3092\u516c\u958b | P2P today \u30c0\u30d6\u30eb\u30b9\u30e9\u30c3\u30b7\u30e5 http://bit.ly/aziQQo","id":28857930295,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>"},{"from_user_id_str":"51826863","profile_image_url":"http://a3.twimg.com/profile_images/1125777915/tarcanngelhak_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"ArcangelHak","id_str":"28857930186","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Bueno pues me desconect\u00f3 de twitter al tatto le falta todav\u00eda un rato y ya casi tengo sue\u00f1o","id":28857930186,"from_user_id":51826863,"geo":null,"iso_language_code":"es","to_user_id_str":null,"source":"<a href="http://mobileways.de/gravity" rel="nofollow">Gravity</a>"},{"from_user_id_str":"1300997","profile_image_url":"http://a3.twimg.com/profile_images/1144220811/48902_681914513_3112_q_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"recycledhumor","id_str":"28857930102","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Just in case you are wondering, Weird Al (@alyankovic) has 1,862,789 followers on Twitter. Correction: 1,862,790 followers on Twitter.","id":28857930102,"from_user_id":1300997,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"<a href="http://twitter.com/">web</a>"},{"from_user_id_str":"19693812","profile_image_url":"http://a0.twimg.com/profile_images/1101236132/IMG00191_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"junitaaa","id_str":"28857930059","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Lama" chat di twitter nih..hahaha RT @buntutbabi: Lo yg mulai juga,siiietRT @Junitaaa: Kelakuan @buntutbabi (cont) http://tl.gd/6m1dcv","id":28857930059,"from_user_id":19693812,"geo":null,"iso_language_code":"id","to_user_id_str":null,"source":"<a href="http://www.ubertwitter.com/bb/download.php" rel="nofollow">\u00dcberTwitter</a>"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857929957","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u300e\u304b\u3061\u3073\u3068.net\u300f \u306e\u4eba\u6c17\u30a8\u30f3\u30c8\u30ea\u30fc - \u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af http://bit.ly/9Yx6xS","id":28857929957,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>"},{"from_user_id_str":"85186425","profile_image_url":"http://a2.twimg.com/profile_images/1129468058/avexnews3_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"avexnews","id_str":"28857929746","metadata":{"result_type":"recent"},"to_user_id":149063052,"text":"@ICONIQ_NEWS opened!She gain attention by collaboration song\u300cI'm lovin' you\u300dwif EXILE\u30fbATSUSHI.Get her newest info here! http://bit.ly/dymm8v","id":28857929746,"from_user_id":85186425,"to_user":"ICONIQ_NEWS","geo":null,"iso_language_code":"en","to_user_id_str":"149063052","source":"<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>"},{"from_user_id_str":"117334023","profile_image_url":"http://a2.twimg.com/profile_images/1152607458/2097d325-a9ab-4a76-8b43-daf1f110c2e4_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"WildIvory92","id_str":"28857929614","metadata":{"result_type":"recent"},"to_user_id":null,"text":"RT @FiercePrinceJ: People on Twitter Gossip about other People, Hate others? This Is Twitter Nothing More, Nothing Less.","id":28857929614,"from_user_id":117334023,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857929607","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] Now Playing Friends - \u30ea\u30cb\u30e5\u30fc\u30a2\u30eb\u5f0f : R49 http://bit.ly/bmlA5g","id":28857929607,"from_user_id":115719,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>"}],"max_id":28857935752,"since_id":0,"refresh_url":"?since_id=28857935752&q=twitter","next_page":"?page=2&max_id=28857935752&q=twitter","results_per_page":15,"page":1,"completed_in":0.017349,"since_id_str":"0","max_id_str":"28857935752","query":"twitter"}
1
+ {"completed_in":0.036,"max_id":194521262415032320,"max_id_str":"194521262415032320","next_page":"?page=2&max_id=194521262415032320&q=twitter","page":1,"query":"twitter","refresh_url":"?since_id=194521262415032320&q=twitter","results":[{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"JessRoveel","from_user_id":99818387,"from_user_id_str":"99818387","from_user_name":"Jess de Platypus\u2665","geo":null,"id":194521262415032320,"id_str":"194521262415032320","iso_language_code":"es","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2014656522\/Foto0309_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2014656522\/Foto0309_normal.jpg","source":"<a href="http:\/\/twitter.com\/">web<\/a>","text":"Pondre lo mas importante de Hamlet en Twitter para recordarlo mejor :D","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"lauravgeest","from_user_id":370207980,"from_user_id_str":"370207980","from_user_name":"Lauraa\u2665","geo":null,"id":194521262326951936,"id_str":"194521262326951936","iso_language_code":"nl","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2147508883\/IMG-20120404-WA003_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2147508883\/IMG-20120404-WA003_normal.jpg","source":"<a href="http:\/\/blackberry.com\/twitter" rel="nofollow">Twitter for BlackBerry\u00ae<\/a>","text":"Twitter doet het al 7 uur niet meer","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"Jenny_Bearx333","from_user_id":393818165,"from_user_id_str":"393818165","from_user_name":"Jenitza Qui\u00f1ones","geo":null,"id":194521262234669056,"id_str":"194521262234669056","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2156571407\/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2156571407\/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg","source":"<a href="http:\/\/mobile.twitter.com" rel="nofollow">Mobile Web<\/a>","text":"I keep thinking that twitter is @instagram , and therefore double tap all the pics I like... #NotWorking","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"misspoxtonX","from_user_id":259342250,"from_user_id_str":"259342250","from_user_name":"potatooooo king \u265b","geo":null,"id":194521262138204160,"id_str":"194521262138204160","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2159952653\/P2191655_normal.JPG","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2159952653\/P2191655_normal.JPG","source":"<a href="http:\/\/twitter.com\/#!\/download\/iphone" rel="nofollow">Twitter for iPhone<\/a>","text":"RT @jordantaylorhi: twitter friends > twats at school","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"PatrickBrickman","from_user_id":102555146,"from_user_id_str":"102555146","from_user_name":"Patrick Brickman","geo":null,"id":194521262134001665,"id_str":"194521262134001665","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1663790229\/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1663790229\/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg","source":"<a href="http:\/\/twitter.com\/#!\/download\/iphone" rel="nofollow">Twitter for iPhone<\/a>","text":"RT @zeus30hightower: Too all Bama fans and followers my cousin mark Barron doesn't have a twitter so please disregard any tweets from that user","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"KolonelX","from_user_id":60933843,"from_user_id_str":"60933843","from_user_name":"Baas X","geo":null,"id":194521262129811456,"id_str":"194521262129811456","iso_language_code":"nl","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1778062152\/Aj7p2XJCQAA75m1_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1778062152\/Aj7p2XJCQAA75m1_normal.jpg","source":"<a href="http:\/\/www.tweetdeck.com" rel="nofollow">TweetDeck<\/a>","text":"Ik refresh twitter op me telefoon terwijl ik tweetdeck voor me open heb staan","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"VLGPRLG5","from_user_id":360029026,"from_user_id_str":"360029026","from_user_name":"Patricia N.","geo":null,"id":194521261852995586,"id_str":"194521261852995586","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2087947707\/tonino_marylin_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2087947707\/tonino_marylin_normal.jpg","source":"<a href="http:\/\/blackberry.com\/twitter" rel="nofollow">Twitter for BlackBerry\u00ae<\/a>","text":"@mikeyway and you too RT @NimcyGD: @gerardway Get your ass back to twitter, okay? :3","to_user":"mikeyway","to_user_id":17471459,"to_user_id_str":"17471459","to_user_name":"Mikey Way"},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"xRhiBabyx","from_user_id":45532308,"from_user_id_str":"45532308","from_user_name":"Rhian Cummings","geo":null,"id":194521261756530689,"id_str":"194521261756530689","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1916248305\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1916248305\/image_normal.jpg","source":"<a href="http:\/\/twitter.com\/">web<\/a>","text":"Trying to persuade the boyf to get on twitter and failing. Help? @holly_haime @Ckwarburton @samwarburton_ @chrishaime @rowloboy","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"juliotrv","from_user_id":418570237,"from_user_id_str":"418570237","from_user_name":"J\u00falio Trevisan","geo":null,"id":194521261630697473,"id_str":"194521261630697473","iso_language_code":"pt","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1651783865\/Julio3_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1651783865\/Julio3_normal.jpg","source":"<a href="http:\/\/twitter.com\/">web<\/a>","text":"RT @lookinglassbr: Lan\u00e7amentos outono-inverno 2012...CONFIRA em http:\/\/t.co\/YAk8OXp7 http:\/\/t.co\/fmmrVrbG","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"shanleyaustin27","from_user_id":415094986,"from_user_id_str":"415094986","from_user_name":"shanley austin","geo":null,"id":194521261571964928,"id_str":"194521261571964928","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1870193522\/securedownload__3__normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1870193522\/securedownload__3__normal.jpg","source":"<a href="http:\/\/twitter.com\/download\/android" rel="nofollow">Twitter for Android<\/a>","text":"RT @caaammmmi: @shanleyaustin27 .....and this hahahahaa http:\/\/t.co\/wzCMx6ZU","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"Dame_Valuta","from_user_id":507639925,"from_user_id_str":"507639925","from_user_name":"Vickie Aluta","geo":null,"id":194521261563580416,"id_str":"194521261563580416","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2081431605\/30-2011-20_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2081431605\/30-2011-20_normal.jpg","source":"<a href="http:\/\/twitter.com\/#!\/download\/iphone" rel="nofollow">Twitter for iPhone<\/a>","text":"RT @Paiser10: Great @chelseafc training at Nou Camp! #cfc http:\/\/t.co\/k00TnRyR","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"miss_indyiah","from_user_id":25199338,"from_user_id_str":"25199338","from_user_name":"Indyiah","geo":null,"id":194521261488095232,"id_str":"194521261488095232","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2147854311\/458978_10150938007793858_742758857_13175458_650464464_o_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2147854311\/458978_10150938007793858_742758857_13175458_650464464_o_normal.jpg","source":"<a href="http:\/\/twitter.com\/">web<\/a>","text":"smh, @IndianaHustle done turned into a twitter addict..fuck goin on lol ?","to_user":"IndianaHustle","to_user_id":59990139,"to_user_id_str":"59990139","to_user_name":"Hustle Mane HRT","in_reply_to_status_id":194521038304976896,"in_reply_to_status_id_str":"194521038304976896"},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"CAROLINEWOLLER","from_user_id":136029095,"from_user_id_str":"136029095","from_user_name":"Caroline Woller","geo":null,"id":194521261370650625,"id_str":"194521261370650625","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1987131486\/dw_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1987131486\/dw_normal.jpg","source":"<a href="http:\/\/twitter.com\/#!\/download\/iphone" rel="nofollow">Twitter for iPhone<\/a>","text":"RT @Mark_Ingram28: To all Bama fans and followers, please unfollow and pay no attention to any user posing to be Mark Barron. My bro doesn't have a twitter!","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"shelbytrenchdww","from_user_id":60678594,"from_user_id_str":"60678594","from_user_name":"Shelby Burnside","geo":null,"id":194521261370642432,"id_str":"194521261370642432","iso_language_code":"en","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1721956218\/maybe1_normal.PNG","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1721956218\/maybe1_normal.PNG","source":"<a href="http:\/\/twitter.com\/">web<\/a>","text":"RT @The90sLife: Admit it, we all have a cabinet that looks like this. http:\/\/t.co\/gQEkQw5G","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null},{"created_at":"Mon, 23 Apr 2011 20:20:57 +0000","from_user":"kabos84","from_user_id":265266954,"from_user_id_str":"265266954","from_user_name":"\u060f\u0640\u0644\u064a \u0671\u0644\u0640\u060f\u0640\u0628\u0671\u0695 a\u0338l\u0338i\u0338","geo":null,"id":194521261307727872,"id_str":"194521261307727872","iso_language_code":"ar","metadata":{"result_type":"recent"},"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2155190680\/B6210467-F1AC-41E8-9374-4B50ABB3C6EA_normal","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2155190680\/B6210467-F1AC-41E8-9374-4B50ABB3C6EA_normal","source":"<a href="http:\/\/twitter.com\/#!\/download\/iphone" rel="nofollow">Twitter for iPhone<\/a>","text":"RT @JF_q8: \u0628\u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0643\u0645 \u060c\u060c \u0645\u0648 \u0639\u064a\u0628 !!!\n\n\n\n.. http:\/\/t.co\/e29GV7Ow","to_user":null,"to_user_id":null,"to_user_id_str":null,"to_user_name":null}],"results_per_page":15,"since_id":0,"since_id_str":"0"}
@@ -1 +1 @@
1
- {"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","country":"The United States of America","attributes":{},"full_name":"Mission Bay, San Francisco","name":"Mission Bay","id":"41bcb736f84a799e","bounding_box":{"type":"Polygon","coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]]}},"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Sep 30 01:43:44 +0000 2010","in_reply_to_user_id":3191321,"favorited":false,"in_reply_to_user_id_str":"3191321","user":{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","follow_request_sent":false,"url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","listed_count":28,"friends_count":88,"profile_text_color":"333333","name":"Erik Michaels-Ober","statuses_count":2968,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","show_all_inline_media":true,"utc_offset":-28800,"favourites_count":727,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":"noradio","id":25938088801,"id_str":"25938088801","text":"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!"}
1
+ {"created_at":"Thu Sep 30 01:43:44 +0000 2010","id":25938088801,"id_str":"25938088801","text":"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3191321,"in_reply_to_user_id_str":"3191321","in_reply_to_screen_name":"noradio","user":{"id":7505382,"id_str":"7505382","name":"Erik Michaels-Ober","screen_name":"sferik","location":"San Francisco","description":"My heart is in the work.","url":"https:\/\/github.com\/sferik","protected":false,"followers_count":2094,"friends_count":203,"listed_count":114,"created_at":"Mon Jul 16 12:59:01 +0000 2007","favourites_count":3073,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6890,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":{"id":"41bcb736f84a799e","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","place_type":"neighborhood","name":"Mission Bay","full_name":"Mission Bay, San Francisco","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.406684,37.764053],[-122.381512,37.764053],[-122.381512,37.781992],[-122.406684,37.781992]]]},"attributes":{}},"contributors":null,"retweet_count":0,"favorited":false,"retweeted":false}
@@ -1 +1 @@
1
- [{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Oct 16 17:07:46 +0000 2010","retweeted":false,"id_str":"27558893223","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":27558893223,"truncated":false,"text":"Ruby is the best programming language for hiding the ugly bits."},{"place":null,"coordinates":null,"retweet_count":null,"geo":null,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","in_reply_to_status_id":null,"created_at":"Fri Oct 15 18:26:47 +0000 2010","contributors":null,"in_reply_to_user_id":null,"user":{"friends_count":112,"description":"degradable","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/133569392/nature02922-f1.2.jpg","profile_background_color":"C0DEED","url":null,"show_all_inline_media":true,"notifications":false,"profile_background_tile":true,"lang":"en","statuses_count":2915,"geo_enabled":true,"favourites_count":707,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","protected":false,"contributors_enabled":false,"profile_link_color":"0084B4","screen_name":"sferik","name":"Erik Michaels-Ober","listed_count":28,"following":true,"time_zone":"Pacific Time (US & Canada)","followers_count":894,"id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"truncated":false,"in_reply_to_screen_name":null,"id":27467028175,"retweeted":false,"text":"There are 1.3 billion people in China; when people say there are 1 billion they are rounding off the entire population of the United States."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Oct 11 20:57:56 +0000 2010","id_str":"27068258331","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":27068258331,"truncated":false,"text":"The new Windows Phone campaign is the best advertising from Microsoft since \"Start Me Up\" (1995). Great work by CP+B. http:\/\/t.co\/tIzxopI"},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4552eed9a8b61ff9.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-123.632497,38.29571],[-122.833844,38.29571],[-122.833844,38.808369],[-123.632497,38.808369]]]},"attributes":{},"full_name":"Russian River-Coastal, CA","name":"Russian River-Coastal","id":"4552eed9a8b61ff9"},"geo":{"type":"Point","coordinates":[38.524535,-123.088368]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 10 18:26:22 +0000 2010","id_str":"26959930192","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-123.088368,38.524535]},"id":26959930192,"truncated":false,"text":"Fear not to sow seeds because of the birds. http:\/\/twitpic.com\/2wg621"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Oct 06 00:03:47 +0000 2010","id_str":"26503221778","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":26503221778,"truncated":false,"text":"Speaking of things that are maddening: the interview with the Wall Street guys on the most recent This American Life http:\/\/bit.ly\/af9pSD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Wed Sep 29 00:49:44 +0000 2010","retweeted":false,"id_str":"25836892941","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":25836892941,"truncated":false,"text":"Holy cow! RailsAdmin is up to 200 watchers (from 100 yesterday). http:\/\/github.com\/sferik\/rails_admin"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Sep 27 23:35:56 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2962,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":true,"favourites_count":727,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","verified":false,"profile_text_color":"333333","name":"Erik Michaels-Ober","follow_request_sent":false,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":25732982065,"id_str":"25732982065","text":"Kind of cool that Facebook acts as a mirror for open-source projects that they use or like http:\/\/mirror.facebook.net\/"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Sep 27 14:55:28 +0000 2010","id_str":"25693598875","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":25693598875,"truncated":false,"text":"RailsAdmin already has 100 watchers, 12 forks, and 6 contributors in less than 2 months. Let's keep the momentum going! http:\/\/bit.ly\/cCMMqD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Tue Sep 14 03:25:46 +0000 2010","retweeted":false,"id_str":"24443017910","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24443017910,"truncated":false,"text":"This week's This American Life is amazing. @JoeLipari is an American hero. http:\/\/bit.ly\/d9RbnB"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Sep 11 02:17:29 +0000 2010","retweeted":false,"id_str":"24158227743","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24158227743,"truncated":false,"text":"RT @polyseme: OH: shofars should be called jewvuzelas."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:07:47 +0000 2010","id_str":"24126395365","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126395365,"truncated":false,"text":"Spent this morning fixing broken windows in RailsAdmin http:\/\/github.com\/sferik\/rails_admin\/compare\/ab6c598...0e3770f"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:02:34 +0000 2010","id_str":"24126047148","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126047148,"truncated":false,"text":"I'm a big believer that the broken windows theory applies to software development http:\/\/en.wikipedia.org\/wiki\/Broken_windows_theory"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Sep 09 17:12:21 +0000 2010","id_str":"24028079777","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24028079777,"truncated":false,"text":"I hope you idiots are happy with your piece of shit Android phones. http:\/\/www.apple.com\/pr\/library\/2010\/09\/09statement.html"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:55:15 +0000 2010","id_str":"22728299854","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22728299854,"truncated":false,"text":"Ping: kills MySpace dead."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:43:30 +0000 2010","id_str":"22727444431","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22727444431,"truncated":false,"text":"Crazy that iTunes Ping didn't leak a drop."},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]]},"attributes":{},"full_name":"South Beach, San Francisco","name":"South Beach","id":"5c92ab5379de3839"},"geo":{"type":"Point","coordinates":[37.782365,-122.392431]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 05:53:01 +0000 2010","id_str":"22683247815","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-122.392431,37.782365]},"id":22683247815,"truncated":false,"text":"The plot thickens http:\/\/twitpic.com\/2k5lt2"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 23:01:19 +0000 2010","id_str":"22305399947","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22305399947,"truncated":false,"text":"140 Proof Provides A Piece Of The Twitter Advertising\u00a0Puzzle http:\/\/t.co\/R2cUSDe via @techcrunch"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 22:33:42 +0000 2010","id_str":"22303907694","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22303907694,"truncated":false,"text":"Try as you may http:\/\/www.thedoghousediaries.com\/?p=1940"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Aug 19 01:38:01 +0000 2010","id_str":"21538122473","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":21538122473,"truncated":false,"text":"I know @SarahPalinUSA has a right to use Twitter, but should she?"}]
1
+ [{"geo":null,"retweeted":false,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"truncated":false,"id_str":"194548121416630272","coordinates":null,"in_reply_to_user_id":null,"place":null,"user":{"id":18394050,"followers_count":508,"profile_background_color":"ffffff","url":"http:\/\/www.natevillegas.com","created_at":"Fri Dec 26 19:48:06 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/7085119\/test123.jpg","listed_count":12,"lang":"en","profile_link_color":"591828","utc_offset":-32400,"name":"Nate","is_translator":false,"location":"San Francisco, CA","protected":false,"profile_use_background_image":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1315420604\/_MG_1493_square_normal.png","time_zone":"Alaska","profile_text_color":"000000","friends_count":286,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7085119\/test123.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"000000","favourites_count":1,"following":false,"statuses_count":2222,"description":"I work at @Twitter and I'm pretty damn sure my dog is cuter than yours. ","contributors_enabled":false,"id_str":"18394050","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"f8f6f6","follow_request_sent":false,"screen_name":"natevillegas","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1315420604\/_MG_1493_square_normal.png","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":null,"source":"web","in_reply_to_user_id_str":null,"id":194548121416630272,"created_at":"Mon Apr 23 22:07:41 +0000 2011","text":"RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present."},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546264212385793,"contributors":null,"in_reply_to_screen_name":"kelseysilver","truncated":false,"id_str":"194547993607806976","coordinates":null,"in_reply_to_user_id":44130013,"place":null,"user":{"id":164003532,"followers_count":691,"profile_background_color":"131516","url":null,"created_at":"Wed Jul 07 20:20:30 +0000 2010","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","listed_count":9,"lang":"en","profile_link_color":"009999","utc_offset":-28800,"name":"Thomas","is_translator":false,"location":"San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1606464247\/165652_10150362584885640_509050639_16683244_3279284_n_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":652,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"eeeeee","favourites_count":35,"following":false,"statuses_count":1213,"description":"Network engineer for twitter by day, network engineer for twitter by.... night. Ex-Minnesnowtan, Current Beer Lover.","contributors_enabled":false,"id_str":"164003532","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":false,"profile_sidebar_fill_color":"efefef","follow_request_sent":false,"screen_name":"TD","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1606464247\/165652_10150362584885640_509050639_16683244_3279284_n_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546264212385793","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","in_reply_to_user_id_str":"44130013","id":194547993607806976,"created_at":"Mon Apr 23 22:07:10 +0000 2011","text":"@kelseysilver how long will you be in town?"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194525370316357633,"contributors":null,"in_reply_to_screen_name":"gpena","truncated":false,"id_str":"194547987593183233","coordinates":null,"in_reply_to_user_id":133583134,"place":null,"user":{"id":223636089,"followers_count":2611,"profile_background_color":"C6E2EE","url":null,"created_at":"Mon Dec 06 22:54:12 +0000 2010","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/185910915\/2.jpg","listed_count":54,"lang":"ru","profile_link_color":"1f97c7","utc_offset":-28800,"name":"\u0420\u0443\u0441\u0430\u043d\u0430","is_translator":true,"location":"San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2099343651\/kosmos_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"663B12","friends_count":232,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/185910915\/2.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"C6E2EE","favourites_count":395,"following":true,"statuses_count":1921,"description":"\u0421\u0438\u0431\u0438\u0440\u044f\u0447\u043a\u0430 @Twitter.","contributors_enabled":true,"id_str":"223636089","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"DAECF4","follow_request_sent":false,"screen_name":"rusashka","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2099343651\/kosmos_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194525370316357633","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","in_reply_to_user_id_str":"133583134","id":194547987593183233,"created_at":"Mon Apr 23 22:07:09 +0000 2011","text":"@maciej hahaha :) @gpena together we're going to cover all core 28 languages!"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194493472269541376,"contributors":null,"in_reply_to_screen_name":"stevej","truncated":false,"id_str":"194547824690597888","coordinates":null,"in_reply_to_user_id":150,"place":null,"user":{"id":16521996,"followers_count":8078,"profile_background_color":"000000","url":"http:\/\/t.co\/eDYdXMCC","created_at":"Tue Sep 30 01:42:10 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/367437800\/1321822246993.jpg","listed_count":321,"lang":"en","profile_link_color":"000000","utc_offset":-28800,"name":"Jacob","is_translator":false,"location":"San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1594065038\/image_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"000000","friends_count":410,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/367437800\/1321822246993.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"d9b500","favourites_count":854,"following":true,"statuses_count":3325,"description":"","contributors_enabled":false,"id_str":"16521996","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"ffcc00","follow_request_sent":false,"screen_name":"fat","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1594065038\/image_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194493472269541376","source":"web","in_reply_to_user_id_str":"150","id":194547824690597888,"created_at":"Mon Apr 23 22:06:30 +0000 2011","text":"@stevej @xc i'm going to picket when i get back."},{"geo":null,"retweeted":false,"in_reply_to_status_id":194547260233760768,"contributors":null,"in_reply_to_screen_name":"0x9900","truncated":false,"possibly_sensitive":false,"id_str":"194547658562605057","coordinates":null,"in_reply_to_user_id":16800336,"place":null,"user":{"id":15266205,"followers_count":4084,"profile_background_color":"ffffff","url":null,"created_at":"Sat Jun 28 21:40:02 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/496945578\/bees.gif","listed_count":140,"lang":"en","profile_link_color":"3d4152","utc_offset":-28800,"name":"Wilhelm Bierbaum","is_translator":false,"location":"sf","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2032197537\/zzzzwb_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":435,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/496945578\/bees.gif","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"b39696","favourites_count":760,"following":false,"statuses_count":2711,"description":"last of the famous international playboys","contributors_enabled":false,"id_str":"15266205","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"d1bcc8","follow_request_sent":false,"screen_name":"wil","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2032197537\/zzzzwb_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194547260233760768","source":"web","in_reply_to_user_id_str":"16800336","id":194547658562605057,"created_at":"Mon Apr 23 22:05:51 +0000 2011","text":"@0x9900 @paulnivin http:\/\/t.co\/bwVdtAPe"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194498218522980352,"contributors":null,"in_reply_to_screen_name":"tianhonghe","truncated":false,"id_str":"194547528430137344","coordinates":null,"in_reply_to_user_id":347555214,"place":{"bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"name":"San Francisco","place_type":"city","country":"United States","attributes":{},"full_name":"San Francisco, CA","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","id":"5a110d312052166f"},"user":{"id":7342422,"followers_count":1921,"profile_background_color":"131516","url":null,"created_at":"Mon Jul 09 08:05:06 +0000 2007","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","listed_count":30,"lang":"en","profile_link_color":"009999","utc_offset":-28800,"name":"Tian Wang","is_translator":true,"location":"Berkeley, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1988897103\/Screen_Shot_2012-03-29_at_5.33.34_PM_normal.png","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":392,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"eeeeee","favourites_count":29,"following":false,"statuses_count":2695,"description":"software engineer @twitter, from @chengdu.","contributors_enabled":true,"id_str":"7342422","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"efefef","follow_request_sent":false,"screen_name":"wangtian","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1988897103\/Screen_Shot_2012-03-29_at_5.33.34_PM_normal.png","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194498218522980352","source":"web","in_reply_to_user_id_str":"347555214","id":194547528430137344,"created_at":"Mon Apr 23 22:05:19 +0000 2011","text":"@tianhonghe @xiangxin72 oh, you can even order specific items?"},{"in_reply_to_status_id_str":"194547084349804544","geo":null,"retweeted":false,"in_reply_to_status_id":194547084349804544,"in_reply_to_user_id_str":"22915745","truncated":false,"coordinates":null,"contributors":null,"place":null,"user":{"id":13166,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1641289714\/Snack_Attack_Mark_17658629_JXGXF2_square_normal.jpg","followers_count":2594,"profile_text_color":"333333","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/462841395\/orange.jpeg","url":"http:\/\/t.co\/82m869z","friends_count":1082,"default_profile_image":false,"created_at":"Mon Nov 20 02:08:17 +0000 2006","contributors_enabled":false,"profile_sidebar_border_color":"a8c7f7","favourites_count":595,"statuses_count":8288,"id_str":"13166","geo_enabled":true,"lang":"en","utc_offset":-28800,"name":"Mark","profile_background_tile":true,"show_all_inline_media":true,"follow_request_sent":false,"location":"San Francisco Bay Area","protected":false,"profile_sidebar_fill_color":"C0DFEC","time_zone":"Pacific Time (US & Canada)","default_profile":false,"verified":false,"profile_background_color":"022330","following":true,"description":"I'm a Canadian geek living in the Bay Area, trying to spread whimsy wherever I go. I work at Twitter, and I think you're awesome. Engaged to @anathemalie \u2665.","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/462841395\/orange.jpeg","listed_count":64,"profile_link_color":"0084B4","screen_name":"shinypb","is_translator":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1641289714\/Snack_Attack_Mark_17658629_JXGXF2_square_normal.jpg","notifications":false,"profile_use_background_image":true},"in_reply_to_screen_name":"kpk","favorited":false,"possibly_sensitive":false,"id_str":"194547402550689793","in_reply_to_user_id":22915745,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","retweet_count":0,"id":194547402550689793,"created_at":"Mon Apr 23 22:04:49 +0000 2011","text":"@kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http:\/\/t.co\/JvLNQCDm @skilldrick @hoverbird"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194545788968370177,"contributors":null,"in_reply_to_screen_name":"wil","truncated":false,"id_str":"194547260233760768","coordinates":null,"in_reply_to_user_id":15266205,"place":null,"user":{"id":16800336,"followers_count":1087,"profile_background_color":"1e0a33","url":"http:\/\/0x9900.com\/","created_at":"Thu Oct 16 02:25:44 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/174846289\/main_bg.png","listed_count":26,"lang":"en","profile_link_color":"1600c7","utc_offset":-28800,"name":"Fred C ","is_translator":true,"location":"San Francisco Bay area","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1228821777\/image_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"4d4d4d","friends_count":445,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/174846289\/main_bg.png","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"d9c300","favourites_count":62,"following":false,"statuses_count":5175,"description":"Twitter Operations Engineer, Arduino hacker, OpenBSD entusiast, motorcycle rider.","contributors_enabled":false,"id_str":"16800336","geo_enabled":false,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"ff8000","follow_request_sent":false,"screen_name":"0x9900","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1228821777\/image_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194545788968370177","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","in_reply_to_user_id_str":"15266205","id":194547260233760768,"created_at":"Mon Apr 23 22:04:16 +0000 2011","text":"@wil @paulnivin if you want to take you seriously don't say daemontools!"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546738810458112,"contributors":null,"in_reply_to_screen_name":"shinypb","truncated":false,"id_str":"194547084349804544","coordinates":null,"in_reply_to_user_id":13166,"place":null,"user":{"profile_banner_url":"https:\/\/si0.twimg.com\/brand_banners\/kpk\/1330635878\/live","id":22915745,"followers_count":2649,"profile_background_color":"d5dce0","url":"http:\/\/t.co\/SvKR2MG3","created_at":"Thu Mar 05 13:05:04 +0000 2009","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/173989056\/silly_twitter_bg.jpg","listed_count":56,"lang":"en","profile_link_color":"757575","utc_offset":-28800,"name":"Kenneth P Kufluk","is_translator":false,"location":"San Francisco, California","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2148525332\/356576188098_normal.png","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":204,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/173989056\/silly_twitter_bg.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"bfc4c7","favourites_count":484,"following":false,"statuses_count":7123,"description":"The neth is essential.","contributors_enabled":false,"id_str":"22915745","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"f0f0f0","follow_request_sent":false,"screen_name":"kpk","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2148525332\/356576188098_normal.png","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546738810458112","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","in_reply_to_user_id_str":"13166","id":194547084349804544,"created_at":"Mon Apr 23 22:03:34 +0000 2011","text":"@shinypb @skilldrick @hoverbird invented it"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546738810458112,"contributors":null,"in_reply_to_screen_name":"shinypb","truncated":false,"id_str":"194546876782092291","coordinates":null,"in_reply_to_user_id":13166,"place":null,"user":{"id":17736965,"followers_count":977,"profile_background_color":"d7cac2","url":"http:\/\/skilldrick.co.uk","created_at":"Sat Nov 29 16:31:56 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/46086494\/meme2.jpg","listed_count":41,"lang":"en","profile_link_color":"2993ba","utc_offset":0,"name":"Nick Morgan","is_translator":false,"location":"San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1788742780\/image1327809193_normal.png","time_zone":"London","profile_text_color":"6f4b48","friends_count":205,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/46086494\/meme2.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"C0DEED","favourites_count":63,"following":false,"statuses_count":11920,"description":"Front-end engineer @twitter, dynamic language enthusiast, massive JavaScript fan, general geek, relapsed bassist. Unbreaking the web.","contributors_enabled":false,"id_str":"17736965","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"eadcd3","follow_request_sent":false,"screen_name":"skilldrick","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1788742780\/image1327809193_normal.png","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546738810458112","source":"web","in_reply_to_user_id_str":"13166","id":194546876782092291,"created_at":"Mon Apr 23 22:02:44 +0000 2011","text":"@shinypb Well played :) @hoverbird"},{"geo":null,"retweeted":false,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"truncated":false,"id_str":"194546811480969217","coordinates":null,"in_reply_to_user_id":null,"place":null,"user":{"id":15211564,"followers_count":7399,"profile_background_color":"C0DEED","url":null,"created_at":"Mon Jun 23 20:33:46 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","listed_count":124,"lang":"en","profile_link_color":"0084B4","utc_offset":-28800,"name":"Sam Luckenbill","is_translator":false,"location":"San Francisco","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1132894440\/popup_normal.jpeg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":354,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"C0DEED","favourites_count":0,"following":true,"statuses_count":1567,"description":"Sam I am","contributors_enabled":false,"id_str":"15211564","geo_enabled":true,"profile_background_tile":false,"show_all_inline_media":true,"profile_sidebar_fill_color":"DDEEF6","follow_request_sent":false,"screen_name":"sam","default_profile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1132894440\/popup_normal.jpeg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":null,"source":"web","in_reply_to_user_id_str":null,"id":194546811480969217,"created_at":"Mon Apr 23 22:02:29 +0000 2011","text":"Can someone project the date that I'll get a 27\" retina display?"},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546649203347456,"contributors":null,"in_reply_to_screen_name":"skilldrick","truncated":false,"id_str":"194546738810458112","coordinates":null,"in_reply_to_user_id":17736965,"place":null,"user":{"id":13166,"followers_count":2594,"profile_background_color":"022330","url":"http:\/\/t.co\/82m869z","created_at":"Mon Nov 20 02:08:17 +0000 2006","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/462841395\/orange.jpeg","listed_count":64,"lang":"en","profile_link_color":"0084B4","utc_offset":-28800,"name":"Mark","is_translator":false,"location":"San Francisco Bay Area","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1641289714\/Snack_Attack_Mark_17658629_JXGXF2_square_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":1082,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/462841395\/orange.jpeg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"a8c7f7","favourites_count":595,"following":false,"statuses_count":8287,"description":"I'm a Canadian geek living in the Bay Area, trying to spread whimsy wherever I go. I work at Twitter, and I think you're awesome. Engaged to @anathemalie \u2665.","contributors_enabled":false,"id_str":"13166","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"C0DFEC","follow_request_sent":false,"screen_name":"shinypb","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1641289714\/Snack_Attack_Mark_17658629_JXGXF2_square_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546649203347456","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_user_id_str":"17736965","id":194546738810458112,"created_at":"Mon Apr 23 22:02:11 +0000 2011","text":"@skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain."},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546277042765824,"contributors":null,"in_reply_to_screen_name":"noahlt","truncated":false,"id_str":"194546727670390784","coordinates":null,"in_reply_to_user_id":421683,"place":null,"user":{"id":3913671,"followers_count":321,"profile_background_color":"022330","url":"http:\/\/t.co\/DAiIE4cP","created_at":"Mon Apr 09 15:19:14 +0000 2007","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","listed_count":18,"lang":"en","profile_link_color":"0084B4","utc_offset":-28800,"name":"Bart Teeuwisse","is_translator":false,"location":"Santa Cruz\/San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1779523247\/_bartt-plaxo_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":331,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"a8c7f7","favourites_count":1,"following":false,"statuses_count":3356,"description":"Early riser to hack, build, climb & ski.","contributors_enabled":false,"id_str":"3913671","geo_enabled":true,"profile_background_tile":false,"show_all_inline_media":false,"profile_sidebar_fill_color":"C0DFEC","follow_request_sent":false,"screen_name":"bartt","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1779523247\/_bartt-plaxo_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546277042765824","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","in_reply_to_user_id_str":"421683","id":194546727670390784,"created_at":"Mon Apr 23 22:02:09 +0000 2011","text":"@noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot\u2019s of fun. Expect improvements in the weeks to come."},{"geo":null,"retweeted":false,"in_reply_to_status_id":194546388707717120,"contributors":null,"in_reply_to_screen_name":"hoverbird","truncated":false,"id_str":"194546649203347456","coordinates":null,"in_reply_to_user_id":792690,"place":null,"user":{"id":17736965,"followers_count":978,"profile_background_color":"d7cac2","url":"http:\/\/skilldrick.co.uk","created_at":"Sat Nov 29 16:31:56 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/46086494\/meme2.jpg","listed_count":41,"lang":"en","profile_link_color":"2993ba","utc_offset":0,"name":"Nick Morgan","is_translator":false,"location":"San Francisco, CA","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1788742780\/image1327809193_normal.png","time_zone":"London","profile_text_color":"6f4b48","friends_count":205,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/46086494\/meme2.jpg","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"C0DEED","favourites_count":63,"following":false,"statuses_count":11919,"description":"Front-end engineer @twitter, dynamic language enthusiast, massive JavaScript fan, general geek, relapsed bassist. Unbreaking the web.","contributors_enabled":false,"id_str":"17736965","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"eadcd3","follow_request_sent":false,"screen_name":"skilldrick","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1788742780\/image1327809193_normal.png","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194546388707717120","source":"web","in_reply_to_user_id_str":"792690","id":194546649203347456,"created_at":"Mon Apr 23 22:01:50 +0000 2011","text":"@hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all."},{"geo":null,"retweeted":false,"in_reply_to_status_id":194403898646216704,"contributors":null,"in_reply_to_screen_name":"mep","truncated":false,"id_str":"194546583608639488","coordinates":null,"in_reply_to_user_id":29127028,"place":null,"user":{"id":14346209,"followers_count":8039,"profile_background_color":"022330","url":"http:\/\/t.co\/brNDdDN","created_at":"Wed Apr 09 22:17:25 +0000 2008","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","listed_count":174,"lang":"ja","profile_link_color":"0084B4","utc_offset":-28800,"name":"Sean Matsuno","is_translator":true,"location":"Tokyo","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1414938678\/tw-148_normal.jpg","time_zone":"Pacific Time (US & Canada)","profile_text_color":"333333","friends_count":1054,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"a8c7f7","favourites_count":343,"following":false,"statuses_count":5774,"description":"Working for Twitter on Japan-related stuff since 2008.","contributors_enabled":false,"id_str":"14346209","geo_enabled":true,"profile_background_tile":false,"show_all_inline_media":true,"profile_sidebar_fill_color":"C0DFEC","follow_request_sent":false,"screen_name":"sean","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1414938678\/tw-148_normal.jpg","notifications":false},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":"194403898646216704","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","in_reply_to_user_id_str":"29127028","id":194546583608639488,"created_at":"Mon Apr 23 22:01:34 +0000 2011","text":"@mep Thanks for coming by. Was great to have you."},{"in_reply_to_status_id_str":"194546242435559424","geo":null,"retweeted":false,"in_reply_to_status_id":194546242435559424,"in_reply_to_user_id_str":"13166","truncated":false,"coordinates":null,"contributors":null,"place":null,"user":{"id":792690,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1268256803\/cropped_normal.jpg","followers_count":53223,"profile_text_color":"29230d","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/346244296\/img-rha_rainy_day_ii.jpg","url":"http:\/\/t.co\/pwRYN6BY","friends_count":909,"default_profile_image":false,"created_at":"Sat Feb 24 18:13:15 +0000 2007","contributors_enabled":true,"profile_sidebar_border_color":"a1b44f","favourites_count":2479,"statuses_count":5007,"id_str":"792690","geo_enabled":true,"lang":"en","utc_offset":-28800,"name":"Patrick Ewing","profile_background_tile":true,"show_all_inline_media":true,"follow_request_sent":false,"location":"Sane Francisco","protected":false,"profile_sidebar_fill_color":"a0b34a","time_zone":"Pacific Time (US & Canada)","default_profile":false,"verified":false,"profile_banner_url":"https:\/\/si0.twimg.com\/brand_banners\/hoverbird\/1329244967\/live","profile_background_color":"b2be63","following":true,"description":"Vector of enthusiasm. Twitter Engineer. Currently fetishizing #JavaScript, #Ruby and #Clojure.","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/346244296\/img-rha_rainy_day_ii.jpg","listed_count":390,"profile_link_color":"61351f","screen_name":"hoverbird","is_translator":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1268256803\/cropped_normal.jpg","notifications":false,"profile_use_background_image":true},"in_reply_to_screen_name":"shinypb","favorited":false,"id_str":"194546388707717120","in_reply_to_user_id":13166,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","retweet_count":0,"id":194546388707717120,"created_at":"Mon Apr 23 22:00:48 +0000 2011","text":"@shinypb @trammell it's all suck a \"duck blur\" sometimes."},{"geo":{"type":"Point","coordinates":[40.68968494,-74.17938709]},"retweeted":false,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"truncated":false,"possibly_sensitive":false,"id_str":"194546264212385793","coordinates":{"type":"Point","coordinates":[-74.17938709,40.68968494]},"in_reply_to_user_id":null,"place":{"bounding_box":{"type":"Polygon","coordinates":[[[-74.251324,40.673903],[-74.112787,40.673903],[-74.112787,40.788664],[-74.251324,40.788664]]]},"name":"Newark","place_type":"city","country":"United States","attributes":{},"full_name":"Newark, NJ","url":"http:\/\/api.twitter.com\/1\/geo\/id\/fa3435044b52ecc7.json","country_code":"US","id":"fa3435044b52ecc7"},"user":{"id":44130013,"followers_count":1009,"profile_background_color":"131516","url":null,"created_at":"Tue Jun 02 14:42:55 +0000 2009","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/322131383\/ink48","listed_count":22,"lang":"en","profile_link_color":"1945a6","utc_offset":-18000,"name":"Kelsey Silver","is_translator":false,"location":"New York, NY","protected":false,"profile_use_background_image":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1519383356\/Untitled_2_normal.jpg","time_zone":"Eastern Time (US & Canada)","profile_text_color":"333333","friends_count":491,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322131383\/ink48","default_profile_image":false,"verified":false,"profile_sidebar_border_color":"eeeeee","favourites_count":164,"following":null,"statuses_count":954,"description":"office coordinator @twitternyc. former facebook employee, fan of all wisconsin sports, wine drinker, craps player, world traveler...","contributors_enabled":true,"id_str":"44130013","geo_enabled":true,"profile_background_tile":true,"show_all_inline_media":true,"profile_sidebar_fill_color":"efefef","follow_request_sent":null,"screen_name":"kelseysilver","default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1519383356\/Untitled_2_normal.jpg","notifications":null},"retweet_count":0,"favorited":false,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003Efoursquare\u003C\/a\u003E","in_reply_to_user_id_str":null,"id":194546264212385793,"created_at":"Mon Apr 23 22:00:18 +0000 2011","text":"San Francisco here I come! (@ Newark Liberty International Airport (EWR) w\/ 92 others) http:\/\/t.co\/eoLANJZw"}]
@@ -1 +1 @@
1
- {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"}], "next_cursor":0, "previous_cursor":0, "next_cursor_str":"0", "previous_cursor_str":"0"}
1
+ {"users":[{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","listed_count":29,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","statuses_count":2962,"profile_text_color":"333333","name":"Erik Michaels-Ober","show_all_inline_media":true,"following":true,"favourites_count":727,"screen_name":"sferik","id":7505382,"id_str":"7505382","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","profile_sidebar_fill_color":"dddddd","followers_count":2767,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28008649044,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28008649044","created_at":"Thu Oct 21 10:33:15 +0000 2010","in_reply_to_user_id":11502142,"favorited":false,"in_reply_to_user_id_str":"11502142","contributors":null,"coordinates":null,"in_reply_to_screen_name":"benfawkes","id":28014236998,"id_str":"28014236998","text":"@benfawkes Surely. Just email wynn at the changelog dot com."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/wynnnetherland.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","profile_background_color":"efefef","location":"Dallas, TX","listed_count":185,"profile_background_tile":false,"friends_count":1871,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","statuses_count":3913,"profile_text_color":"666666","name":"Wynn Netherland","show_all_inline_media":false,"following":true,"favourites_count":32,"screen_name":"pengwynn","id":14100886,"id_str":"14100886","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"35abe9"}], "next_cursor":0, "previous_cursor":0, "next_cursor_str":"0", "previous_cursor_str":"0"}
@@ -1,6 +1,8 @@
1
1
  unless ENV['CI']
2
2
  require 'simplecov'
3
- SimpleCov.start
3
+ SimpleCov.start do
4
+ add_filter 'spec'
5
+ end
4
6
  end
5
7
 
6
8
  require 't'
@@ -6,12 +6,12 @@ describe T::List do
6
6
  before do
7
7
  rcfile = RCFile.instance
8
8
  rcfile.path = fixture_path + "/.trc"
9
- @t = T::CLI.new
9
+ @list = T::List.new
10
10
  @old_stderr = $stderr
11
11
  $stderr = StringIO.new
12
12
  @old_stdout = $stdout
13
13
  $stdout = StringIO.new
14
- Timecop.freeze(Time.local(2011, 11, 24, 16, 20, 0))
14
+ Timecop.freeze(Time.utc(2011, 11, 24, 16, 20, 0))
15
15
  end
16
16
 
17
17
  after do
@@ -22,7 +22,7 @@ describe T::List do
22
22
 
23
23
  describe "#add" do
24
24
  before do
25
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
25
+ @list.options = @list.options.merge(:profile => fixture_path + "/.trc")
26
26
  stub_get("/1/account/verify_credentials.json").
27
27
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
28
28
  stub_post("/1/lists/members/create_all.json").
@@ -30,7 +30,7 @@ describe T::List do
30
30
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
31
31
  end
32
32
  it "should request the correct resource" do
33
- @t.list("add", "presidents", "sferik")
33
+ @list.add("presidents", "sferik")
34
34
  a_get("/1/account/verify_credentials.json").
35
35
  should have_been_made
36
36
  a_post("/1/lists/members/create_all.json").
@@ -38,8 +38,8 @@ describe T::List do
38
38
  should have_been_made
39
39
  end
40
40
  it "should have the correct output" do
41
- @t.list("add", "presidents", "sferik")
42
- $stdout.string.should =~ /@testcli added 1 user to the list "presidents"\./
41
+ @list.add("presidents", "sferik")
42
+ $stdout.string.should =~ /@testcli added 1 member to the list "presidents"\./
43
43
  end
44
44
  context "Twitter is down" do
45
45
  it "should retry 3 times and then raise an error" do
@@ -47,7 +47,7 @@ describe T::List do
47
47
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
48
48
  to_return(:status => 502)
49
49
  lambda do
50
- @t.list("add", "presidents", "sferik")
50
+ @list.add("presidents", "sferik")
51
51
  end.should raise_error("Twitter is down or being upgraded.")
52
52
  a_post("/1/lists/members/create_all.json").
53
53
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
@@ -58,26 +58,137 @@ describe T::List do
58
58
 
59
59
  describe "#create" do
60
60
  before do
61
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
61
+ @list.options = @list.options.merge(:profile => fixture_path + "/.trc")
62
62
  stub_post("/1/lists/create.json").
63
63
  with(:body => {:name => "presidents"}).
64
64
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
65
65
  end
66
66
  it "should request the correct resource" do
67
- @t.list("create", "presidents")
67
+ @list.create("presidents")
68
68
  a_post("/1/lists/create.json").
69
69
  with(:body => {:name => "presidents"}).
70
70
  should have_been_made
71
71
  end
72
72
  it "should have the correct output" do
73
- @t.list("create", "presidents")
73
+ @list.create("presidents")
74
74
  $stdout.string.chomp.should == "@testcli created the list \"presidents\"."
75
75
  end
76
76
  end
77
77
 
78
+ describe "#members" do
79
+ before do
80
+ stub_get("/1/lists/members.json").
81
+ with(:query => {:cursor => "-1", :include_entities => "false", :owner_screen_name => "testcli", :skip_status => "true", :slug => "presidents"}).
82
+ to_return(:body => fixture("users_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
83
+ end
84
+ it "should request the correct resource" do
85
+ @list.members("presidents")
86
+ a_get("/1/lists/members.json").
87
+ with(:query => {:cursor => "-1", :include_entities => "false", :owner_screen_name => "testcli", :skip_status => "true", :slug => "presidents"}).
88
+ should have_been_made
89
+ end
90
+ it "should have the correct output" do
91
+ @list.members("presidents")
92
+ $stdout.string.chomp.rstrip.should == "pengwynn sferik"
93
+ end
94
+ context "--created" do
95
+ before do
96
+ @list.options = @list.options.merge(:created => true)
97
+ end
98
+ it "should sort by the time when Twitter acount was created" do
99
+ @list.members("presidents")
100
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
101
+ end
102
+ end
103
+ context "--favorites" do
104
+ before do
105
+ @list.options = @list.options.merge(:favorites => true)
106
+ end
107
+ it "should sort by number of favorites" do
108
+ @list.members("presidents")
109
+ $stdout.string.chomp.rstrip.should == "pengwynn sferik"
110
+ end
111
+ end
112
+ context "--followers" do
113
+ before do
114
+ @list.options = @list.options.merge(:followers => true)
115
+ end
116
+ it "should sort by number of followers" do
117
+ @list.members("presidents")
118
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
119
+ end
120
+ end
121
+ context "--friends" do
122
+ before do
123
+ @list.options = @list.options.merge(:friends => true)
124
+ end
125
+ it "should sort by number of friends" do
126
+ @list.members("presidents")
127
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
128
+ end
129
+ end
130
+ context "--listed" do
131
+ before do
132
+ @list.options = @list.options.merge(:listed => true)
133
+ end
134
+ it "should sort by number of list memberships" do
135
+ @list.members("presidents")
136
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
137
+ end
138
+ end
139
+ context "--long" do
140
+ before do
141
+ @list.options = @list.options.merge(:long => true)
142
+ end
143
+ it "should list in long format" do
144
+ @list.members("presidents")
145
+ $stdout.string.should == <<-eos
146
+ ID Since Tweets Favorites Listed Following Followers Screen name Name
147
+ 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 pengwynn Wynn Netherland
148
+ 7,505,382 Jul 16 2007 2,962 727 29 88 898 sferik Erik Michaels-Ober
149
+ eos
150
+ end
151
+ end
152
+ context "--reverse" do
153
+ before do
154
+ @list.options = @list.options.merge(:reverse => true)
155
+ end
156
+ it "should reverse the order of the sort" do
157
+ @list.members("presidents")
158
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
159
+ end
160
+ end
161
+ context "--tweets" do
162
+ before do
163
+ @list.options = @list.options.merge(:tweets => true)
164
+ end
165
+ it "should sort by number of Tweets" do
166
+ @list.members("presidents")
167
+ $stdout.string.chomp.rstrip.should == "sferik pengwynn"
168
+ end
169
+ end
170
+ context "with a screen name passed" do
171
+ before do
172
+ stub_get("/1/lists/members.json").
173
+ with(:query => {:cursor => "-1", :include_entities => "false", :owner_screen_name => "sferik", :skip_status => "true", :slug => "presidents"}).
174
+ to_return(:body => fixture("users_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
175
+ end
176
+ it "should request the correct resource" do
177
+ @list.members("sferik", "presidents")
178
+ a_get("/1/lists/members.json").
179
+ with(:query => {:cursor => "-1", :include_entities => "false", :owner_screen_name => "sferik", :skip_status => "true", :slug => "presidents"}).
180
+ should have_been_made
181
+ end
182
+ it "should have the correct output" do
183
+ @list.members("presidents")
184
+ $stdout.string.chomp.rstrip.should == "pengwynn sferik"
185
+ end
186
+ end
187
+ end
188
+
78
189
  describe "#remove" do
79
190
  before do
80
- @t.options = @t.options.merge(:profile => fixture_path + "/.trc")
191
+ @list.options = @list.options.merge(:profile => fixture_path + "/.trc")
81
192
  stub_get("/1/account/verify_credentials.json").
82
193
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
83
194
  end
@@ -85,7 +196,7 @@ describe T::List do
85
196
  stub_post("/1/lists/members/destroy_all.json").
86
197
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
87
198
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
88
- @t.list("remove", "presidents", "sferik")
199
+ @list.remove("presidents", "sferik")
89
200
  a_get("/1/account/verify_credentials.json").
90
201
  should have_been_made
91
202
  a_post("/1/lists/members/destroy_all.json").
@@ -96,8 +207,8 @@ describe T::List do
96
207
  stub_post("/1/lists/members/destroy_all.json").
97
208
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
98
209
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
99
- @t.list("remove", "presidents", "sferik")
100
- $stdout.string.should =~ /@testcli removed 1 user from the list "presidents"\./
210
+ @list.remove("presidents", "sferik")
211
+ $stdout.string.should =~ /@testcli removed 1 member from the list "presidents"\./
101
212
  end
102
213
  context "Twitter is down" do
103
214
  it "should retry 3 times and then raise an error" do
@@ -105,7 +216,7 @@ describe T::List do
105
216
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
106
217
  to_return(:status => 502)
107
218
  lambda do
108
- @t.list("remove", "presidents", "sferik")
219
+ @list.remove("presidents", "sferik")
109
220
  end.should raise_error("Twitter is down or being upgraded.")
110
221
  a_post("/1/lists/members/destroy_all.json").
111
222
  with(:body => {:screen_name => "sferik", :slug => "presidents", :owner_screen_name => "sferik"}).
@@ -121,35 +232,137 @@ describe T::List do
121
232
  to_return(:body => fixture("statuses.json"), :headers => {:content_type => "application/json; charset=utf-8"})
122
233
  end
123
234
  it "should request the correct resource" do
124
- @t.list("timeline", "presidents")
235
+ @list.timeline("presidents")
125
236
  a_get("/1/lists/statuses.json").
126
237
  with(:query => {:owner_screen_name => "testcli", :per_page => "20", :slug => "presidents", :include_entities => "false"}).
127
238
  should have_been_made
128
239
  end
129
240
  it "should have the correct output" do
130
- @t.list("timeline", "presidents")
131
- $stdout.string.should == <<-eos.gsub(/^/, ' ' * 6)
132
- sferik: Ruby is the best programming language for hiding the ugly bits. (about 1 year ago)
133
- sferik: There are 1.3 billion people in China; when people say there are 1 billion they are rounding off the entire population of the United States. (about 1 year ago)
134
- sferik: The new Windows Phone campaign is the best advertising from Microsoft since "Start Me Up" (1995). Great work by CP+B. http://t.co/tIzxopI (about 1 year ago)
135
- sferik: Fear not to sow seeds because of the birds. http://twitpic.com/2wg621 (about 1 year ago)
136
- sferik: Speaking of things that are maddening: the interview with the Wall Street guys on the most recent This American Life http://bit.ly/af9pSD (about 1 year ago)
137
- sferik: Holy cow! RailsAdmin is up to 200 watchers (from 100 yesterday). http://github.com/sferik/rails_admin (about 1 year ago)
138
- sferik: Kind of cool that Facebook acts as a mirror for open-source projects that they use or like http://mirror.facebook.net/ (about 1 year ago)
139
- sferik: RailsAdmin already has 100 watchers, 12 forks, and 6 contributors in less than 2 months. Let's keep the momentum going! http://bit.ly/cCMMqD (about 1 year ago)
140
- sferik: This week's This American Life is amazing. @JoeLipari is an American hero. http://bit.ly/d9RbnB (about 1 year ago)
141
- sferik: RT @polyseme: OH: shofars should be called jewvuzelas. (about 1 year ago)
142
- sferik: Spent this morning fixing broken windows in RailsAdmin http://github.com/sferik/rails_admin/compare/ab6c598...0e3770f (about 1 year ago)
143
- sferik: I'm a big believer that the broken windows theory applies to software development http://en.wikipedia.org/wiki/Broken_windows_theory (about 1 year ago)
144
- sferik: I hope you idiots are happy with your piece of shit Android phones. http://www.apple.com/pr/library/2010/09/09statement.html (about 1 year ago)
145
- sferik: Ping: kills MySpace dead. (about 1 year ago)
146
- sferik: Crazy that iTunes Ping didn't leak a drop. (about 1 year ago)
147
- sferik: The plot thickens http://twitpic.com/2k5lt2 (about 1 year ago)
148
- sferik: 140 Proof Provides A Piece Of The Twitter Advertising Puzzle http://t.co/R2cUSDe via @techcrunch (about 1 year ago)
149
- sferik: Try as you may http://www.thedoghousediaries.com/?p=1940 (about 1 year ago)
150
- sferik: I know @SarahPalinUSA has a right to use Twitter, but should she? (over 1 year ago)
241
+ @list.timeline("presidents")
242
+ $stdout.string.should == <<-eos
243
+ natevillegas: RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present. (7 months ago)
244
+ TD: @kelseysilver how long will you be in town? (7 months ago)
245
+ rusashka: @maciej hahaha :) @gpena together we're going to cover all core 28 languages! (7 months ago)
246
+ fat: @stevej @xc i'm going to picket when i get back. (7 months ago)
247
+ wil: @0x9900 @paulnivin http://t.co/bwVdtAPe (7 months ago)
248
+ wangtian: @tianhonghe @xiangxin72 oh, you can even order specific items? (7 months ago)
249
+ shinypb: @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird (7 months ago)
250
+ 0x9900: @wil @paulnivin if you want to take you seriously don't say daemontools! (7 months ago)
251
+ kpk: @shinypb @skilldrick @hoverbird invented it (7 months ago)
252
+ skilldrick: @shinypb Well played :) @hoverbird (7 months ago)
253
+ sam: Can someone project the date that I'll get a 27" retina display? (7 months ago)
254
+ shinypb: @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain. (7 months ago)
255
+ bartt: @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come. (7 months ago)
256
+ skilldrick: @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all. (7 months ago)
257
+ sean: @mep Thanks for coming by. Was great to have you. (7 months ago)
258
+ hoverbird: @shinypb @trammell it's all suck a "duck blur" sometimes. (7 months ago)
259
+ kelseysilver: San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw (7 months ago)
151
260
  eos
152
261
  end
262
+ context "--long" do
263
+ before do
264
+ @list.options = @list.options.merge(:long => true)
265
+ end
266
+ it "should list in long format" do
267
+ @list.timeline("presidents")
268
+ $stdout.string.should == <<-eos
269
+ ID Posted at Screen name Text
270
+ 194,548,121,416,630,272 Apr 23 2011 natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
271
+ 194,547,993,607,806,976 Apr 23 2011 TD @kelseysilver how long will you be in town?
272
+ 194,547,987,593,183,233 Apr 23 2011 rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
273
+ 194,547,824,690,597,888 Apr 23 2011 fat @stevej @xc i'm going to picket when i get back.
274
+ 194,547,658,562,605,057 Apr 23 2011 wil @0x9900 @paulnivin http://t.co/bwVdtAPe
275
+ 194,547,528,430,137,344 Apr 23 2011 wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
276
+ 194,547,402,550,689,793 Apr 23 2011 shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
277
+ 194,547,260,233,760,768 Apr 23 2011 0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
278
+ 194,547,084,349,804,544 Apr 23 2011 kpk @shinypb @skilldrick @hoverbird invented it
279
+ 194,546,876,782,092,291 Apr 23 2011 skilldrick @shinypb Well played :) @hoverbird
280
+ 194,546,811,480,969,217 Apr 23 2011 sam Can someone project the date that I'll get a 27" retina display?
281
+ 194,546,738,810,458,112 Apr 23 2011 shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
282
+ 194,546,727,670,390,784 Apr 23 2011 bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
283
+ 194,546,649,203,347,456 Apr 23 2011 skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
284
+ 194,546,583,608,639,488 Apr 23 2011 sean @mep Thanks for coming by. Was great to have you.
285
+ 194,546,388,707,717,120 Apr 23 2011 hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
286
+ 194,546,264,212,385,793 Apr 23 2011 kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
287
+ eos
288
+ end
289
+ end
290
+ context "--number" do
291
+ before do
292
+ @list.options = @list.options.merge(:number => 1)
293
+ stub_get("/1/lists/statuses.json").
294
+ with(:query => {:owner_screen_name => "testcli", :per_page => "1", :slug => "presidents", :include_entities => "false"}).
295
+ to_return(:body => fixture("statuses.json"), :headers => {:content_type => "application/json; charset=utf-8"})
296
+ end
297
+ it "should limit the number of results" do
298
+ @list.timeline("presidents")
299
+ a_get("/1/lists/statuses.json").
300
+ with(:query => {:owner_screen_name => "testcli", :per_page => "1", :slug => "presidents", :include_entities => "false"}).
301
+ should have_been_made
302
+ end
303
+ end
304
+ context "--reverse" do
305
+ before do
306
+ @list.options = @list.options.merge(:reverse => true)
307
+ end
308
+ it "should reverse the order of the sort" do
309
+ @list.timeline("presidents")
310
+ $stdout.string.should == <<-eos
311
+ kelseysilver: San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw (7 months ago)
312
+ hoverbird: @shinypb @trammell it's all suck a "duck blur" sometimes. (7 months ago)
313
+ sean: @mep Thanks for coming by. Was great to have you. (7 months ago)
314
+ skilldrick: @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all. (7 months ago)
315
+ bartt: @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come. (7 months ago)
316
+ shinypb: @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain. (7 months ago)
317
+ sam: Can someone project the date that I'll get a 27" retina display? (7 months ago)
318
+ skilldrick: @shinypb Well played :) @hoverbird (7 months ago)
319
+ kpk: @shinypb @skilldrick @hoverbird invented it (7 months ago)
320
+ 0x9900: @wil @paulnivin if you want to take you seriously don't say daemontools! (7 months ago)
321
+ shinypb: @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird (7 months ago)
322
+ wangtian: @tianhonghe @xiangxin72 oh, you can even order specific items? (7 months ago)
323
+ wil: @0x9900 @paulnivin http://t.co/bwVdtAPe (7 months ago)
324
+ fat: @stevej @xc i'm going to picket when i get back. (7 months ago)
325
+ rusashka: @maciej hahaha :) @gpena together we're going to cover all core 28 languages! (7 months ago)
326
+ TD: @kelseysilver how long will you be in town? (7 months ago)
327
+ natevillegas: RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present. (7 months ago)
328
+ eos
329
+ end
330
+ end
331
+ context "with a screen name passed" do
332
+ before do
333
+ stub_get("/1/lists/statuses.json").
334
+ with(:query => {:owner_screen_name => "sferik", :per_page => "20", :slug => "presidents", :include_entities => "false"}).
335
+ to_return(:body => fixture("statuses.json"), :headers => {:content_type => "application/json; charset=utf-8"})
336
+ end
337
+ it "should request the correct resource" do
338
+ @list.timeline("sferik", "presidents")
339
+ a_get("/1/lists/statuses.json").
340
+ with(:query => {:owner_screen_name => "sferik", :per_page => "20", :slug => "presidents", :include_entities => "false"}).
341
+ should have_been_made
342
+ end
343
+ it "should have the correct output" do
344
+ @list.timeline("sferik", "presidents")
345
+ $stdout.string.should == <<-eos
346
+ natevillegas: RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present. (7 months ago)
347
+ TD: @kelseysilver how long will you be in town? (7 months ago)
348
+ rusashka: @maciej hahaha :) @gpena together we're going to cover all core 28 languages! (7 months ago)
349
+ fat: @stevej @xc i'm going to picket when i get back. (7 months ago)
350
+ wil: @0x9900 @paulnivin http://t.co/bwVdtAPe (7 months ago)
351
+ wangtian: @tianhonghe @xiangxin72 oh, you can even order specific items? (7 months ago)
352
+ shinypb: @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird (7 months ago)
353
+ 0x9900: @wil @paulnivin if you want to take you seriously don't say daemontools! (7 months ago)
354
+ kpk: @shinypb @skilldrick @hoverbird invented it (7 months ago)
355
+ skilldrick: @shinypb Well played :) @hoverbird (7 months ago)
356
+ sam: Can someone project the date that I'll get a 27" retina display? (7 months ago)
357
+ shinypb: @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain. (7 months ago)
358
+ bartt: @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come. (7 months ago)
359
+ skilldrick: @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all. (7 months ago)
360
+ sean: @mep Thanks for coming by. Was great to have you. (7 months ago)
361
+ hoverbird: @shinypb @trammell it's all suck a "duck blur" sometimes. (7 months ago)
362
+ kelseysilver: San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw (7 months ago)
363
+ eos
364
+ end
365
+ end
153
366
  end
154
367
 
155
368
  end