dschn-twitter 0.3.7.1
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.
- data/History.txt +106 -0
- data/License.txt +19 -0
- data/Manifest.txt +71 -0
- data/README.txt +84 -0
- data/Rakefile +4 -0
- data/bin/twitter +15 -0
- data/config/hoe.rb +74 -0
- data/config/requirements.rb +17 -0
- data/examples/blocks.rb +15 -0
- data/examples/direct_messages.rb +28 -0
- data/examples/favorites.rb +20 -0
- data/examples/friends_followers.rb +25 -0
- data/examples/friendships.rb +13 -0
- data/examples/identica_timeline.rb +7 -0
- data/examples/location.rb +8 -0
- data/examples/posting.rb +9 -0
- data/examples/replies.rb +26 -0
- data/examples/search.rb +17 -0
- data/examples/sent_messages.rb +26 -0
- data/examples/timeline.rb +33 -0
- data/examples/twitter.rb +27 -0
- data/examples/verify_credentials.rb +13 -0
- data/lib/twitter.rb +21 -0
- data/lib/twitter/base.rb +260 -0
- data/lib/twitter/cli.rb +328 -0
- data/lib/twitter/cli/config.rb +9 -0
- data/lib/twitter/cli/helpers.rb +97 -0
- data/lib/twitter/cli/migrations/20080722194500_create_accounts.rb +13 -0
- data/lib/twitter/cli/migrations/20080722194508_create_tweets.rb +16 -0
- data/lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb +9 -0
- data/lib/twitter/cli/migrations/20080722214606_create_configurations.rb +13 -0
- data/lib/twitter/cli/models/account.rb +33 -0
- data/lib/twitter/cli/models/configuration.rb +13 -0
- data/lib/twitter/cli/models/tweet.rb +20 -0
- data/lib/twitter/direct_message.rb +22 -0
- data/lib/twitter/easy_class_maker.rb +43 -0
- data/lib/twitter/rate_limit_status.rb +19 -0
- data/lib/twitter/search.rb +94 -0
- data/lib/twitter/status.rb +22 -0
- data/lib/twitter/user.rb +37 -0
- data/lib/twitter/version.rb +9 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/spec/base_spec.rb +109 -0
- data/spec/cli/helper_spec.rb +35 -0
- data/spec/direct_message_spec.rb +35 -0
- data/spec/fixtures/followers.xml +706 -0
- data/spec/fixtures/friends.xml +609 -0
- data/spec/fixtures/friends_for.xml +584 -0
- data/spec/fixtures/friends_lite.xml +192 -0
- data/spec/fixtures/friends_timeline.xml +66 -0
- data/spec/fixtures/public_timeline.xml +148 -0
- data/spec/fixtures/rate_limit_status.xml +7 -0
- data/spec/fixtures/search_results.json +1 -0
- data/spec/fixtures/status.xml +25 -0
- data/spec/fixtures/user.xml +38 -0
- data/spec/fixtures/user_timeline.xml +465 -0
- data/spec/search_spec.rb +89 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/status_spec.rb +40 -0
- data/spec/user_spec.rb +42 -0
- data/tasks/deployment.rake +50 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/twitter.gemspec +49 -0
- data/website/css/common.css +47 -0
- data/website/images/terminal_output.png +0 -0
- data/website/index.html +156 -0
- metadata +180 -0
@@ -0,0 +1,584 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<users type="array">
|
3
|
+
<user>
|
4
|
+
<id>12</id>
|
5
|
+
<name>Jack Dorsey</name>
|
6
|
+
<screen_name>jack</screen_name>
|
7
|
+
<location>San Francisco</location>
|
8
|
+
<description>A sailor, a tailor.</description>
|
9
|
+
|
10
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/53177776/BEBLP4LQp84znz5jKJYwaXLv_400_normal.jpg</profile_image_url>
|
11
|
+
<url>http://gu.st/</url>
|
12
|
+
<protected>false</protected>
|
13
|
+
<followers_count>4963</followers_count>
|
14
|
+
<status>
|
15
|
+
<created_at>Sat May 03 18:33:02 +0000 2008</created_at>
|
16
|
+
|
17
|
+
<id>802740112</id>
|
18
|
+
<text>happy birthday 2 my dad1</text>
|
19
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
20
|
+
<truncated>false</truncated>
|
21
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
22
|
+
|
23
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
24
|
+
<favorited>false</favorited>
|
25
|
+
</status>
|
26
|
+
</user>
|
27
|
+
<user>
|
28
|
+
<id>13</id>
|
29
|
+
<name>Biz Stone</name>
|
30
|
+
|
31
|
+
<screen_name>biz</screen_name>
|
32
|
+
<location>Berkeley, CA</location>
|
33
|
+
<description>Co-founder of Twitter</description>
|
34
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/51940538/blue_team_biz_normal.png</profile_image_url>
|
35
|
+
<url>http://www.bizstone.com</url>
|
36
|
+
<protected>false</protected>
|
37
|
+
|
38
|
+
<followers_count>9822</followers_count>
|
39
|
+
<status>
|
40
|
+
<created_at>Sun May 04 17:06:40 +0000 2008</created_at>
|
41
|
+
<id>803292952</id>
|
42
|
+
<text>micro-loaning on kiva.org</text>
|
43
|
+
<source>web</source>
|
44
|
+
|
45
|
+
<truncated>false</truncated>
|
46
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
47
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
48
|
+
<favorited>false</favorited>
|
49
|
+
</status>
|
50
|
+
</user>
|
51
|
+
<user>
|
52
|
+
<id>15</id>
|
53
|
+
|
54
|
+
<name>crystal</name>
|
55
|
+
<screen_name>crystal</screen_name>
|
56
|
+
<location>San Francisco</location>
|
57
|
+
<description>loves music, loves to dance.</description>
|
58
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/53513404/photo_normal.jpg</profile_image_url>
|
59
|
+
<url></url>
|
60
|
+
|
61
|
+
<protected>false</protected>
|
62
|
+
<followers_count>2534</followers_count>
|
63
|
+
<status>
|
64
|
+
<created_at>Sun May 04 19:13:40 +0000 2008</created_at>
|
65
|
+
<id>803357051</id>
|
66
|
+
<text>Waiting for Jason to finish his beauty shower at the gym. The scrap-like forgot-my-hundies alternative for sale: Commando "it's better t ...</text>
|
67
|
+
|
68
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
69
|
+
<truncated>true</truncated>
|
70
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
71
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
72
|
+
<favorited>false</favorited>
|
73
|
+
</status>
|
74
|
+
|
75
|
+
</user>
|
76
|
+
<user>
|
77
|
+
<id>17</id>
|
78
|
+
<name>Tony Stubblebine</name>
|
79
|
+
<screen_name>tonystubblebine</screen_name>
|
80
|
+
<location>Mill Valley, CA</location>
|
81
|
+
<description></description>
|
82
|
+
|
83
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14019552/profile_normal.jpg</profile_image_url>
|
84
|
+
<url>http://www.stubbleblog.com/</url>
|
85
|
+
<protected>false</protected>
|
86
|
+
<followers_count>1399</followers_count>
|
87
|
+
<status>
|
88
|
+
<created_at>Sun May 04 18:58:31 +0000 2008</created_at>
|
89
|
+
|
90
|
+
<id>803349865</id>
|
91
|
+
<text>At maker faire. Recommend parking on city streets and walking in</text>
|
92
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
93
|
+
<truncated>false</truncated>
|
94
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
95
|
+
|
96
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
97
|
+
<favorited>false</favorited>
|
98
|
+
</status>
|
99
|
+
</user>
|
100
|
+
<user>
|
101
|
+
<id>18</id>
|
102
|
+
<name>Adam Rugel</name>
|
103
|
+
|
104
|
+
<screen_name>Adam</screen_name>
|
105
|
+
<location></location>
|
106
|
+
<description>Founder of 71Miles.com</description>
|
107
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14019602/mea_normal.jpg</profile_image_url>
|
108
|
+
<url>http://71miles.com</url>
|
109
|
+
<protected>false</protected>
|
110
|
+
|
111
|
+
<followers_count>1343</followers_count>
|
112
|
+
<status>
|
113
|
+
<created_at>Mon May 05 00:09:04 +0000 2008</created_at>
|
114
|
+
<id>803492940</id>
|
115
|
+
<text>montecito country club, swakny. groom doing fake runaway-brides sprints in parking lot</text>
|
116
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
117
|
+
|
118
|
+
<truncated>false</truncated>
|
119
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
120
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
121
|
+
<favorited>false</favorited>
|
122
|
+
</status>
|
123
|
+
</user>
|
124
|
+
<user>
|
125
|
+
<id>21</id>
|
126
|
+
|
127
|
+
<name>Dom Sagolla</name>
|
128
|
+
<screen_name>dom</screen_name>
|
129
|
+
<location>San Francisco, CA</location>
|
130
|
+
<description>Ye Olde Twttr user #21</description>
|
131
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/51760572/318766470_d9340c5b83_normal.jpg</profile_image_url>
|
132
|
+
<url>http://Dom.net</url>
|
133
|
+
|
134
|
+
<protected>false</protected>
|
135
|
+
<followers_count>1400</followers_count>
|
136
|
+
<status>
|
137
|
+
<created_at>Sun May 04 17:26:44 +0000 2008</created_at>
|
138
|
+
<id>803303599</id>
|
139
|
+
<text>Baby Leo just failed his Save vs. Lullaby.</text>
|
140
|
+
|
141
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
142
|
+
<truncated>false</truncated>
|
143
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
144
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
145
|
+
<favorited>false</favorited>
|
146
|
+
</status>
|
147
|
+
|
148
|
+
</user>
|
149
|
+
<user>
|
150
|
+
<id>23</id>
|
151
|
+
<name>Tim Roberts</name>
|
152
|
+
<screen_name>timroberts</screen_name>
|
153
|
+
<location>San Francisco</location>
|
154
|
+
<description>Thinking crazy thoughts</description>
|
155
|
+
|
156
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14019802/evel_normal.jpg</profile_image_url>
|
157
|
+
<url></url>
|
158
|
+
<protected>false</protected>
|
159
|
+
<followers_count>568</followers_count>
|
160
|
+
<status>
|
161
|
+
<created_at>Tue Sep 04 23:19:38 +0000 2007</created_at>
|
162
|
+
<id>247466642</id>
|
163
|
+
|
164
|
+
<text>digging out from being away for a week. how stuff piles up.</text>
|
165
|
+
<source>web</source>
|
166
|
+
<truncated>false</truncated>
|
167
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
168
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
169
|
+
<favorited>false</favorited>
|
170
|
+
</status>
|
171
|
+
|
172
|
+
</user>
|
173
|
+
<user>
|
174
|
+
<id>47</id>
|
175
|
+
<name>kellan</name>
|
176
|
+
<screen_name>kellan</screen_name>
|
177
|
+
<location></location>
|
178
|
+
<description></description>
|
179
|
+
|
180
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14020052/20070522-517918392-love_this_shot_s_normal.jpg</profile_image_url>
|
181
|
+
<url>http://laughingmeme.org</url>
|
182
|
+
<protected>false</protected>
|
183
|
+
<followers_count>742</followers_count>
|
184
|
+
<status>
|
185
|
+
<created_at>Sun May 04 06:19:11 +0000 2008</created_at>
|
186
|
+
|
187
|
+
<id>803043467</id>
|
188
|
+
<text>OAuth is really boring. The fact that we *designed* it to be boring doesn't make it any easier to talk about.</text>
|
189
|
+
<source>web</source>
|
190
|
+
<truncated>false</truncated>
|
191
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
192
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
193
|
+
<favorited>false</favorited>
|
194
|
+
|
195
|
+
</status>
|
196
|
+
</user>
|
197
|
+
<user>
|
198
|
+
<id>52</id>
|
199
|
+
<name>Hook</name>
|
200
|
+
<screen_name>hook</screen_name>
|
201
|
+
<location>Huntington Beach</location>
|
202
|
+
|
203
|
+
<description>Mover and shaker - I like Irish Pubs and Brew Pubs. I work in Financial Services and ride Harley's. Snowboarding is fun (but I need to get better). </description>
|
204
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14020102/Scott_Twitter_normal.jpg</profile_image_url>
|
205
|
+
<url></url>
|
206
|
+
<protected>false</protected>
|
207
|
+
<followers_count>438</followers_count>
|
208
|
+
<status>
|
209
|
+
<created_at>Sat May 03 14:59:24 +0000 2008</created_at>
|
210
|
+
|
211
|
+
<id>802627573</id>
|
212
|
+
<text>looking for furniture restoration in huntington Beach area - anyone know a place? Need to restore old rocking chair.</text>
|
213
|
+
<source>web</source>
|
214
|
+
<truncated>false</truncated>
|
215
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
216
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
217
|
+
<favorited>false</favorited>
|
218
|
+
|
219
|
+
</status>
|
220
|
+
</user>
|
221
|
+
<user>
|
222
|
+
<id>53</id>
|
223
|
+
<name>sara </name>
|
224
|
+
<screen_name>sara</screen_name>
|
225
|
+
<location>san francisco, ca</location>
|
226
|
+
|
227
|
+
<description></description>
|
228
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14020152/yo_normal.jpg</profile_image_url>
|
229
|
+
<url>http://saramorishige.com</url>
|
230
|
+
<protected>false</protected>
|
231
|
+
<followers_count>1715</followers_count>
|
232
|
+
<status>
|
233
|
+
<created_at>Sun May 04 19:00:44 +0000 2008</created_at>
|
234
|
+
|
235
|
+
<id>803350958</id>
|
236
|
+
<text>I won a mermaid!</text>
|
237
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
238
|
+
<truncated>false</truncated>
|
239
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
240
|
+
|
241
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
242
|
+
<favorited>false</favorited>
|
243
|
+
</status>
|
244
|
+
</user>
|
245
|
+
<user>
|
246
|
+
<id>57</id>
|
247
|
+
<name>SarahM</name>
|
248
|
+
|
249
|
+
<screen_name>SarahM</screen_name>
|
250
|
+
<location></location>
|
251
|
+
<description>into dogs and shoes. and really good food.</description>
|
252
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14020252/profilepic_normal.jpg</profile_image_url>
|
253
|
+
<url>http://www.bicoastalist.com</url>
|
254
|
+
<protected>false</protected>
|
255
|
+
|
256
|
+
<followers_count>954</followers_count>
|
257
|
+
<status>
|
258
|
+
<created_at>Sun May 04 00:19:58 +0000 2008</created_at>
|
259
|
+
<id>802894272</id>
|
260
|
+
<text>Who's spending mid-June to mid-July in NYC this summer? We are!</text>
|
261
|
+
<source>web</source>
|
262
|
+
|
263
|
+
<truncated>false</truncated>
|
264
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
265
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
266
|
+
<favorited>false</favorited>
|
267
|
+
</status>
|
268
|
+
</user>
|
269
|
+
<user>
|
270
|
+
<id>61</id>
|
271
|
+
|
272
|
+
<name>Dan</name>
|
273
|
+
<screen_name>dan</screen_name>
|
274
|
+
<location>San Francisco, CA</location>
|
275
|
+
<description>I've got an opinion for every occasion.</description>
|
276
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14020502/464202_normal.jpg</profile_image_url>
|
277
|
+
<url>http://archfear.com/</url>
|
278
|
+
|
279
|
+
<protected>false</protected>
|
280
|
+
<followers_count>703</followers_count>
|
281
|
+
<status>
|
282
|
+
<created_at>Mon May 05 00:09:44 +0000 2008</created_at>
|
283
|
+
<id>803493221</id>
|
284
|
+
<text>Trying to get some work done at Maxfield's. If you're in the hood, stop by.</text>
|
285
|
+
|
286
|
+
<source>im</source>
|
287
|
+
<truncated>false</truncated>
|
288
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
289
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
290
|
+
<favorited>false</favorited>
|
291
|
+
</status>
|
292
|
+
</user>
|
293
|
+
|
294
|
+
<user>
|
295
|
+
<id>64</id>
|
296
|
+
<name>Livia</name>
|
297
|
+
<screen_name>livia</screen_name>
|
298
|
+
<location>Berkeley</location>
|
299
|
+
<description>wildlife rehabber</description>
|
300
|
+
|
301
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/52032237/LIVVYPIC_normal.jpg</profile_image_url>
|
302
|
+
<url></url>
|
303
|
+
<protected>false</protected>
|
304
|
+
<followers_count>698</followers_count>
|
305
|
+
<status>
|
306
|
+
<created_at>Sun May 04 16:37:41 +0000 2008</created_at>
|
307
|
+
<id>803277970</id>
|
308
|
+
|
309
|
+
<text>Watching previews on imdb which are, sadly, better than the actual movies most of the time</text>
|
310
|
+
<source>web</source>
|
311
|
+
<truncated>false</truncated>
|
312
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
313
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
314
|
+
<favorited>false</favorited>
|
315
|
+
</status>
|
316
|
+
|
317
|
+
</user>
|
318
|
+
<user>
|
319
|
+
<id>66</id>
|
320
|
+
<name>Dunstan</name>
|
321
|
+
<screen_name>dunstan</screen_name>
|
322
|
+
<location>San Francisco, California</location>
|
323
|
+
<description></description>
|
324
|
+
|
325
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/36710592/68756453_N00_normal.jpg</profile_image_url>
|
326
|
+
<url>http://1976design.com/</url>
|
327
|
+
<protected>false</protected>
|
328
|
+
<followers_count>1842</followers_count>
|
329
|
+
<status>
|
330
|
+
<created_at>Sun May 04 17:21:07 +0000 2008</created_at>
|
331
|
+
|
332
|
+
<id>803300832</id>
|
333
|
+
<text>Finished slow-motion test on Flickr http://flickr.com/photos/dunstan/2464827854/ and Vimeo http://www.vimeo.com/973455</text>
|
334
|
+
<source>web</source>
|
335
|
+
<truncated>false</truncated>
|
336
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
337
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
338
|
+
<favorited>false</favorited>
|
339
|
+
|
340
|
+
</status>
|
341
|
+
</user>
|
342
|
+
<user>
|
343
|
+
<id>87</id>
|
344
|
+
<name>Krissy</name>
|
345
|
+
<screen_name>krissy</screen_name>
|
346
|
+
<location>San Francisco</location>
|
347
|
+
|
348
|
+
<description>it takes all kinds</description>
|
349
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/53669368/Photo_1_normal.jpg</profile_image_url>
|
350
|
+
<url>http://www.flickr.com/photos/kreesy25</url>
|
351
|
+
<protected>false</protected>
|
352
|
+
<followers_count>1460</followers_count>
|
353
|
+
<status>
|
354
|
+
|
355
|
+
<created_at>Sat May 03 06:07:27 +0000 2008</created_at>
|
356
|
+
<id>802438488</id>
|
357
|
+
<text>Oh how I have failed</text>
|
358
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
359
|
+
<truncated>false</truncated>
|
360
|
+
|
361
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
362
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
363
|
+
<favorited>false</favorited>
|
364
|
+
</status>
|
365
|
+
</user>
|
366
|
+
<user>
|
367
|
+
<id>94</id>
|
368
|
+
<name>Alissa</name>
|
369
|
+
|
370
|
+
<screen_name>alissa</screen_name>
|
371
|
+
<location>San Francisco, CA</location>
|
372
|
+
<description>bipedal humanoid</description>
|
373
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/31274612/icon2_normal.png</profile_image_url>
|
374
|
+
<url></url>
|
375
|
+
<protected>false</protected>
|
376
|
+
|
377
|
+
<followers_count>903</followers_count>
|
378
|
+
<status>
|
379
|
+
<created_at>Sun May 04 02:43:09 +0000 2008</created_at>
|
380
|
+
<id>802957051</id>
|
381
|
+
<text>Enjoying an evening of nyrdom at maker faire.</text>
|
382
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
383
|
+
|
384
|
+
<truncated>false</truncated>
|
385
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
386
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
387
|
+
<favorited>false</favorited>
|
388
|
+
</status>
|
389
|
+
</user>
|
390
|
+
<user>
|
391
|
+
<id>107</id>
|
392
|
+
|
393
|
+
<name>Philip Kaplan</name>
|
394
|
+
<screen_name>pud</screen_name>
|
395
|
+
<location>San Francisco, CA</location>
|
396
|
+
<description></description>
|
397
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14021052/pk_orange_shirt_normal.jpg</profile_image_url>
|
398
|
+
<url>http://www.pud.com</url>
|
399
|
+
|
400
|
+
<protected>false</protected>
|
401
|
+
<followers_count>1029</followers_count>
|
402
|
+
<status>
|
403
|
+
<created_at>Sun May 04 23:51:58 +0000 2008</created_at>
|
404
|
+
<id>803485452</id>
|
405
|
+
<text>Sick, recovering, need soup and a blanket.</text>
|
406
|
+
|
407
|
+
<source>web</source>
|
408
|
+
<truncated>false</truncated>
|
409
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
410
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
411
|
+
<favorited>false</favorited>
|
412
|
+
</status>
|
413
|
+
</user>
|
414
|
+
|
415
|
+
<user>
|
416
|
+
<id>108</id>
|
417
|
+
<name>ilona</name>
|
418
|
+
<screen_name>ilona</screen_name>
|
419
|
+
<location></location>
|
420
|
+
<description></description>
|
421
|
+
<profile_image_url>http://static.twitter.com/images/default_profile_normal.png</profile_image_url>
|
422
|
+
|
423
|
+
<url></url>
|
424
|
+
<protected>false</protected>
|
425
|
+
<followers_count>277</followers_count>
|
426
|
+
<status>
|
427
|
+
<created_at>Sat Apr 26 22:40:03 +0000 2008</created_at>
|
428
|
+
<id>797704604</id>
|
429
|
+
<text>of all the classy magazines to choose from, i go for the ryan seacrest cover story.</text>
|
430
|
+
|
431
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
432
|
+
<truncated>false</truncated>
|
433
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
434
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
435
|
+
<favorited>false</favorited>
|
436
|
+
</status>
|
437
|
+
|
438
|
+
</user>
|
439
|
+
<user>
|
440
|
+
<id>150</id>
|
441
|
+
<name>Steve Jenson</name>
|
442
|
+
<screen_name>stevej</screen_name>
|
443
|
+
<location>San Francisco, CA</location>
|
444
|
+
<description>Programming ascetic, former Googler, and all-around fun dude tricked into working on Twitter.</description>
|
445
|
+
|
446
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/52441150/patch_bunny_slippers_normal.jpg</profile_image_url>
|
447
|
+
<url>http://saladwithsteve.com/</url>
|
448
|
+
<protected>false</protected>
|
449
|
+
<followers_count>699</followers_count>
|
450
|
+
<status>
|
451
|
+
<created_at>Sat May 03 21:51:57 +0000 2008</created_at>
|
452
|
+
|
453
|
+
<id>802830170</id>
|
454
|
+
<text>The monorail was out of service for the return trip from the SciFi museum so we had to walk back. The future is not here yet.</text>
|
455
|
+
<source>web</source>
|
456
|
+
<truncated>false</truncated>
|
457
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
458
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
459
|
+
<favorited>false</favorited>
|
460
|
+
|
461
|
+
</status>
|
462
|
+
</user>
|
463
|
+
<user>
|
464
|
+
<id>224</id>
|
465
|
+
<name>Dave</name>
|
466
|
+
<screen_name>davepell</screen_name>
|
467
|
+
<location></location>
|
468
|
+
|
469
|
+
<description></description>
|
470
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14021702/herschpass_normal.jpg</profile_image_url>
|
471
|
+
<url></url>
|
472
|
+
<protected>false</protected>
|
473
|
+
<followers_count>162</followers_count>
|
474
|
+
<status>
|
475
|
+
<created_at>Fri Apr 18 07:24:25 +0000 2008</created_at>
|
476
|
+
|
477
|
+
<id>791670185</id>
|
478
|
+
<text>So the project is fun, eh? Muwahahaha.</text>
|
479
|
+
<source>web</source>
|
480
|
+
<truncated>false</truncated>
|
481
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
482
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
483
|
+
<favorited>false</favorited>
|
484
|
+
|
485
|
+
</status>
|
486
|
+
</user>
|
487
|
+
<user>
|
488
|
+
<id>246</id>
|
489
|
+
<name>Blaine Cook</name>
|
490
|
+
<screen_name>blaine</screen_name>
|
491
|
+
<location>San Francisco</location>
|
492
|
+
|
493
|
+
<description>TwitterInterpreter.</description>
|
494
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14022002/171593560_00e00bc7c9_normal.jpg</profile_image_url>
|
495
|
+
<url>http://romeda.org/</url>
|
496
|
+
<protected>false</protected>
|
497
|
+
<followers_count>2765</followers_count>
|
498
|
+
<status>
|
499
|
+
|
500
|
+
<created_at>Sun May 04 23:36:14 +0000 2008</created_at>
|
501
|
+
<id>803478581</id>
|
502
|
+
<text>Listening to Umberto Eco trashing the lack of intellectual discrimination on the web.</text>
|
503
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
504
|
+
<truncated>false</truncated>
|
505
|
+
|
506
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
507
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
508
|
+
<favorited>false</favorited>
|
509
|
+
</status>
|
510
|
+
</user>
|
511
|
+
<user>
|
512
|
+
<id>257</id>
|
513
|
+
<name>rael</name>
|
514
|
+
|
515
|
+
<screen_name>rael</screen_name>
|
516
|
+
<location>Portland, OR</location>
|
517
|
+
<description>http://www.valuesofn.com/peeps.html</description>
|
518
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14022052/raeldornfest_normal.jpg</profile_image_url>
|
519
|
+
<url>http://www.valuesofn.com/blog</url>
|
520
|
+
<protected>false</protected>
|
521
|
+
|
522
|
+
<followers_count>1446</followers_count>
|
523
|
+
<status>
|
524
|
+
<created_at>Sat May 03 02:19:26 +0000 2008</created_at>
|
525
|
+
<id>802341813</id>
|
526
|
+
<text>bar camp, portland</text>
|
527
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
528
|
+
|
529
|
+
<truncated>false</truncated>
|
530
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
531
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
532
|
+
<favorited>false</favorited>
|
533
|
+
</status>
|
534
|
+
</user>
|
535
|
+
<user>
|
536
|
+
<id>291</id>
|
537
|
+
|
538
|
+
<name>Jason Goldman</name>
|
539
|
+
<screen_name>goldman</screen_name>
|
540
|
+
<location>San Francisco, CA</location>
|
541
|
+
<description>Flipped my wig at age 22 and it never grew back.</description>
|
542
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/52289959/image_5_94_2_2_normal.jpg</profile_image_url>
|
543
|
+
<url>http://goldtoe.net</url>
|
544
|
+
|
545
|
+
<protected>false</protected>
|
546
|
+
<followers_count>2114</followers_count>
|
547
|
+
<status>
|
548
|
+
<created_at>Sun May 04 02:38:06 +0000 2008</created_at>
|
549
|
+
<id>802954917</id>
|
550
|
+
<text>MSFT; no soup. YHOO; sort of a cold soup but at least it's theirs. GOOG; chunky fat stew.</text>
|
551
|
+
|
552
|
+
<source><a href="http://help.twitter.com/index.php?pg=kb.page&id=75">txt</a></source>
|
553
|
+
<truncated>false</truncated>
|
554
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
555
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
556
|
+
<favorited>false</favorited>
|
557
|
+
</status>
|
558
|
+
|
559
|
+
</user>
|
560
|
+
<user>
|
561
|
+
<id>292</id>
|
562
|
+
<name>Chris Wetherell</name>
|
563
|
+
<screen_name>cw</screen_name>
|
564
|
+
<location></location>
|
565
|
+
<description></description>
|
566
|
+
|
567
|
+
<profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/14022652/me-small_normal.jpg</profile_image_url>
|
568
|
+
<url>http://massless.org/</url>
|
569
|
+
<protected>false</protected>
|
570
|
+
<followers_count>2040</followers_count>
|
571
|
+
<status>
|
572
|
+
<created_at>Sun May 04 21:45:16 +0000 2008</created_at>
|
573
|
+
|
574
|
+
<id>803428787</id>
|
575
|
+
<text>The awesome, crunchy, bullet-ridden, sleazy, scene-munching, tongue-in-cheek gun ride that's Shoot 'Em Up is NOT a play-in-background flick.</text>
|
576
|
+
<source>web</source>
|
577
|
+
<truncated>false</truncated>
|
578
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
579
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
580
|
+
<favorited>false</favorited>
|
581
|
+
|
582
|
+
</status>
|
583
|
+
</user>
|
584
|
+
</users>
|