jammed 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/.gitignore +6 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +3 -0
  4. data/Gemfile +10 -0
  5. data/LICENSE +22 -0
  6. data/README.md +54 -0
  7. data/Rakefile +44 -0
  8. data/examples/basics.rb +60 -0
  9. data/lib/jammed/base.rb +182 -0
  10. data/lib/jammed/followers.rb +36 -0
  11. data/lib/jammed/following.rb +36 -0
  12. data/lib/jammed/jams.rb +34 -0
  13. data/lib/jammed/likes.rb +32 -0
  14. data/lib/jammed/people_search.rb +55 -0
  15. data/lib/jammed/person.rb +32 -0
  16. data/lib/jammed/popular_jams.rb +14 -0
  17. data/lib/jammed/suggested_people.rb +14 -0
  18. data/lib/jammed/user.rb +158 -0
  19. data/lib/jammed/version.rb +4 -0
  20. data/lib/jammed.rb +28 -0
  21. data/spec/jammed/base_spec.rb +90 -0
  22. data/spec/jammed/followers_spec.rb +55 -0
  23. data/spec/jammed/following_spec.rb +55 -0
  24. data/spec/jammed/jams_spec.rb +53 -0
  25. data/spec/jammed/likes_spec.rb +51 -0
  26. data/spec/jammed/people_search_spec.rb +79 -0
  27. data/spec/jammed/person_spec.rb +38 -0
  28. data/spec/jammed/popular_jams_spec.rb +23 -0
  29. data/spec/jammed/suggested_people_spec.rb +18 -0
  30. data/spec/jammed/user_spec.rb +205 -0
  31. data/spec/sample_responses/followers.json +1495 -0
  32. data/spec/sample_responses/followers_affinity.json +1495 -0
  33. data/spec/sample_responses/followers_date.json +1281 -0
  34. data/spec/sample_responses/followers_name.json +0 -0
  35. data/spec/sample_responses/following.json +1495 -0
  36. data/spec/sample_responses/following_affinity.json +1495 -0
  37. data/spec/sample_responses/following_date.json +1406 -0
  38. data/spec/sample_responses/following_name.json +1406 -0
  39. data/spec/sample_responses/jams.json +620 -0
  40. data/spec/sample_responses/jams_past.json +602 -0
  41. data/spec/sample_responses/likes.json +1106 -0
  42. data/spec/sample_responses/likes_current.json +224 -0
  43. data/spec/sample_responses/likes_past.json +1106 -0
  44. data/spec/sample_responses/person.json +44 -0
  45. data/spec/sample_responses/popular.json +364 -0
  46. data/spec/sample_responses/search_artist.json +1377 -0
  47. data/spec/sample_responses/search_name.json +55 -0
  48. data/spec/sample_responses/search_track.json +1333 -0
  49. data/spec/sample_responses/suggested_people.json +1427 -0
  50. data/spec/spec_helper.rb +18 -0
  51. metadata +189 -0
@@ -0,0 +1,1427 @@
1
+ {
2
+ "list": {
3
+ "hasMore": true,
4
+ "next": "http://api.thisismyjam.com/1/suggestedPeople.json?page=2&key=987bcab01b929eb2c07877b224215c92"
5
+ },
6
+ "people": [
7
+ {
8
+ "apiUrl": "http://api.thisismyjam.com/1/tomewing.json",
9
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_ce6a1d184b4e4eada4931d8e4a284d79_128.jpg",
10
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_ce6a1d184b4e4eada4931d8e4a284d79_small.jpg",
11
+ "bio": "Yo! Champ in the making!",
12
+ "followers": "http://api.thisismyjam.com/1/tomewing/followers.json",
13
+ "followersCount": 96,
14
+ "following": "http://api.thisismyjam.com/1/tomewing/following.json",
15
+ "followingCount": 78,
16
+ "fullname": "Tom Ewing",
17
+ "hasCurrentJam": true,
18
+ "jamCount": 10,
19
+ "joinedDate": "Tue, 03 Apr 2012 20:58:50 +0000",
20
+ "name": "tomewing",
21
+ "representativeArtists": [
22
+ "Infernal",
23
+ "Aaron LaCrate & Debonair Samir",
24
+ "Christina Milian",
25
+ "Alicia Keys"
26
+ ],
27
+ "twitterName": "tomewing",
28
+ "url": "http://www.thisismyjam.com/tomewing"
29
+ },
30
+ {
31
+ "apiUrl": "http://api.thisismyjam.com/1/mikesten.json",
32
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_21a9f6508f3ee8a4c5aef4a4a07472e1_128.jpg",
33
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_21a9f6508f3ee8a4c5aef4a4a07472e1_small.jpg",
34
+ "bio": "Designer, programmer and maker of things.",
35
+ "facebookID": "681445631",
36
+ "followers": "http://api.thisismyjam.com/1/mikesten/followers.json",
37
+ "followersCount": 251,
38
+ "following": "http://api.thisismyjam.com/1/mikesten/following.json",
39
+ "followingCount": 160,
40
+ "fullname": "Mike Stenhouse",
41
+ "hasCurrentJam": true,
42
+ "jamCount": 51,
43
+ "joinedDate": "Sat, 01 Oct 2011 14:31:22 +0000",
44
+ "lastfmName": "mikesten",
45
+ "name": "mikesten",
46
+ "representativeArtists": [
47
+ "Labi Siffre",
48
+ "Danny Drive Thru",
49
+ "Sixto Rodriguez",
50
+ "Scroobius Pip"
51
+ ],
52
+ "twitterName": "mikesten",
53
+ "url": "http://www.thisismyjam.com/mikesten"
54
+ },
55
+ {
56
+ "apiUrl": "http://api.thisismyjam.com/1/phae.json",
57
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_a6e9a74638af72d19abe675ec71e0df8_128.jpg",
58
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_a6e9a74638af72d19abe675ec71e0df8_small.jpg",
59
+ "bio": "if you want i could be decent, you gotta let me know when.",
60
+ "followers": "http://api.thisismyjam.com/1/phae/followers.json",
61
+ "followersCount": 141,
62
+ "following": "http://api.thisismyjam.com/1/phae/following.json",
63
+ "followingCount": 75,
64
+ "fullname": "Frances",
65
+ "hasCurrentJam": true,
66
+ "jamCount": 18,
67
+ "joinedDate": "Fri, 30 Sep 2011 16:58:11 +0000",
68
+ "lastfmName": "Phae",
69
+ "name": "phae",
70
+ "representativeArtists": [
71
+ "We Are Trees",
72
+ "Nancy Wallace",
73
+ "Electric Light Orchestra",
74
+ "Crystal Castles"
75
+ ],
76
+ "twitterName": "phae",
77
+ "url": "http://www.thisismyjam.com/phae"
78
+ },
79
+ {
80
+ "apiUrl": "http://api.thisismyjam.com/1/aanand.json",
81
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_7e874b08a9f5d625e0dd8eee7d37b69c_128.gif",
82
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_7e874b08a9f5d625e0dd8eee7d37b69c_small.gif",
83
+ "bio": "\u25a1\uff3f\u30fe(\uff65_\uff65 )",
84
+ "facebookID": "505157627",
85
+ "followers": "http://api.thisismyjam.com/1/aanand/followers.json",
86
+ "followersCount": 164,
87
+ "following": "http://api.thisismyjam.com/1/aanand/following.json",
88
+ "followingCount": 57,
89
+ "fullname": "Aanand Prasad",
90
+ "hasCurrentJam": true,
91
+ "jamCount": 41,
92
+ "joinedDate": "Sun, 02 Oct 2011 15:02:11 +0000",
93
+ "name": "aanand",
94
+ "representativeArtists": [
95
+ "Electrelane",
96
+ "Shabazz Palaces",
97
+ "The Books feat. Jose Gonzalez",
98
+ "J Dilla"
99
+ ],
100
+ "twitterName": "aanand",
101
+ "url": "http://www.thisismyjam.com/aanand"
102
+ },
103
+ {
104
+ "apiUrl": "http://api.thisismyjam.com/1/brandonnn.json",
105
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_d7149bacdc75bf369b37af99add29e5e_128.jpg",
106
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_d7149bacdc75bf369b37af99add29e5e_small.jpg",
107
+ "bio": "chairman, Indie Games Festival: igf.com. my wild pure simple life: brandonnn.com. \u30ca\u30a4\u30b9\u30ac\u30a4\uff01 Coming soon, @VenusPatrol: http://kck.st/mYSiJZ",
108
+ "facebookID": "23932014",
109
+ "followers": "http://api.thisismyjam.com/1/brandonnn/followers.json",
110
+ "followersCount": 664,
111
+ "following": "http://api.thisismyjam.com/1/brandonnn/following.json",
112
+ "followingCount": 79,
113
+ "fullname": "Brandon Boyer",
114
+ "hasCurrentJam": true,
115
+ "jamCount": 13,
116
+ "joinedDate": "Sat, 12 Nov 2011 01:45:31 +0000",
117
+ "name": "brandonnn",
118
+ "representativeArtists": [
119
+ "Sister Nancy",
120
+ "Why?",
121
+ "Kid Koala",
122
+ "Black Moth Super Rainbow"
123
+ ],
124
+ "twitterName": "brandonnn",
125
+ "url": "http://www.thisismyjam.com/brandonnn"
126
+ },
127
+ {
128
+ "apiUrl": "http://api.thisismyjam.com/1/GameroSays.json",
129
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_a7a9a02fe1b8e4f327ecbda5dbe20808_128.jpg",
130
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_a7a9a02fe1b8e4f327ecbda5dbe20808_small.jpg",
131
+ "bio": "I'm essentially this generation's Robocop... except I'm still human and not a police officer.",
132
+ "facebookID": "3605174",
133
+ "followers": "http://api.thisismyjam.com/1/GameroSays/followers.json",
134
+ "followersCount": 81,
135
+ "following": "http://api.thisismyjam.com/1/GameroSays/following.json",
136
+ "followingCount": 37,
137
+ "fullname": "Jon Gamero",
138
+ "hasCurrentJam": true,
139
+ "jamCount": 73,
140
+ "joinedDate": "Sat, 10 Dec 2011 23:53:17 +0000",
141
+ "name": "GameroSays",
142
+ "representativeArtists": [
143
+ "Lucius",
144
+ "The Unicorns",
145
+ "The Replacements",
146
+ "Devo"
147
+ ],
148
+ "twitterName": "GameroSays",
149
+ "url": "http://www.thisismyjam.com/GameroSays"
150
+ },
151
+ {
152
+ "apiUrl": "http://api.thisismyjam.com/1/SmokeSignalsPDX.json",
153
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_105019fbd62fbdb493f7735ce40cb8b5_128.jpg",
154
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_105019fbd62fbdb493f7735ce40cb8b5_small.jpg",
155
+ "bio": "Agent at Smoke Signals Booking. I <3 live music.",
156
+ "facebookID": "635448326",
157
+ "followers": "http://api.thisismyjam.com/1/SmokeSignalsPDX/followers.json",
158
+ "followersCount": 284,
159
+ "following": "http://api.thisismyjam.com/1/SmokeSignalsPDX/following.json",
160
+ "followingCount": 98,
161
+ "fullname": "Smoke Signals",
162
+ "hasCurrentJam": true,
163
+ "jamCount": 32,
164
+ "joinedDate": "Mon, 10 Oct 2011 01:25:38 +0000",
165
+ "name": "SmokeSignalsPDX",
166
+ "representativeArtists": [
167
+ "Lou Reed",
168
+ "Vince Guaraldi Trio",
169
+ "Serge Gainsbourg",
170
+ "Harry Nilsson"
171
+ ],
172
+ "twitterName": "SmokeSignalsPDX",
173
+ "url": "http://www.thisismyjam.com/SmokeSignalsPDX"
174
+ },
175
+ {
176
+ "apiUrl": "http://api.thisismyjam.com/1/pjbond.json",
177
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_f530864dc8d1b3f24346e24f74534825_128.jpg",
178
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_f530864dc8d1b3f24346e24f74534825_small.jpg",
179
+ "bio": "Philip Bond started drawing comics in the early '80s out of a shared love of soul music, Postcard Records, Adam And The Ants and Socialist Worker Party politics",
180
+ "facebookID": "751810947",
181
+ "followers": "http://api.thisismyjam.com/1/pjbond/followers.json",
182
+ "followersCount": 126,
183
+ "following": "http://api.thisismyjam.com/1/pjbond/following.json",
184
+ "followingCount": 31,
185
+ "fullname": "Philip Bond",
186
+ "hasCurrentJam": true,
187
+ "jamCount": 27,
188
+ "joinedDate": "Tue, 29 Nov 2011 13:23:05 +0000",
189
+ "lastfmName": "pjbond",
190
+ "name": "pjbond",
191
+ "representativeArtists": [
192
+ "John Grant",
193
+ "AM & Shawn Lee",
194
+ "Electric Six",
195
+ "Kiki Dee"
196
+ ],
197
+ "twitterName": "pjbond",
198
+ "url": "http://www.thisismyjam.com/pjbond"
199
+ },
200
+ {
201
+ "apiUrl": "http://api.thisismyjam.com/1/juliaindelicate.json",
202
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_f501f9f6566ece03f579fdc03c27db5e_128.jpg",
203
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_f501f9f6566ece03f579fdc03c27db5e_small.jpg",
204
+ "bio": "Singer, Photographer, Writer, Craftster",
205
+ "facebookID": "534765279",
206
+ "followers": "http://api.thisismyjam.com/1/juliaindelicate/followers.json",
207
+ "followersCount": 129,
208
+ "following": "http://api.thisismyjam.com/1/juliaindelicate/following.json",
209
+ "followingCount": 34,
210
+ "fullname": "Julia Indelicate",
211
+ "hasCurrentJam": true,
212
+ "jamCount": 29,
213
+ "joinedDate": "Sun, 18 Dec 2011 23:36:24 +0000",
214
+ "name": "juliaindelicate",
215
+ "representativeArtists": [
216
+ "Charles Chaplin, Sung by Judy Garland",
217
+ "The Thlyds",
218
+ "The T.C.H.I.K.",
219
+ "Love"
220
+ ],
221
+ "twitterName": "juliaindelicate",
222
+ "url": "http://www.thisismyjam.com/juliaindelicate"
223
+ },
224
+ {
225
+ "apiUrl": "http://api.thisismyjam.com/1/solle.json",
226
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_d0d7daf5552114852dc80452d226a6c4_128.jpg",
227
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_d0d7daf5552114852dc80452d226a6c4_small.jpg",
228
+ "bio": "designs, writes, organises",
229
+ "followers": "http://api.thisismyjam.com/1/solle/followers.json",
230
+ "followersCount": 76,
231
+ "following": "http://api.thisismyjam.com/1/solle/following.json",
232
+ "followingCount": 40,
233
+ "fullname": "matthew solle",
234
+ "hasCurrentJam": true,
235
+ "jamCount": 35,
236
+ "joinedDate": "Fri, 18 Nov 2011 15:56:33 +0000",
237
+ "name": "solle",
238
+ "representativeArtists": [
239
+ "Joy Orbison",
240
+ "Monolake",
241
+ "Fuck Buttons",
242
+ "The Third Eye Foundation"
243
+ ],
244
+ "twitterName": "solle",
245
+ "url": "http://www.thisismyjam.com/solle"
246
+ },
247
+ {
248
+ "apiUrl": "http://api.thisismyjam.com/1/JamesWallis.json",
249
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_7e560a98ad7d0dd2ec217d603bf9cce5_128.jpg",
250
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_7e560a98ad7d0dd2ec217d603bf9cce5_small.jpg",
251
+ "bio": "The English know nothing about music, they just like the noise it makes.",
252
+ "facebookID": "714036936",
253
+ "followers": "http://api.thisismyjam.com/1/JamesWallis/followers.json",
254
+ "followersCount": 127,
255
+ "following": "http://api.thisismyjam.com/1/JamesWallis/following.json",
256
+ "followingCount": 94,
257
+ "fullname": "James Wallis",
258
+ "hasCurrentJam": true,
259
+ "jamCount": 126,
260
+ "joinedDate": "Tue, 06 Dec 2011 11:34:00 +0000",
261
+ "name": "JamesWallis",
262
+ "representativeArtists": [
263
+ "The Durutti Column",
264
+ "The Monkees",
265
+ "His Name Is Alive",
266
+ "Brian Eno"
267
+ ],
268
+ "twitterName": "JamesWallis",
269
+ "url": "http://www.thisismyjam.com/JamesWallis"
270
+ },
271
+ {
272
+ "apiUrl": "http://api.thisismyjam.com/1/solon.json",
273
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_746e1097f605bd9c6b7b7bc45a736db4_128.png",
274
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_746e1097f605bd9c6b7b7bc45a736db4_small.png",
275
+ "bio": "If it sounds good, it IS good. \u2014Duke Ellington",
276
+ "facebookID": "4300703",
277
+ "followers": "http://api.thisismyjam.com/1/solon/followers.json",
278
+ "followersCount": 928,
279
+ "following": "http://api.thisismyjam.com/1/solon/following.json",
280
+ "followingCount": 2476,
281
+ "fullname": "",
282
+ "hasCurrentJam": true,
283
+ "jamCount": 9,
284
+ "joinedDate": "Wed, 07 Mar 2012 15:01:44 +0000",
285
+ "name": "solon",
286
+ "representativeArtists": [
287
+ "Spoon",
288
+ "Jorge Ben",
289
+ "Owen Pallett",
290
+ "The Rolling Stones"
291
+ ],
292
+ "url": "http://www.thisismyjam.com/solon"
293
+ },
294
+ {
295
+ "apiUrl": "http://api.thisismyjam.com/1/Elwood.json",
296
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_f61a98a9ab132cbe632b6a68826059ea_128.jpg",
297
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_f61a98a9ab132cbe632b6a68826059ea_small.jpg",
298
+ "bio": "",
299
+ "followers": "http://api.thisismyjam.com/1/Elwood/followers.json",
300
+ "followersCount": 1560,
301
+ "following": "http://api.thisismyjam.com/1/Elwood/following.json",
302
+ "followingCount": 9,
303
+ "fullname": "Elijah Jordan",
304
+ "hasCurrentJam": true,
305
+ "jamCount": 39,
306
+ "joinedDate": "Thu, 09 Feb 2012 21:07:38 +0000",
307
+ "name": "Elwood",
308
+ "representativeArtists": [
309
+ "The Pentangle",
310
+ "A Certain Ratio",
311
+ "Jimmy Smith",
312
+ "Miles Davis"
313
+ ],
314
+ "twitterName": "woodelijah",
315
+ "url": "http://www.thisismyjam.com/Elwood"
316
+ },
317
+ {
318
+ "apiUrl": "http://api.thisismyjam.com/1/inthefade.json",
319
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_875c8d776ccd2e054e944d9048aee2d9_128.jpg",
320
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_875c8d776ccd2e054e944d9048aee2d9_small.jpg",
321
+ "bio": "I write about hockey (and other sports) here: http://americanmccarver.com\r\nLong Island. Freelance writer looking for work. ",
322
+ "facebookID": "500530060",
323
+ "followers": "http://api.thisismyjam.com/1/inthefade/followers.json",
324
+ "followersCount": 316,
325
+ "following": "http://api.thisismyjam.com/1/inthefade/following.json",
326
+ "followingCount": 171,
327
+ "fullname": "Michele Catalano",
328
+ "hasCurrentJam": true,
329
+ "jamCount": 130,
330
+ "joinedDate": "Tue, 13 Dec 2011 23:44:05 +0000",
331
+ "lastfmName": "destroy_oh_boy",
332
+ "name": "inthefade",
333
+ "representativeArtists": [
334
+ "Queens of the Stone Age",
335
+ "Fugazi",
336
+ "M83",
337
+ "LL Cool J"
338
+ ],
339
+ "twitterName": "inthefade",
340
+ "url": "http://www.thisismyjam.com/inthefade"
341
+ },
342
+ {
343
+ "apiUrl": "http://api.thisismyjam.com/1/flaneur.json",
344
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_328ddb39bef92de146d07cc2589fd246_128.jpg",
345
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_328ddb39bef92de146d07cc2589fd246_small.jpg",
346
+ "bio": "A detached pedestrian observer of a metropolis. These are the songs I have on 1-track repeat. Working to make this the best possible home for your jams; lots to do yet! Glad you're here.",
347
+ "facebookID": "500050315",
348
+ "followers": "http://api.thisismyjam.com/1/flaneur/followers.json",
349
+ "followersCount": 2760,
350
+ "following": "http://api.thisismyjam.com/1/flaneur/following.json",
351
+ "followingCount": 532,
352
+ "fullname": "Matthew Ogle",
353
+ "hasCurrentJam": true,
354
+ "jamCount": 78,
355
+ "joinedDate": "Fri, 26 Aug 2011 15:08:23 +0000",
356
+ "lastfmName": "flaneur",
357
+ "name": "flaneur",
358
+ "representativeArtists": [
359
+ "The Stone Poneys",
360
+ "Broken Social Scene",
361
+ "Neil Young",
362
+ "Emily Haines & The Soft Skeleton"
363
+ ],
364
+ "twitterName": "flaneur",
365
+ "url": "http://www.thisismyjam.com/flaneur"
366
+ },
367
+ {
368
+ "apiUrl": "http://api.thisismyjam.com/1/tjehan.json",
369
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_947516ca4b6333c59ed1f35bc91663cb_128.png",
370
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_947516ca4b6333c59ed1f35bc91663cb_small.png",
371
+ "bio": "I teach machines to listen to, and make music.",
372
+ "followers": "http://api.thisismyjam.com/1/tjehan/followers.json",
373
+ "followersCount": 339,
374
+ "following": "http://api.thisismyjam.com/1/tjehan/following.json",
375
+ "followingCount": 73,
376
+ "fullname": "Tristan Jehan",
377
+ "hasCurrentJam": true,
378
+ "jamCount": 49,
379
+ "joinedDate": "Fri, 02 Sep 2011 13:05:12 +0000",
380
+ "lastfmName": "TeeJayMarkII",
381
+ "name": "tjehan",
382
+ "representativeArtists": [
383
+ "Bill Withers",
384
+ "Serge Gainsbourg",
385
+ "Idris Muhammad",
386
+ "Emilie Simon"
387
+ ],
388
+ "twitterName": "tjehan",
389
+ "url": "http://www.thisismyjam.com/tjehan"
390
+ },
391
+ {
392
+ "apiUrl": "http://api.thisismyjam.com/1/elisolo.json",
393
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_3ce373657ff19f2d01052e226cb4a7eb_128.png",
394
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_3ce373657ff19f2d01052e226cb4a7eb_small.png",
395
+ "bio": "",
396
+ "followers": "http://api.thisismyjam.com/1/elisolo/followers.json",
397
+ "followersCount": 330,
398
+ "following": "http://api.thisismyjam.com/1/elisolo/following.json",
399
+ "followingCount": 66,
400
+ "fullname": "Elias",
401
+ "hasCurrentJam": true,
402
+ "jamCount": 5,
403
+ "joinedDate": "Wed, 14 Mar 2012 17:31:48 +0000",
404
+ "name": "elisolo",
405
+ "representativeArtists": [
406
+ "The Who",
407
+ "Guns N Roses",
408
+ "Grand Funk Railroad",
409
+ "The Rolling Stones"
410
+ ],
411
+ "url": "http://www.thisismyjam.com/elisolo"
412
+ },
413
+ {
414
+ "apiUrl": "http://api.thisismyjam.com/1/shitsterbauer.json",
415
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_2afa98ce8527c9a760bd5503b84140f5_128.jpg",
416
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_2afa98ce8527c9a760bd5503b84140f5_small.jpg",
417
+ "bio": "I'm a misanthropic vagabond. I love black music. My jams are archived at theseweremyjams.tumblr.com.",
418
+ "facebookID": "100003462309410",
419
+ "followers": "http://api.thisismyjam.com/1/shitsterbauer/followers.json",
420
+ "followersCount": 574,
421
+ "following": "http://api.thisismyjam.com/1/shitsterbauer/following.json",
422
+ "followingCount": 305,
423
+ "fullname": "Shit Shitsterbauer",
424
+ "hasCurrentJam": true,
425
+ "jamCount": 17,
426
+ "joinedDate": "Fri, 10 Feb 2012 14:28:06 +0000",
427
+ "lastfmName": "Shitsterbauer",
428
+ "name": "shitsterbauer",
429
+ "representativeArtists": [
430
+ "Titus Turner",
431
+ "Danny Barker with The Baby Dodds Trio",
432
+ "Bill Hicks",
433
+ "John Coltrane"
434
+ ],
435
+ "twitterName": "Shitsterbauer",
436
+ "url": "http://www.thisismyjam.com/shitsterbauer"
437
+ },
438
+ {
439
+ "apiUrl": "http://api.thisismyjam.com/1/billbrewster.json",
440
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_a0723df3a866765d3d513df06b198dcd_128.jpg",
441
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_a0723df3a866765d3d513df06b198dcd_small.jpg",
442
+ "bio": "I am Bill Brewster, record collector, writer, DJ, bon vivant, eminence grise, bon viveur, charg\u00e9 d'affaires, idiot savant, idiot.",
443
+ "followers": "http://api.thisismyjam.com/1/billbrewster/followers.json",
444
+ "followersCount": 231,
445
+ "following": "http://api.thisismyjam.com/1/billbrewster/following.json",
446
+ "followingCount": 13,
447
+ "fullname": "Bill Brewster",
448
+ "hasCurrentJam": true,
449
+ "jamCount": 19,
450
+ "joinedDate": "Wed, 21 Dec 2011 14:22:05 +0000",
451
+ "name": "billbrewster",
452
+ "representativeArtists": [
453
+ "Macho",
454
+ "Dr John",
455
+ "Tasha Thomas",
456
+ "Jamiroquai"
457
+ ],
458
+ "twitterName": "djhistory",
459
+ "url": "http://www.thisismyjam.com/billbrewster"
460
+ },
461
+ {
462
+ "apiUrl": "http://api.thisismyjam.com/1/jullicanif.json",
463
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_55ca738407485bf62850f08d20dc7825_128.jpg",
464
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_55ca738407485bf62850f08d20dc7825_small.jpg",
465
+ "bio": "student, movies & books lover",
466
+ "followers": "http://api.thisismyjam.com/1/jullicanif/followers.json",
467
+ "followersCount": 76,
468
+ "following": "http://api.thisismyjam.com/1/jullicanif/following.json",
469
+ "followingCount": 28,
470
+ "fullname": "Julia",
471
+ "hasCurrentJam": true,
472
+ "jamCount": 17,
473
+ "joinedDate": "Mon, 09 Jan 2012 11:14:41 +0000",
474
+ "lastfmName": "jullicanif",
475
+ "name": "jullicanif",
476
+ "representativeArtists": [
477
+ "Adele",
478
+ "Kavinsky & Lovefoxxx",
479
+ "Melanie",
480
+ "Abel Korzeniowski"
481
+ ],
482
+ "url": "http://www.thisismyjam.com/jullicanif"
483
+ },
484
+ {
485
+ "apiUrl": "http://api.thisismyjam.com/1/metroidbaby.json",
486
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_1cd2927b4a5721bd3d1a136e23feedf1_128.png",
487
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_1cd2927b4a5721bd3d1a136e23feedf1_small.png",
488
+ "bio": "WARNING: I listen to NSync unironically.",
489
+ "followers": "http://api.thisismyjam.com/1/metroidbaby/followers.json",
490
+ "followersCount": 85,
491
+ "following": "http://api.thisismyjam.com/1/metroidbaby/following.json",
492
+ "followingCount": 74,
493
+ "fullname": "Metroid Baby",
494
+ "hasCurrentJam": true,
495
+ "jamCount": 44,
496
+ "joinedDate": "Mon, 28 Nov 2011 20:17:29 +0000",
497
+ "name": "metroidbaby",
498
+ "representativeArtists": [
499
+ "David Bowie",
500
+ "Florence + The Machine",
501
+ "Nelly",
502
+ "Violent Femmes"
503
+ ],
504
+ "twitterName": "metroidbaby",
505
+ "url": "http://www.thisismyjam.com/metroidbaby"
506
+ },
507
+ {
508
+ "apiUrl": "http://api.thisismyjam.com/1/matt_speaks.json",
509
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_b2ce6d7bfd5146b035f445ea9a2240d1_128.jpg",
510
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_b2ce6d7bfd5146b035f445ea9a2240d1_small.jpg",
511
+ "bio": "Designer @IDEO\r\n \r\nMy past jams on Spotify: http://open.spotify.com/user/storiesandmusic/playlist/71GYUOhRVU1wXmZzPUczPp",
512
+ "followers": "http://api.thisismyjam.com/1/matt_speaks/followers.json",
513
+ "followersCount": 105,
514
+ "following": "http://api.thisismyjam.com/1/matt_speaks/following.json",
515
+ "followingCount": 40,
516
+ "fullname": "Matt Cooper",
517
+ "hasCurrentJam": true,
518
+ "jamCount": 36,
519
+ "joinedDate": "Sat, 08 Oct 2011 16:28:27 +0000",
520
+ "name": "matt_speaks",
521
+ "representativeArtists": [
522
+ "Spinal Tap",
523
+ "Japan",
524
+ "Toddla T",
525
+ "George Benson"
526
+ ],
527
+ "twitterName": "matt_speaks",
528
+ "url": "http://www.thisismyjam.com/matt_speaks"
529
+ },
530
+ {
531
+ "apiUrl": "http://api.thisismyjam.com/1/maura.json",
532
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_dfd032e334f1e1e6742764ef40adcf2e_128.jpg",
533
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_dfd032e334f1e1e6742764ef40adcf2e_small.jpg",
534
+ "bio": "i fling tootsie pops all over the stadium.",
535
+ "facebookID": "2416229",
536
+ "followers": "http://api.thisismyjam.com/1/maura/followers.json",
537
+ "followersCount": 454,
538
+ "following": "http://api.thisismyjam.com/1/maura/following.json",
539
+ "followingCount": 113,
540
+ "fullname": "Maura Johnston",
541
+ "hasCurrentJam": true,
542
+ "jamCount": 25,
543
+ "joinedDate": "Thu, 24 Nov 2011 14:25:01 +0000",
544
+ "name": "maura",
545
+ "representativeArtists": [
546
+ "Beth Jeans Houghton",
547
+ "Kindness",
548
+ "Superchunk",
549
+ "Champale"
550
+ ],
551
+ "twitterName": "maura",
552
+ "url": "http://www.thisismyjam.com/maura"
553
+ },
554
+ {
555
+ "apiUrl": "http://api.thisismyjam.com/1/DobbyWooster.json",
556
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_1e2f625a8d01532d7502f455cb56e6f9_128.jpg",
557
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_1e2f625a8d01532d7502f455cb56e6f9_small.jpg",
558
+ "bio": "",
559
+ "followers": "http://api.thisismyjam.com/1/DobbyWooster/followers.json",
560
+ "followersCount": 153,
561
+ "following": "http://api.thisismyjam.com/1/DobbyWooster/following.json",
562
+ "followingCount": 248,
563
+ "fullname": "Jonathan G Smith",
564
+ "hasCurrentJam": true,
565
+ "jamCount": 40,
566
+ "joinedDate": "Tue, 24 Jan 2012 08:02:21 +0000",
567
+ "name": "DobbyWooster",
568
+ "representativeArtists": [
569
+ "Veronica Falls",
570
+ "Beirut",
571
+ "The Strange Boys",
572
+ "Modest Mouse"
573
+ ],
574
+ "twitterName": "DobbyWooster",
575
+ "url": "http://www.thisismyjam.com/DobbyWooster"
576
+ },
577
+ {
578
+ "apiUrl": "http://api.thisismyjam.com/1/RellyAB.json",
579
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_824700620f5029f0bfaff7aa78673733_128.jpg",
580
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_824700620f5029f0bfaff7aa78673733_small.jpg",
581
+ "bio": "Writer by day. Asleep by night. Unless the kids keep me up. Then I'm asleep by day.",
582
+ "followers": "http://api.thisismyjam.com/1/RellyAB/followers.json",
583
+ "followersCount": 313,
584
+ "following": "http://api.thisismyjam.com/1/RellyAB/following.json",
585
+ "followingCount": 144,
586
+ "fullname": "Relly",
587
+ "hasCurrentJam": true,
588
+ "jamCount": 28,
589
+ "joinedDate": "Fri, 18 Nov 2011 10:28:22 +0000",
590
+ "name": "RellyAB",
591
+ "representativeArtists": [
592
+ "The Waitresses",
593
+ "Tim Minchin",
594
+ "The Postal Service",
595
+ "Ben Folds Five"
596
+ ],
597
+ "twitterName": "RellyAB",
598
+ "url": "http://www.thisismyjam.com/RellyAB"
599
+ },
600
+ {
601
+ "apiUrl": "http://api.thisismyjam.com/1/ATPFestival.json",
602
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_707e7b64049c909119d074b640a674ac_128.jpg",
603
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_707e7b64049c909119d074b640a674ac_small.jpg",
604
+ "bio": "All Tomorrow's Parties: Festivals/Gigs/ATP Recordings. More info at http://www.atpfestival.com. We'll be posting jams from artists on our label or who are performing at our events.",
605
+ "followers": "http://api.thisismyjam.com/1/ATPFestival/followers.json",
606
+ "followersCount": 2864,
607
+ "following": "http://api.thisismyjam.com/1/ATPFestival/following.json",
608
+ "followingCount": 264,
609
+ "fullname": "ATP Festival",
610
+ "hasCurrentJam": true,
611
+ "jamCount": 32,
612
+ "joinedDate": "Tue, 17 Jan 2012 01:27:30 +0000",
613
+ "name": "ATPFestival",
614
+ "representativeArtists": [
615
+ "Sleepy Sun",
616
+ "I Break Horses",
617
+ "Sharon Van Etten",
618
+ "Diagrams"
619
+ ],
620
+ "twitterName": "atpfestival",
621
+ "url": "http://www.thisismyjam.com/ATPFestival"
622
+ },
623
+ {
624
+ "apiUrl": "http://api.thisismyjam.com/1/tinysubversions.json",
625
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_5f06e368caaefaca0d358cc339a0c020_128.gif",
626
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_5f06e368caaefaca0d358cc339a0c020_small.gif",
627
+ "bio": "I'm a game developer. I work at Bocoup on HTML5 stuff. I make things and write a lot on my blog.",
628
+ "facebookID": "29101448",
629
+ "followers": "http://api.thisismyjam.com/1/tinysubversions/followers.json",
630
+ "followersCount": 141,
631
+ "following": "http://api.thisismyjam.com/1/tinysubversions/following.json",
632
+ "followingCount": 113,
633
+ "fullname": "Darius Kazemi",
634
+ "hasCurrentJam": true,
635
+ "jamCount": 35,
636
+ "joinedDate": "Fri, 18 Nov 2011 18:36:33 +0000",
637
+ "name": "tinysubversions",
638
+ "representativeArtists": [
639
+ "Billy Brooks",
640
+ "The Pharcyde",
641
+ "John Vanderslice",
642
+ "New Order"
643
+ ],
644
+ "twitterName": "tinysubversions",
645
+ "url": "http://www.thisismyjam.com/tinysubversions"
646
+ },
647
+ {
648
+ "apiUrl": "http://api.thisismyjam.com/1/kellydeal.json",
649
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_855368fc650bec06879576eff902d9cd_128.jpg",
650
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_855368fc650bec06879576eff902d9cd_small.jpg",
651
+ "bio": "No. Sorry. I'm not kellEy deal. Not a Breeder at all. No kids. No band. ARE YOU HAPPY NOW. ",
652
+ "followers": "http://api.thisismyjam.com/1/kellydeal/followers.json",
653
+ "followersCount": 131,
654
+ "following": "http://api.thisismyjam.com/1/kellydeal/following.json",
655
+ "followingCount": 48,
656
+ "fullname": "kellydeal",
657
+ "hasCurrentJam": true,
658
+ "jamCount": 40,
659
+ "joinedDate": "Sat, 24 Dec 2011 22:58:12 +0000",
660
+ "name": "kellydeal",
661
+ "representativeArtists": [
662
+ "The National",
663
+ "Talking Heads",
664
+ "The Spinners",
665
+ "Seu Jorge"
666
+ ],
667
+ "twitterName": "kellydeal",
668
+ "url": "http://www.thisismyjam.com/kellydeal"
669
+ },
670
+ {
671
+ "apiUrl": "http://api.thisismyjam.com/1/rv.json",
672
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_c39927be0d891cf9919ab53fa971bd0a_128.jpg",
673
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_c39927be0d891cf9919ab53fa971bd0a_small.jpg",
674
+ "bio": "http://flavors.me/ruiventura",
675
+ "followers": "http://api.thisismyjam.com/1/rv/followers.json",
676
+ "followersCount": 120,
677
+ "following": "http://api.thisismyjam.com/1/rv/following.json",
678
+ "followingCount": 196,
679
+ "fullname": "rui ventura",
680
+ "hasCurrentJam": true,
681
+ "jamCount": 21,
682
+ "joinedDate": "Wed, 29 Feb 2012 12:49:40 +0000",
683
+ "name": "rv",
684
+ "representativeArtists": [
685
+ "Chromatics",
686
+ "Motorama",
687
+ "The Breeders",
688
+ "Arcade Fire"
689
+ ],
690
+ "url": "http://www.thisismyjam.com/rv"
691
+ },
692
+ {
693
+ "apiUrl": "http://api.thisismyjam.com/1/Jackcantsleep1.json",
694
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_8d0989e91911690e6dae3bb1fa3bc909_128.jpg",
695
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_8d0989e91911690e6dae3bb1fa3bc909_small.jpg",
696
+ "bio": "Curmudgeon ",
697
+ "facebookID": "730930263",
698
+ "followers": "http://api.thisismyjam.com/1/Jackcantsleep1/followers.json",
699
+ "followersCount": 220,
700
+ "following": "http://api.thisismyjam.com/1/Jackcantsleep1/following.json",
701
+ "followingCount": 63,
702
+ "fullname": "Jackcantsleep",
703
+ "hasCurrentJam": true,
704
+ "jamCount": 72,
705
+ "joinedDate": "Fri, 07 Oct 2011 19:08:58 +0000",
706
+ "name": "Jackcantsleep1",
707
+ "representativeArtists": [
708
+ "They Might Be Giants",
709
+ "The Pogues",
710
+ "Tom Waits",
711
+ "Bruce Springsteen"
712
+ ],
713
+ "twitterName": "Jackcantsleep1",
714
+ "url": "http://www.thisismyjam.com/Jackcantsleep1"
715
+ },
716
+ {
717
+ "apiUrl": "http://api.thisismyjam.com/1/felix_cohen.json",
718
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_dfed4592b5987fcdb3995b2b6fe56a38_128.jpg",
719
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_dfed4592b5987fcdb3995b2b6fe56a38_small.jpg",
720
+ "bio": "a lengthy description of the doings of fops",
721
+ "facebookID": "204503443",
722
+ "followers": "http://api.thisismyjam.com/1/felix_cohen/followers.json",
723
+ "followersCount": 189,
724
+ "following": "http://api.thisismyjam.com/1/felix_cohen/following.json",
725
+ "followingCount": 106,
726
+ "fullname": "Felix Cohen",
727
+ "hasCurrentJam": true,
728
+ "jamCount": 65,
729
+ "joinedDate": "Fri, 23 Sep 2011 15:29:15 +0000",
730
+ "name": "felix_cohen",
731
+ "representativeArtists": [
732
+ "Wick-it the Instigator",
733
+ "Astrud Gilberto",
734
+ "Nightmares on Wax",
735
+ "Barefoot"
736
+ ],
737
+ "twitterName": "felix_cohen",
738
+ "url": "http://www.thisismyjam.com/felix_cohen"
739
+ },
740
+ {
741
+ "apiUrl": "http://api.thisismyjam.com/1/naxuu.json",
742
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_bd31f39d411eec1b57e7eb8f1889befc_128.jpg",
743
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_bd31f39d411eec1b57e7eb8f1889befc_small.jpg",
744
+ "bio": "treecathedrals.com\r\nvaporlanes.bandcamp.com",
745
+ "followers": "http://api.thisismyjam.com/1/naxuu/followers.json",
746
+ "followersCount": 104,
747
+ "following": "http://api.thisismyjam.com/1/naxuu/following.json",
748
+ "followingCount": 104,
749
+ "fullname": "naxuu",
750
+ "hasCurrentJam": true,
751
+ "jamCount": 35,
752
+ "joinedDate": "Tue, 20 Dec 2011 03:18:25 +0000",
753
+ "name": "naxuu",
754
+ "representativeArtists": [
755
+ "Mount Eerie",
756
+ "This Mortal Coil",
757
+ "Medicine",
758
+ "Julia Holter"
759
+ ],
760
+ "twitterName": "naxuu",
761
+ "url": "http://www.thisismyjam.com/naxuu"
762
+ },
763
+ {
764
+ "apiUrl": "http://api.thisismyjam.com/1/stx.json",
765
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_c04ae6f24d5fe12a00dc8b419cdc4bc4_128.jpg",
766
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_c04ae6f24d5fe12a00dc8b419cdc4bc4_small.jpg",
767
+ "bio": "Oh god how did this get in here I am not good with computers.",
768
+ "facebookID": "552289824",
769
+ "followers": "http://api.thisismyjam.com/1/stx/followers.json",
770
+ "followersCount": 86,
771
+ "following": "http://api.thisismyjam.com/1/stx/following.json",
772
+ "followingCount": 68,
773
+ "fullname": "Stewart Nolan",
774
+ "hasCurrentJam": true,
775
+ "jamCount": 43,
776
+ "joinedDate": "Tue, 22 Nov 2011 22:12:58 +0000",
777
+ "lastfmName": "stx",
778
+ "name": "stx",
779
+ "representativeArtists": [
780
+ "\u00b5-Ziq",
781
+ "Ray Charles",
782
+ "Dick Hyman",
783
+ "Fresh 4"
784
+ ],
785
+ "twitterName": "stx",
786
+ "url": "http://www.thisismyjam.com/stx"
787
+ },
788
+ {
789
+ "apiUrl": "http://api.thisismyjam.com/1/TheOuterChurch.json",
790
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_e68ab4de7dc4d76428d3d7ed8c878af2_128.jpg",
791
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_e68ab4de7dc4d76428d3d7ed8c878af2_small.jpg",
792
+ "bio": "omn\u0338i\u0315a \u0489ex\u0336eu\u0327nt\u035e \u0489in m\u031bys\u0163eri\u0337u\u0361m\u035f",
793
+ "facebookID": "661214466",
794
+ "followers": "http://api.thisismyjam.com/1/TheOuterChurch/followers.json",
795
+ "followersCount": 124,
796
+ "following": "http://api.thisismyjam.com/1/TheOuterChurch/following.json",
797
+ "followingCount": 39,
798
+ "fullname": "Joseph Stannard",
799
+ "hasCurrentJam": true,
800
+ "jamCount": 55,
801
+ "joinedDate": "Fri, 16 Dec 2011 18:18:16 +0000",
802
+ "name": "TheOuterChurch",
803
+ "representativeArtists": [
804
+ "Public Enemy",
805
+ "Aerosmith",
806
+ "Imbogodom",
807
+ "Sparks"
808
+ ],
809
+ "twitterName": "TheOuterChurch",
810
+ "url": "http://www.thisismyjam.com/TheOuterChurch"
811
+ },
812
+ {
813
+ "apiUrl": "http://api.thisismyjam.com/1/laurenlaverne.json",
814
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_9f7c5cfa91ab6cc3849b78b0ebbdc7c3_128.jpg",
815
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_9f7c5cfa91ab6cc3849b78b0ebbdc7c3_small.jpg",
816
+ "bio": "BBC 6Music mornings DJ, TV lady, writer of stuff. This is my (occasionally too) personal Twitter account.",
817
+ "followers": "http://api.thisismyjam.com/1/laurenlaverne/followers.json",
818
+ "followersCount": 1412,
819
+ "following": "http://api.thisismyjam.com/1/laurenlaverne/following.json",
820
+ "followingCount": 59,
821
+ "fullname": "Lauren Laverne",
822
+ "hasCurrentJam": true,
823
+ "jamCount": 8,
824
+ "joinedDate": "Wed, 04 Apr 2012 09:28:34 +0000",
825
+ "name": "laurenlaverne",
826
+ "representativeArtists": [
827
+ "My Best Fiend",
828
+ "POLI\u00c7A",
829
+ "Paul Avgerinos",
830
+ "Those Darlins"
831
+ ],
832
+ "twitterName": "laurenlaverne",
833
+ "url": "http://www.thisismyjam.com/laurenlaverne"
834
+ },
835
+ {
836
+ "apiUrl": "http://api.thisismyjam.com/1/ssolo985.json",
837
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_b2a4623ce8609a2f5a5f387c056b8e2d_128.jpg",
838
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_b2a4623ce8609a2f5a5f387c056b8e2d_small.jpg",
839
+ "bio": "",
840
+ "followers": "http://api.thisismyjam.com/1/ssolo985/followers.json",
841
+ "followersCount": 791,
842
+ "following": "http://api.thisismyjam.com/1/ssolo985/following.json",
843
+ "followingCount": 211,
844
+ "fullname": "",
845
+ "hasCurrentJam": true,
846
+ "jamCount": 11,
847
+ "joinedDate": "Fri, 10 Feb 2012 04:02:11 +0000",
848
+ "name": "ssolo985",
849
+ "representativeArtists": [
850
+ "Sidney Bechet",
851
+ "Mamie Perry",
852
+ "John Cooper Clarke",
853
+ "Blind Willie Johnson"
854
+ ],
855
+ "url": "http://www.thisismyjam.com/ssolo985"
856
+ },
857
+ {
858
+ "apiUrl": "http://api.thisismyjam.com/1/guntrip.json",
859
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_91b71bc020c537491cd60fb7d6e6635c_128.jpg",
860
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_91b71bc020c537491cd60fb7d6e6635c_small.jpg",
861
+ "bio": "rocking the mature student thing. studying cities. has a radio show [http://mmitb.tumblr.com] on Fresh Air {http://freshair.org.uk}",
862
+ "facebookID": "635662196",
863
+ "followers": "http://api.thisismyjam.com/1/guntrip/followers.json",
864
+ "followersCount": 108,
865
+ "following": "http://api.thisismyjam.com/1/guntrip/following.json",
866
+ "followingCount": 77,
867
+ "fullname": "Daniel Fawcett",
868
+ "hasCurrentJam": true,
869
+ "jamCount": 25,
870
+ "joinedDate": "Thu, 01 Dec 2011 11:01:05 +0000",
871
+ "lastfmName": "guntrip",
872
+ "name": "guntrip",
873
+ "representativeArtists": [
874
+ "The New Pornographers",
875
+ "Thee Oh Sees",
876
+ "K-Holes",
877
+ "Aesop Rock"
878
+ ],
879
+ "twitterName": "danielguntrip",
880
+ "url": "http://www.thisismyjam.com/guntrip"
881
+ },
882
+ {
883
+ "apiUrl": "http://api.thisismyjam.com/1/QMagazine.json",
884
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_9c7e2289d99eb31a75b8215b56015aab_128.jpg",
885
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_9c7e2289d99eb31a75b8215b56015aab_small.jpg",
886
+ "bio": "Q Magazine - The rest is just noise",
887
+ "followers": "http://api.thisismyjam.com/1/QMagazine/followers.json",
888
+ "followersCount": 367,
889
+ "following": "http://api.thisismyjam.com/1/QMagazine/following.json",
890
+ "followingCount": 34,
891
+ "fullname": "Q Magazine",
892
+ "hasCurrentJam": true,
893
+ "jamCount": 57,
894
+ "joinedDate": "Tue, 07 Feb 2012 15:55:25 +0000",
895
+ "name": "QMagazine",
896
+ "representativeArtists": [
897
+ "Rufus Wainwright",
898
+ "Arctic Monkeys",
899
+ "Citizens",
900
+ "Beach House"
901
+ ],
902
+ "twitterName": "QMagazine",
903
+ "url": "http://www.thisismyjam.com/QMagazine"
904
+ },
905
+ {
906
+ "apiUrl": "http://api.thisismyjam.com/1/Gunner.json",
907
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_31dc245fcbd2fbe377013b497594235b_128.png",
908
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_31dc245fcbd2fbe377013b497594235b_small.png",
909
+ "bio": "",
910
+ "followers": "http://api.thisismyjam.com/1/Gunner/followers.json",
911
+ "followersCount": 512,
912
+ "following": "http://api.thisismyjam.com/1/Gunner/following.json",
913
+ "followingCount": 102,
914
+ "fullname": "",
915
+ "hasCurrentJam": true,
916
+ "jamCount": 10,
917
+ "joinedDate": "Thu, 16 Feb 2012 18:53:34 +0000",
918
+ "name": "Gunner",
919
+ "representativeArtists": [
920
+ "Gid Tanner & His Skillet Lickers",
921
+ "Hank Snow",
922
+ "Charley Patton",
923
+ "Bo Carter"
924
+ ],
925
+ "url": "http://www.thisismyjam.com/Gunner"
926
+ },
927
+ {
928
+ "apiUrl": "http://api.thisismyjam.com/1/Clarkle.json",
929
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_617b8e3cf8189e1d1348609cfddf9ab9_128.jpg",
930
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_617b8e3cf8189e1d1348609cfddf9ab9_small.jpg",
931
+ "bio": "Magic... Whole lotta magic.",
932
+ "followers": "http://api.thisismyjam.com/1/Clarkle/followers.json",
933
+ "followersCount": 115,
934
+ "following": "http://api.thisismyjam.com/1/Clarkle/following.json",
935
+ "followingCount": 34,
936
+ "fullname": "Thought Bubble",
937
+ "hasCurrentJam": true,
938
+ "jamCount": 100,
939
+ "joinedDate": "Tue, 29 Nov 2011 09:55:01 +0000",
940
+ "name": "Clarkle",
941
+ "representativeArtists": [
942
+ "College",
943
+ "Pulp",
944
+ "Led Zeppelin",
945
+ "Nouvelle Vague"
946
+ ],
947
+ "twitterName": "ThoughtBubbleUK",
948
+ "url": "http://www.thisismyjam.com/Clarkle"
949
+ },
950
+ {
951
+ "apiUrl": "http://api.thisismyjam.com/1/tomcaruana.json",
952
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_56e04ec52fa2b058d6206b9006bceb84_128.jpg",
953
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_56e04ec52fa2b058d6206b9006bceb84_small.jpg",
954
+ "bio": "a variety of musical possibilites",
955
+ "facebookID": "887230044",
956
+ "followers": "http://api.thisismyjam.com/1/tomcaruana/followers.json",
957
+ "followersCount": 77,
958
+ "following": "http://api.thisismyjam.com/1/tomcaruana/following.json",
959
+ "followingCount": 25,
960
+ "fullname": "Tom Caruana",
961
+ "hasCurrentJam": true,
962
+ "jamCount": 17,
963
+ "joinedDate": "Mon, 05 Mar 2012 11:04:10 +0000",
964
+ "name": "tomcaruana",
965
+ "representativeArtists": [
966
+ "The Mills Brothers",
967
+ "Flute in a quarry",
968
+ "Lee Moses",
969
+ "Lee Dorsey"
970
+ ],
971
+ "twitterName": "tomcaruana",
972
+ "url": "http://www.thisismyjam.com/tomcaruana"
973
+ },
974
+ {
975
+ "apiUrl": "http://api.thisismyjam.com/1/dominikus.json",
976
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_bf7a1b7495957219b9f056ab2ab9f9d5_128.gif",
977
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_bf7a1b7495957219b9f056ab2ab9f9d5_small.gif",
978
+ "bio": "personal visualization researcher (currently university of calgary) by day, sleeping by night.\r\navid advocate for animated gifs.",
979
+ "facebookID": "761599879",
980
+ "followers": "http://api.thisismyjam.com/1/dominikus/followers.json",
981
+ "followersCount": 250,
982
+ "following": "http://api.thisismyjam.com/1/dominikus/following.json",
983
+ "followingCount": 712,
984
+ "fullname": "Dominikus Baur",
985
+ "hasCurrentJam": true,
986
+ "jamCount": 26,
987
+ "joinedDate": "Thu, 17 Nov 2011 22:31:51 +0000",
988
+ "lastfmName": "mino2000",
989
+ "name": "dominikus",
990
+ "representativeArtists": [
991
+ "Can",
992
+ "The Flaming Lips",
993
+ "Death Cab for Cutie",
994
+ "Kishi Bashi"
995
+ ],
996
+ "twitterName": "dominikus",
997
+ "url": "http://www.thisismyjam.com/dominikus"
998
+ },
999
+ {
1000
+ "apiUrl": "http://api.thisismyjam.com/1/brokenbottleboy.json",
1001
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_38b7df39052ded2843ada1341c2f9adc_128.jpg",
1002
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_38b7df39052ded2843ada1341c2f9adc_small.jpg",
1003
+ "bio": "Pale writer type for hire. Tweets a fair bit about TV. ",
1004
+ "followers": "http://api.thisismyjam.com/1/brokenbottleboy/followers.json",
1005
+ "followersCount": 111,
1006
+ "following": "http://api.thisismyjam.com/1/brokenbottleboy/following.json",
1007
+ "followingCount": 36,
1008
+ "fullname": "Mic Wright",
1009
+ "hasCurrentJam": true,
1010
+ "jamCount": 64,
1011
+ "joinedDate": "Thu, 08 Dec 2011 08:32:12 +0000",
1012
+ "name": "brokenbottleboy",
1013
+ "representativeArtists": [
1014
+ "Azealia Banks vs Sky Ferreira",
1015
+ "Detroit Grand Pubahs",
1016
+ "Eminem",
1017
+ "Big Black"
1018
+ ],
1019
+ "twitterName": "brokenbottleboy",
1020
+ "url": "http://www.thisismyjam.com/brokenbottleboy"
1021
+ },
1022
+ {
1023
+ "apiUrl": "http://api.thisismyjam.com/1/GregCgull.json",
1024
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_8781805ddbe911afb0fcc7b3ad9f5581_128.jpg",
1025
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_8781805ddbe911afb0fcc7b3ad9f5581_small.jpg",
1026
+ "bio": "Lover of design, music, comics and internets.",
1027
+ "facebookID": "4806701",
1028
+ "followers": "http://api.thisismyjam.com/1/GregCgull/followers.json",
1029
+ "followersCount": 76,
1030
+ "following": "http://api.thisismyjam.com/1/GregCgull/following.json",
1031
+ "followingCount": 22,
1032
+ "fullname": "Gregory Siegal",
1033
+ "hasCurrentJam": true,
1034
+ "jamCount": 46,
1035
+ "joinedDate": "Wed, 04 Jan 2012 18:46:14 +0000",
1036
+ "name": "GregCgull",
1037
+ "representativeArtists": [
1038
+ "Hot Chip",
1039
+ "Totally Enormous Extinct Dinosaurs",
1040
+ "Summer Camp",
1041
+ "Shindu"
1042
+ ],
1043
+ "twitterName": "GregSiegal",
1044
+ "url": "http://www.thisismyjam.com/GregCgull"
1045
+ },
1046
+ {
1047
+ "apiUrl": "http://api.thisismyjam.com/1/theremina.json",
1048
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_e2b4959f6f53a649e91a74cd6020bab3_128.jpg",
1049
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_e2b4959f6f53a649e91a74cd6020bab3_small.jpg",
1050
+ "bio": "I make music and Coilhouse Magazine.",
1051
+ "facebookID": "1506137565",
1052
+ "followers": "http://api.thisismyjam.com/1/theremina/followers.json",
1053
+ "followersCount": 205,
1054
+ "following": "http://api.thisismyjam.com/1/theremina/following.json",
1055
+ "followingCount": 62,
1056
+ "fullname": "Meredith Yayanos",
1057
+ "hasCurrentJam": true,
1058
+ "jamCount": 37,
1059
+ "joinedDate": "Thu, 01 Dec 2011 21:18:31 +0000",
1060
+ "name": "theremina",
1061
+ "representativeArtists": [
1062
+ "The Bar-Kays",
1063
+ "Skip Spence",
1064
+ "Sigur R\u00f3s",
1065
+ "Bjork"
1066
+ ],
1067
+ "twitterName": "Theremina",
1068
+ "url": "http://www.thisismyjam.com/theremina"
1069
+ },
1070
+ {
1071
+ "apiUrl": "http://api.thisismyjam.com/1/mattsheret.json",
1072
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_887e03ba29ff0e71c2c769442e130449_128.jpg",
1073
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_887e03ba29ff0e71c2c769442e130449_small.jpg",
1074
+ "bio": "Occasionally bearded. Writer at Last.fm\r\nSee also matthewsheret.com",
1075
+ "followers": "http://api.thisismyjam.com/1/mattsheret/followers.json",
1076
+ "followersCount": 295,
1077
+ "following": "http://api.thisismyjam.com/1/mattsheret/following.json",
1078
+ "followingCount": 69,
1079
+ "fullname": "Matthew Sheret",
1080
+ "hasCurrentJam": true,
1081
+ "jamCount": 36,
1082
+ "joinedDate": "Fri, 30 Sep 2011 15:03:12 +0000",
1083
+ "lastfmName": "mrsheret",
1084
+ "name": "mattsheret",
1085
+ "representativeArtists": [
1086
+ "Shakespear's Sister",
1087
+ "Sleigh Bells",
1088
+ "Childish Gambino",
1089
+ "Youth Lagoon"
1090
+ ],
1091
+ "twitterName": "mattsheret",
1092
+ "url": "http://www.thisismyjam.com/mattsheret"
1093
+ },
1094
+ {
1095
+ "apiUrl": "http://api.thisismyjam.com/1/theseantcollins.json",
1096
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_d237a552a138da8d9940d890fa1bb953_128.png",
1097
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_d237a552a138da8d9940d890fa1bb953_small.png",
1098
+ "bio": "Senior Vice President, Beauty of Nature Cosmetics - a subsidiary of FMN",
1099
+ "followers": "http://api.thisismyjam.com/1/theseantcollins/followers.json",
1100
+ "followersCount": 95,
1101
+ "following": "http://api.thisismyjam.com/1/theseantcollins/following.json",
1102
+ "followingCount": 24,
1103
+ "fullname": "Sean T. Collins",
1104
+ "hasCurrentJam": true,
1105
+ "jamCount": 75,
1106
+ "joinedDate": "Tue, 13 Dec 2011 02:36:58 +0000",
1107
+ "name": "theseantcollins",
1108
+ "representativeArtists": [
1109
+ "Oneohtrix Point Never",
1110
+ "Avicii",
1111
+ "Underworld",
1112
+ "Goldfrapp"
1113
+ ],
1114
+ "twitterName": "theseantcollins",
1115
+ "url": "http://www.thisismyjam.com/theseantcollins"
1116
+ },
1117
+ {
1118
+ "apiUrl": "http://api.thisismyjam.com/1/grumblemouse.json",
1119
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_6f8e92c448ae59aa7fade6fc5f34f2f1_128.jpg",
1120
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_6f8e92c448ae59aa7fade6fc5f34f2f1_small.jpg",
1121
+ "bio": "Lover, hater, philosophy student, artist, gardener, tea lover, flaneur, bow tie wearer, apprentice tailor, thinker and strategist at @AlbionLondon",
1122
+ "facebookID": "722910265",
1123
+ "followers": "http://api.thisismyjam.com/1/grumblemouse/followers.json",
1124
+ "followersCount": 129,
1125
+ "following": "http://api.thisismyjam.com/1/grumblemouse/following.json",
1126
+ "followingCount": 65,
1127
+ "fullname": "grumblemouse",
1128
+ "hasCurrentJam": true,
1129
+ "jamCount": 18,
1130
+ "joinedDate": "Mon, 21 Nov 2011 00:19:58 +0000",
1131
+ "name": "grumblemouse",
1132
+ "representativeArtists": [
1133
+ "Bicep",
1134
+ "Jamie XX",
1135
+ "Shontelle",
1136
+ "Frankie Knuckles"
1137
+ ],
1138
+ "twitterName": "grumblemouse",
1139
+ "url": "http://www.thisismyjam.com/grumblemouse"
1140
+ },
1141
+ {
1142
+ "apiUrl": "http://api.thisismyjam.com/1/JoeTheDough.json",
1143
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_a0c25edff0b0f444940b72bd72e9d50e_128.jpg",
1144
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_a0c25edff0b0f444940b72bd72e9d50e_small.jpg",
1145
+ "bio": "Tottering towards adequacy.",
1146
+ "facebookID": "873290011",
1147
+ "followers": "http://api.thisismyjam.com/1/JoeTheDough/followers.json",
1148
+ "followersCount": 150,
1149
+ "following": "http://api.thisismyjam.com/1/JoeTheDough/following.json",
1150
+ "followingCount": 78,
1151
+ "fullname": "Joe Saunders",
1152
+ "hasCurrentJam": true,
1153
+ "jamCount": 20,
1154
+ "joinedDate": "Thu, 01 Dec 2011 13:03:04 +0000",
1155
+ "lastfmName": "JoeTheDough",
1156
+ "name": "JoeTheDough",
1157
+ "representativeArtists": [
1158
+ "At the Drive-In",
1159
+ "Yachts",
1160
+ "Kay Starr",
1161
+ "Prince"
1162
+ ],
1163
+ "twitterName": "JoeTheDough",
1164
+ "url": "http://www.thisismyjam.com/JoeTheDough"
1165
+ },
1166
+ {
1167
+ "apiUrl": "http://api.thisismyjam.com/1/infovore.json",
1168
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_c5d10b7a58de6c737240296569c02426_128.gif",
1169
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_c5d10b7a58de6c737240296569c02426_small.gif",
1170
+ "bio": "Morose indie. Jangly pop. Backpacky hip-hop. Boshy electronic. Nu-disco.",
1171
+ "followers": "http://api.thisismyjam.com/1/infovore/followers.json",
1172
+ "followersCount": 395,
1173
+ "following": "http://api.thisismyjam.com/1/infovore/following.json",
1174
+ "followingCount": 103,
1175
+ "fullname": "Tom Armitage",
1176
+ "hasCurrentJam": true,
1177
+ "jamCount": 38,
1178
+ "joinedDate": "Sun, 02 Oct 2011 14:29:49 +0000",
1179
+ "lastfmName": "tajmahal",
1180
+ "name": "infovore",
1181
+ "representativeArtists": [
1182
+ "Man Without Country",
1183
+ "Radiohead",
1184
+ "Jessie Ware",
1185
+ "Floating Points"
1186
+ ],
1187
+ "twitterName": "infovore",
1188
+ "url": "http://www.thisismyjam.com/infovore"
1189
+ },
1190
+ {
1191
+ "apiUrl": "http://api.thisismyjam.com/1/walt.brown.json",
1192
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_d2c13d90e6170aff49571477c5804dfc_128.jpg",
1193
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_d2c13d90e6170aff49571477c5804dfc_small.jpg",
1194
+ "bio": "grfk dzynr | groove sycophant | deejay idolator | dallastexanoid | anti-floccinaucinihilipilificator. Tune guru/acoustic curator for pokingsmot.net My old jams live on for eternity here: jamheaven.tumblr.com",
1195
+ "followers": "http://api.thisismyjam.com/1/walt.brown/followers.json",
1196
+ "followersCount": 178,
1197
+ "following": "http://api.thisismyjam.com/1/walt.brown/following.json",
1198
+ "followingCount": 293,
1199
+ "fullname": "s.u.a.d.",
1200
+ "hasCurrentJam": true,
1201
+ "jamCount": 145,
1202
+ "joinedDate": "Tue, 24 Jan 2012 19:52:18 +0000",
1203
+ "lastfmName": "swbrown777",
1204
+ "name": "walt.brown",
1205
+ "representativeArtists": [
1206
+ "Acid Washed",
1207
+ "Opus III",
1208
+ "Electronic",
1209
+ "Beck & Charlotte Gainsbourg"
1210
+ ],
1211
+ "twitterName": "twalty",
1212
+ "url": "http://www.thisismyjam.com/walt.brown"
1213
+ },
1214
+ {
1215
+ "apiUrl": "http://api.thisismyjam.com/1/bashford.json",
1216
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_ecdac2fe9c8d54a0d9711715c3dd654a_128.png",
1217
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_ecdac2fe9c8d54a0d9711715c3dd654a_small.png",
1218
+ "bio": "Bashford AKA B-Man AKA Data Centaur AKA Mechanical Murk AKA The 2 Step Authenticator AKA Mr. Greeble AKA The User Agent",
1219
+ "facebookID": "613320191",
1220
+ "followers": "http://api.thisismyjam.com/1/bashford/followers.json",
1221
+ "followersCount": 283,
1222
+ "following": "http://api.thisismyjam.com/1/bashford/following.json",
1223
+ "followingCount": 166,
1224
+ "fullname": "Bashford",
1225
+ "hasCurrentJam": true,
1226
+ "jamCount": 86,
1227
+ "joinedDate": "Fri, 04 Nov 2011 15:08:01 +0000",
1228
+ "name": "bashford",
1229
+ "representativeArtists": [
1230
+ "Addison Groove",
1231
+ "Burial",
1232
+ "Blawan",
1233
+ "Push Button Objects"
1234
+ ],
1235
+ "twitterName": "bashford",
1236
+ "url": "http://www.thisismyjam.com/bashford"
1237
+ },
1238
+ {
1239
+ "apiUrl": "http://api.thisismyjam.com/1/Discographies.json",
1240
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_26d00eb46dc77cba3792d8c0d497ff82_128.jpg",
1241
+ "avatarSmall": "http://static01.thisismyjam.com/i/avtr_26d00eb46dc77cba3792d8c0d497ff82_small.jpg",
1242
+ "bio": "A definitive guide to an artist's body of work (studio albums only) in 140 characters. \r\n",
1243
+ "followers": "http://api.thisismyjam.com/1/Discographies/followers.json",
1244
+ "followersCount": 549,
1245
+ "following": "http://api.thisismyjam.com/1/Discographies/following.json",
1246
+ "followingCount": 46,
1247
+ "fullname": "Discographies",
1248
+ "hasCurrentJam": true,
1249
+ "jamCount": 22,
1250
+ "joinedDate": "Tue, 17 Jan 2012 21:55:38 +0000",
1251
+ "name": "Discographies",
1252
+ "representativeArtists": [
1253
+ "Soft Metals",
1254
+ "Thomas Jefferson Slave Apartments",
1255
+ "Luke Haines",
1256
+ "Jah Wobble & Julie Campbell"
1257
+ ],
1258
+ "twitterName": "Discographies",
1259
+ "url": "http://www.thisismyjam.com/Discographies"
1260
+ },
1261
+ {
1262
+ "apiUrl": "http://api.thisismyjam.com/1/newsmary.json",
1263
+ "avatarNormal": "http://static02.thisismyjam.com/i/avtr_a9752cacaddbf6096501c5b4cdd3085a_128.jpg",
1264
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_a9752cacaddbf6096501c5b4cdd3085a_small.jpg",
1265
+ "bio": "Journalist type tech-ish geek person. Gamer, coffee drinker, zombie herder. Speed-of-light pedant at the Guardian. Will live tweet for Chipsticks.",
1266
+ "facebookID": "506327347",
1267
+ "followers": "http://api.thisismyjam.com/1/newsmary/followers.json",
1268
+ "followersCount": 74,
1269
+ "following": "http://api.thisismyjam.com/1/newsmary/following.json",
1270
+ "followingCount": 46,
1271
+ "fullname": "Mary Hamilton",
1272
+ "hasCurrentJam": true,
1273
+ "jamCount": 26,
1274
+ "joinedDate": "Fri, 23 Dec 2011 20:21:55 +0000",
1275
+ "lastfmName": "newsmary",
1276
+ "name": "newsmary",
1277
+ "representativeArtists": [
1278
+ "PJ Harvey",
1279
+ "Flobots",
1280
+ "Elbow",
1281
+ "Arcade Fire"
1282
+ ],
1283
+ "twitterName": "newsmary",
1284
+ "url": "http://www.thisismyjam.com/newsmary"
1285
+ },
1286
+ {
1287
+ "apiUrl": "http://api.thisismyjam.com/1/andyzax.json",
1288
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_ed002e2a44d5d60fba9638c51a4d776a_128.jpg",
1289
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_ed002e2a44d5d60fba9638c51a4d776a_small.jpg",
1290
+ "bio": "Music producer. Adjective deployer. Dot connector.",
1291
+ "followers": "http://api.thisismyjam.com/1/andyzax/followers.json",
1292
+ "followersCount": 158,
1293
+ "following": "http://api.thisismyjam.com/1/andyzax/following.json",
1294
+ "followingCount": 60,
1295
+ "fullname": "Andy Zax",
1296
+ "hasCurrentJam": true,
1297
+ "jamCount": 26,
1298
+ "joinedDate": "Mon, 19 Dec 2011 19:32:53 +0000",
1299
+ "name": "andyzax",
1300
+ "representativeArtists": [
1301
+ "The Perfect Disaster",
1302
+ "Galaxie 500",
1303
+ "Donna Summer",
1304
+ "The Loft"
1305
+ ],
1306
+ "twitterName": "andyzax",
1307
+ "url": "http://www.thisismyjam.com/andyzax"
1308
+ },
1309
+ {
1310
+ "apiUrl": "http://api.thisismyjam.com/1/huwstephens.json",
1311
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_0fe68a0a577dbe0feb2ea5155853c7c2_128.jpg",
1312
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_0fe68a0a577dbe0feb2ea5155853c7c2_small.jpg",
1313
+ "bio": "DJ on BBC Radio 1, Radio Cymru, www.swnfest.com curator, www.musicsoundsbetterwithhuw.com My Views, not the BBC's views.",
1314
+ "followers": "http://api.thisismyjam.com/1/huwstephens/followers.json",
1315
+ "followersCount": 735,
1316
+ "following": "http://api.thisismyjam.com/1/huwstephens/following.json",
1317
+ "followingCount": 18,
1318
+ "fullname": "Huw Stephens",
1319
+ "hasCurrentJam": true,
1320
+ "jamCount": 20,
1321
+ "joinedDate": "Mon, 02 Jan 2012 18:07:12 +0000",
1322
+ "name": "huwstephens",
1323
+ "representativeArtists": [
1324
+ "The Skints",
1325
+ "First Aid Kit",
1326
+ "The Unthanks",
1327
+ "The 2 Bears"
1328
+ ],
1329
+ "twitterName": "huwstephens",
1330
+ "url": "http://www.thisismyjam.com/huwstephens"
1331
+ },
1332
+ {
1333
+ "apiUrl": "http://api.thisismyjam.com/1/bluermlou.json",
1334
+ "avatarNormal": "http://static03.thisismyjam.com/i/avtr_903f2abed5a43cf40d8e5ffd8fd0c50f_128.jpg",
1335
+ "avatarSmall": "http://static04.thisismyjam.com/i/avtr_903f2abed5a43cf40d8e5ffd8fd0c50f_small.jpg",
1336
+ "bio": "living life, one 45 at a time.\r\n\r\n\r\nhttp://djbluewater.com",
1337
+ "facebookID": "709175310",
1338
+ "followers": "http://api.thisismyjam.com/1/bluermlou/followers.json",
1339
+ "followersCount": 46,
1340
+ "following": "http://api.thisismyjam.com/1/bluermlou/following.json",
1341
+ "followingCount": 79,
1342
+ "fullname": "DJ BlueWater",
1343
+ "hasCurrentJam": true,
1344
+ "jamCount": 27,
1345
+ "joinedDate": "Mon, 21 Nov 2011 15:03:17 +0000",
1346
+ "name": "bluermlou",
1347
+ "representativeArtists": [
1348
+ "Samson & Delilah",
1349
+ "The Manhattans",
1350
+ "The Maytals",
1351
+ "Roy and Enid"
1352
+ ],
1353
+ "twitterName": "bluermlou",
1354
+ "url": "http://www.thisismyjam.com/bluermlou"
1355
+ },
1356
+ {
1357
+ "apiUrl": "http://api.thisismyjam.com/1/kcgbooks.json",
1358
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_5ca0264801a98f4dfce2e68370ee21e8_128.png",
1359
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_5ca0264801a98f4dfce2e68370ee21e8_small.png",
1360
+ "bio": "a male who feels haunted. He has refused an ambulance.",
1361
+ "followers": "http://api.thisismyjam.com/1/kcgbooks/followers.json",
1362
+ "followersCount": 249,
1363
+ "following": "http://api.thisismyjam.com/1/kcgbooks/following.json",
1364
+ "followingCount": 21,
1365
+ "fullname": "kc green",
1366
+ "hasCurrentJam": true,
1367
+ "jamCount": 16,
1368
+ "joinedDate": "Wed, 15 Feb 2012 23:12:21 +0000",
1369
+ "name": "kcgbooks",
1370
+ "representativeArtists": [
1371
+ "Daniel Johnston",
1372
+ "Tanlines",
1373
+ "kirby's return to dreamland",
1374
+ "They Might Be Giants"
1375
+ ],
1376
+ "twitterName": "kcgbooks",
1377
+ "url": "http://www.thisismyjam.com/kcgbooks"
1378
+ },
1379
+ {
1380
+ "apiUrl": "http://api.thisismyjam.com/1/simplymaytastic.json",
1381
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_845c4ed38d1bbd16b790eae0e1b0203d_128.jpg",
1382
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_845c4ed38d1bbd16b790eae0e1b0203d_small.jpg",
1383
+ "bio": "Print shop cog. Addicted to learning new things, traveling, coffee, good beer, movie nights with the BF and enjoying the dog park with my pups.",
1384
+ "followers": "http://api.thisismyjam.com/1/simplymaytastic/followers.json",
1385
+ "followersCount": 102,
1386
+ "following": "http://api.thisismyjam.com/1/simplymaytastic/following.json",
1387
+ "followingCount": 194,
1388
+ "fullname": "Maylanie",
1389
+ "hasCurrentJam": true,
1390
+ "jamCount": 35,
1391
+ "joinedDate": "Sat, 07 Jan 2012 00:34:31 +0000",
1392
+ "name": "simplymaytastic",
1393
+ "representativeArtists": [
1394
+ "Sucr\u00e9",
1395
+ "X-Ray Spex",
1396
+ "Amanda Ambrose",
1397
+ "Breakbot"
1398
+ ],
1399
+ "twitterName": "SimplyMaytastic",
1400
+ "url": "http://www.thisismyjam.com/simplymaytastic"
1401
+ },
1402
+ {
1403
+ "apiUrl": "http://api.thisismyjam.com/1/eliphinobeats.json",
1404
+ "avatarNormal": "http://static04.thisismyjam.com/i/avtr_214c3ae1979e36a9c1ad57863ba36f5f_128.jpg",
1405
+ "avatarSmall": "http://static02.thisismyjam.com/i/avtr_214c3ae1979e36a9c1ad57863ba36f5f_small.jpg",
1406
+ "bio": "\u2211\u23a3\u23a0\u20b1\u0126\u0130\u014a\u274d\r\nhttp://anymajordudewilltellyou.tumblr.com",
1407
+ "facebookID": "197818189",
1408
+ "followers": "http://api.thisismyjam.com/1/eliphinobeats/followers.json",
1409
+ "followersCount": 164,
1410
+ "following": "http://api.thisismyjam.com/1/eliphinobeats/following.json",
1411
+ "followingCount": 35,
1412
+ "fullname": "eliphino",
1413
+ "hasCurrentJam": true,
1414
+ "jamCount": 28,
1415
+ "joinedDate": "Fri, 18 Nov 2011 14:52:24 +0000",
1416
+ "name": "eliphinobeats",
1417
+ "representativeArtists": [
1418
+ "Oren Ambarchi",
1419
+ "Larry Heard",
1420
+ "Baby",
1421
+ "Eric Lau & Rahel"
1422
+ ],
1423
+ "twitterName": "eliphinobeats",
1424
+ "url": "http://www.thisismyjam.com/eliphinobeats"
1425
+ }
1426
+ ]
1427
+ }