jammed 0.1.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.
- data/.gitignore +6 -0
- data/.rspec +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +10 -0
- data/LICENSE +22 -0
- data/README.md +54 -0
- data/Rakefile +44 -0
- data/examples/basics.rb +60 -0
- data/lib/jammed/base.rb +182 -0
- data/lib/jammed/followers.rb +36 -0
- data/lib/jammed/following.rb +36 -0
- data/lib/jammed/jams.rb +34 -0
- data/lib/jammed/likes.rb +32 -0
- data/lib/jammed/people_search.rb +55 -0
- data/lib/jammed/person.rb +32 -0
- data/lib/jammed/popular_jams.rb +14 -0
- data/lib/jammed/suggested_people.rb +14 -0
- data/lib/jammed/user.rb +158 -0
- data/lib/jammed/version.rb +4 -0
- data/lib/jammed.rb +28 -0
- data/spec/jammed/base_spec.rb +90 -0
- data/spec/jammed/followers_spec.rb +55 -0
- data/spec/jammed/following_spec.rb +55 -0
- data/spec/jammed/jams_spec.rb +53 -0
- data/spec/jammed/likes_spec.rb +51 -0
- data/spec/jammed/people_search_spec.rb +79 -0
- data/spec/jammed/person_spec.rb +38 -0
- data/spec/jammed/popular_jams_spec.rb +23 -0
- data/spec/jammed/suggested_people_spec.rb +18 -0
- data/spec/jammed/user_spec.rb +205 -0
- data/spec/sample_responses/followers.json +1495 -0
- data/spec/sample_responses/followers_affinity.json +1495 -0
- data/spec/sample_responses/followers_date.json +1281 -0
- data/spec/sample_responses/followers_name.json +0 -0
- data/spec/sample_responses/following.json +1495 -0
- data/spec/sample_responses/following_affinity.json +1495 -0
- data/spec/sample_responses/following_date.json +1406 -0
- data/spec/sample_responses/following_name.json +1406 -0
- data/spec/sample_responses/jams.json +620 -0
- data/spec/sample_responses/jams_past.json +602 -0
- data/spec/sample_responses/likes.json +1106 -0
- data/spec/sample_responses/likes_current.json +224 -0
- data/spec/sample_responses/likes_past.json +1106 -0
- data/spec/sample_responses/person.json +44 -0
- data/spec/sample_responses/popular.json +364 -0
- data/spec/sample_responses/search_artist.json +1377 -0
- data/spec/sample_responses/search_name.json +55 -0
- data/spec/sample_responses/search_track.json +1333 -0
- data/spec/sample_responses/suggested_people.json +1427 -0
- data/spec/spec_helper.rb +18 -0
- metadata +189 -0
@@ -0,0 +1,1377 @@
|
|
1
|
+
{
|
2
|
+
"list": {
|
3
|
+
"hasMore": true,
|
4
|
+
"next": "http://api.thisismyjam.com/1/search/person.json?q=beach boys&by=artist&page=2&key=987bcab01b929eb2c07877b224215c92"
|
5
|
+
},
|
6
|
+
"people": [
|
7
|
+
{
|
8
|
+
"apiUrl": "http://api.thisismyjam.com/1/philken7.json?key=987bcab01b929eb2c07877b224215c92",
|
9
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_1f37d8e7e1656e0b3ef8636163c6083b_128.jpg",
|
10
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_1f37d8e7e1656e0b3ef8636163c6083b_small.jpg",
|
11
|
+
"bio": "Russia's greatest love machine. part time cartoonist. Bow to my mediocrity! ",
|
12
|
+
"followers": "http://api.thisismyjam.com/1/philken7/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
13
|
+
"followersCount": 5,
|
14
|
+
"following": "http://api.thisismyjam.com/1/philken7/following.json?key=987bcab01b929eb2c07877b224215c92",
|
15
|
+
"followingCount": 9,
|
16
|
+
"fullname": "Stephen G.",
|
17
|
+
"hasCurrentJam": true,
|
18
|
+
"jamCount": 10,
|
19
|
+
"joinedDate": "Mon, 12 Mar 2012 19:11:30 +0000",
|
20
|
+
"name": "philken7",
|
21
|
+
"representativeArtists": [
|
22
|
+
"The Beach Boys",
|
23
|
+
"Madness",
|
24
|
+
"The Divine Comedy",
|
25
|
+
"\u2191THE HIGH-LOWS\u2193"
|
26
|
+
],
|
27
|
+
"twitterName": "philken7",
|
28
|
+
"url": "http://www.thisismyjam.com/philken7"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"apiUrl": "http://api.thisismyjam.com/1/PaulSaxton.json?key=987bcab01b929eb2c07877b224215c92",
|
32
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_04488c9fdf2dfd7d97878833ac690c67_128.jpg",
|
33
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_04488c9fdf2dfd7d97878833ac690c67_small.jpg",
|
34
|
+
"bio": "I'm much funnier, cleverer and nicerer in real life. And much funnier.",
|
35
|
+
"facebookID": "591500403",
|
36
|
+
"followers": "http://api.thisismyjam.com/1/PaulSaxton/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
37
|
+
"followersCount": 11,
|
38
|
+
"following": "http://api.thisismyjam.com/1/PaulSaxton/following.json?key=987bcab01b929eb2c07877b224215c92",
|
39
|
+
"followingCount": 16,
|
40
|
+
"fullname": "Paul Saxton",
|
41
|
+
"hasCurrentJam": false,
|
42
|
+
"jamCount": 19,
|
43
|
+
"joinedDate": "Thu, 08 Mar 2012 21:49:37 +0000",
|
44
|
+
"name": "PaulSaxton",
|
45
|
+
"representativeArtists": [
|
46
|
+
"The Beach Boys",
|
47
|
+
"Randy Newman",
|
48
|
+
"The Fall",
|
49
|
+
"Bob Dylan"
|
50
|
+
],
|
51
|
+
"twitterName": "PaulSaxton",
|
52
|
+
"url": "http://www.thisismyjam.com/PaulSaxton"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"apiUrl": "http://api.thisismyjam.com/1/MoustachePants.json?key=987bcab01b929eb2c07877b224215c92",
|
56
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_517551a49dc0e2b94fc00f2ebe6249d2_128.jpg",
|
57
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_517551a49dc0e2b94fc00f2ebe6249d2_small.jpg",
|
58
|
+
"bio": "Enjoys a little bit of all the finer things in life, art, literature comics, music, liquor, hockey, and moustaches.",
|
59
|
+
"followers": "http://api.thisismyjam.com/1/MoustachePants/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
60
|
+
"followersCount": 44,
|
61
|
+
"following": "http://api.thisismyjam.com/1/MoustachePants/following.json?key=987bcab01b929eb2c07877b224215c92",
|
62
|
+
"followingCount": 29,
|
63
|
+
"fullname": "Peter",
|
64
|
+
"hasCurrentJam": true,
|
65
|
+
"jamCount": 46,
|
66
|
+
"joinedDate": "Tue, 20 Dec 2011 01:03:54 +0000",
|
67
|
+
"name": "MoustachePants",
|
68
|
+
"representativeArtists": [
|
69
|
+
"The Beach Boys",
|
70
|
+
"Guided by Voices",
|
71
|
+
"The Velvet Underground",
|
72
|
+
"Robyn Hitchcock"
|
73
|
+
],
|
74
|
+
"twitterName": "MoustachePants",
|
75
|
+
"url": "http://www.thisismyjam.com/MoustachePants"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"apiUrl": "http://api.thisismyjam.com/1/nothingelseis.json?key=987bcab01b929eb2c07877b224215c92",
|
79
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_0b2f7c1753f78da74f360e279f6b089d_128.jpg",
|
80
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_0b2f7c1753f78da74f360e279f6b089d_small.jpg",
|
81
|
+
"bio": "COPYWRITER AT MAL",
|
82
|
+
"followers": "http://api.thisismyjam.com/1/nothingelseis/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
83
|
+
"followersCount": 6,
|
84
|
+
"following": "http://api.thisismyjam.com/1/nothingelseis/following.json?key=987bcab01b929eb2c07877b224215c92",
|
85
|
+
"followingCount": 22,
|
86
|
+
"fullname": "Tim Holden",
|
87
|
+
"hasCurrentJam": true,
|
88
|
+
"jamCount": 8,
|
89
|
+
"joinedDate": "Sun, 26 Feb 2012 12:42:05 +0000",
|
90
|
+
"lastfmName": "nothingelseis",
|
91
|
+
"name": "nothingelseis",
|
92
|
+
"representativeArtists": [
|
93
|
+
"The Beach Boys",
|
94
|
+
"Kate Bush",
|
95
|
+
"Sabrepulse",
|
96
|
+
"Caribou"
|
97
|
+
],
|
98
|
+
"twitterName": "nothingelseis",
|
99
|
+
"url": "http://www.thisismyjam.com/nothingelseis"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"apiUrl": "http://api.thisismyjam.com/1/kevinrburns.json?key=987bcab01b929eb2c07877b224215c92",
|
103
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_3fa6dee76b7d438f32a966c62b09d240_128.jpg",
|
104
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_3fa6dee76b7d438f32a966c62b09d240_small.jpg",
|
105
|
+
"bio": "I'm a Professional Human.",
|
106
|
+
"facebookID": "22700501",
|
107
|
+
"followers": "http://api.thisismyjam.com/1/kevinrburns/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
108
|
+
"followersCount": 3,
|
109
|
+
"following": "http://api.thisismyjam.com/1/kevinrburns/following.json?key=987bcab01b929eb2c07877b224215c92",
|
110
|
+
"followingCount": 9,
|
111
|
+
"fullname": "Kevin Burns",
|
112
|
+
"hasCurrentJam": true,
|
113
|
+
"jamCount": 12,
|
114
|
+
"joinedDate": "Thu, 01 Mar 2012 18:53:32 +0000",
|
115
|
+
"lastfmName": "FlexFlexerson",
|
116
|
+
"name": "kevinrburns",
|
117
|
+
"representativeArtists": [
|
118
|
+
"The Beach Boys",
|
119
|
+
"Devo",
|
120
|
+
"Robyn",
|
121
|
+
"The 4-Skins"
|
122
|
+
],
|
123
|
+
"twitterName": "FlexFantastic",
|
124
|
+
"url": "http://www.thisismyjam.com/kevinrburns"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"apiUrl": "http://api.thisismyjam.com/1/keano.json?key=987bcab01b929eb2c07877b224215c92",
|
128
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_989a600f60de9e9b94bce06441390a4f_128.jpg",
|
129
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_989a600f60de9e9b94bce06441390a4f_small.jpg",
|
130
|
+
"bio": "",
|
131
|
+
"followers": "http://api.thisismyjam.com/1/keano/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
132
|
+
"followersCount": 18,
|
133
|
+
"following": "http://api.thisismyjam.com/1/keano/following.json?key=987bcab01b929eb2c07877b224215c92",
|
134
|
+
"followingCount": 19,
|
135
|
+
"fullname": "keano",
|
136
|
+
"hasCurrentJam": true,
|
137
|
+
"jamCount": 28,
|
138
|
+
"joinedDate": "Thu, 01 Dec 2011 18:21:06 +0000",
|
139
|
+
"name": "keano",
|
140
|
+
"representativeArtists": [
|
141
|
+
"The Beach Boys",
|
142
|
+
"Pavement",
|
143
|
+
"Bob Dylan & Johnny Cash",
|
144
|
+
"Sonic Youth"
|
145
|
+
],
|
146
|
+
"twitterName": "keanofcu",
|
147
|
+
"url": "http://www.thisismyjam.com/keano"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"apiUrl": "http://api.thisismyjam.com/1/ChrisDeBoer.json?key=987bcab01b929eb2c07877b224215c92",
|
151
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_ccc9d69fc6b5771204200d8b9a147131_128.jpg",
|
152
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_ccc9d69fc6b5771204200d8b9a147131_small.jpg",
|
153
|
+
"bio": "",
|
154
|
+
"facebookID": "100000563434193",
|
155
|
+
"followers": "http://api.thisismyjam.com/1/ChrisDeBoer/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
156
|
+
"followersCount": 2,
|
157
|
+
"following": "http://api.thisismyjam.com/1/ChrisDeBoer/following.json?key=987bcab01b929eb2c07877b224215c92",
|
158
|
+
"followingCount": 2,
|
159
|
+
"fullname": "Chris DeBoer",
|
160
|
+
"hasCurrentJam": true,
|
161
|
+
"jamCount": 11,
|
162
|
+
"joinedDate": "Tue, 27 Mar 2012 03:42:48 +0000",
|
163
|
+
"name": "ChrisDeBoer",
|
164
|
+
"representativeArtists": [
|
165
|
+
"The Beach Boys",
|
166
|
+
"Jos\u00e9 Alfredo Jim\u00e9nez",
|
167
|
+
"The Toy Dolls",
|
168
|
+
"Against The Wind"
|
169
|
+
],
|
170
|
+
"url": "http://www.thisismyjam.com/ChrisDeBoer"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"apiUrl": "http://api.thisismyjam.com/1/offmessage.json?key=987bcab01b929eb2c07877b224215c92",
|
174
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_3640531cb019cdaa28cb1803a7744ea3_128.jpg",
|
175
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_3640531cb019cdaa28cb1803a7744ea3_small.jpg",
|
176
|
+
"bio": "",
|
177
|
+
"followers": "http://api.thisismyjam.com/1/offmessage/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
178
|
+
"followersCount": 18,
|
179
|
+
"following": "http://api.thisismyjam.com/1/offmessage/following.json?key=987bcab01b929eb2c07877b224215c92",
|
180
|
+
"followingCount": 20,
|
181
|
+
"fullname": "",
|
182
|
+
"hasCurrentJam": true,
|
183
|
+
"jamCount": 20,
|
184
|
+
"joinedDate": "Tue, 14 Feb 2012 10:20:36 +0000",
|
185
|
+
"name": "offmessage",
|
186
|
+
"representativeArtists": [
|
187
|
+
"The Beach Boys",
|
188
|
+
"Massive Attack",
|
189
|
+
"Breton",
|
190
|
+
"Cloud Nothings"
|
191
|
+
],
|
192
|
+
"twitterName": "offmessage",
|
193
|
+
"url": "http://www.thisismyjam.com/offmessage"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"apiUrl": "http://api.thisismyjam.com/1/emma_louise84.json?key=987bcab01b929eb2c07877b224215c92",
|
197
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_0b8898e5311f00950b80a46dfdada150_128.jpg",
|
198
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_0b8898e5311f00950b80a46dfdada150_small.jpg",
|
199
|
+
"bio": "",
|
200
|
+
"facebookID": "644762029",
|
201
|
+
"followers": "http://api.thisismyjam.com/1/emma_louise84/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
202
|
+
"followersCount": 3,
|
203
|
+
"following": "http://api.thisismyjam.com/1/emma_louise84/following.json?key=987bcab01b929eb2c07877b224215c92",
|
204
|
+
"followingCount": 15,
|
205
|
+
"fullname": "Emma",
|
206
|
+
"hasCurrentJam": true,
|
207
|
+
"jamCount": 11,
|
208
|
+
"joinedDate": "Sun, 25 Mar 2012 15:20:28 +0000",
|
209
|
+
"name": "emma_louise84",
|
210
|
+
"representativeArtists": [
|
211
|
+
"The Beach Boys",
|
212
|
+
"ELO",
|
213
|
+
"She & Him",
|
214
|
+
"Otis Redding"
|
215
|
+
],
|
216
|
+
"twitterName": "emma_louise84",
|
217
|
+
"url": "http://www.thisismyjam.com/emma_louise84"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"apiUrl": "http://api.thisismyjam.com/1/ohelloizzy.json?key=987bcab01b929eb2c07877b224215c92",
|
221
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_860eb488c1f208b5e52399f0de8f50db_128.jpg",
|
222
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_860eb488c1f208b5e52399f0de8f50db_small.jpg",
|
223
|
+
"bio": "When I'm not listening to music, I'm probably thinking about cats.",
|
224
|
+
"followers": "http://api.thisismyjam.com/1/ohelloizzy/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
225
|
+
"followersCount": 52,
|
226
|
+
"following": "http://api.thisismyjam.com/1/ohelloizzy/following.json?key=987bcab01b929eb2c07877b224215c92",
|
227
|
+
"followingCount": 52,
|
228
|
+
"fullname": "Izzy James",
|
229
|
+
"hasCurrentJam": true,
|
230
|
+
"jamCount": 24,
|
231
|
+
"joinedDate": "Wed, 02 Nov 2011 11:08:37 +0000",
|
232
|
+
"lastfmName": "izzyfj",
|
233
|
+
"name": "ohelloizzy",
|
234
|
+
"representativeArtists": [
|
235
|
+
"The Beach Boys",
|
236
|
+
"Widowspeak",
|
237
|
+
"LCD Soundsystem"
|
238
|
+
],
|
239
|
+
"twitterName": "ohelloizzy",
|
240
|
+
"url": "http://www.thisismyjam.com/ohelloizzy"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"apiUrl": "http://api.thisismyjam.com/1/DanWal.json?key=987bcab01b929eb2c07877b224215c92",
|
244
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_325d00e55b248a8f92b1931281cffb0f_128.jpg",
|
245
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_325d00e55b248a8f92b1931281cffb0f_small.jpg",
|
246
|
+
"bio": "I love music",
|
247
|
+
"followers": "http://api.thisismyjam.com/1/DanWal/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
248
|
+
"followersCount": 4,
|
249
|
+
"following": "http://api.thisismyjam.com/1/DanWal/following.json?key=987bcab01b929eb2c07877b224215c92",
|
250
|
+
"followingCount": 5,
|
251
|
+
"fullname": "Daniel Walker",
|
252
|
+
"hasCurrentJam": true,
|
253
|
+
"jamCount": 23,
|
254
|
+
"joinedDate": "Wed, 14 Mar 2012 15:09:16 +0000",
|
255
|
+
"name": "DanWal",
|
256
|
+
"representativeArtists": [
|
257
|
+
"The Beach Boys",
|
258
|
+
"Choir Of Young Believers",
|
259
|
+
"Emily Kokal",
|
260
|
+
"Rage Against the Machine"
|
261
|
+
],
|
262
|
+
"url": "http://www.thisismyjam.com/DanWal"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"apiUrl": "http://api.thisismyjam.com/1/FallHeadsRoll.json?key=987bcab01b929eb2c07877b224215c92",
|
266
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_45281867e6a4f0d61dd8cebf6d24297d_128.jpg",
|
267
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_45281867e6a4f0d61dd8cebf6d24297d_small.jpg",
|
268
|
+
"bio": "",
|
269
|
+
"facebookID": "197813191",
|
270
|
+
"followers": "http://api.thisismyjam.com/1/FallHeadsRoll/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
271
|
+
"followersCount": 9,
|
272
|
+
"following": "http://api.thisismyjam.com/1/FallHeadsRoll/following.json?key=987bcab01b929eb2c07877b224215c92",
|
273
|
+
"followingCount": 11,
|
274
|
+
"fullname": "Duncan Robertson",
|
275
|
+
"hasCurrentJam": true,
|
276
|
+
"jamCount": 14,
|
277
|
+
"joinedDate": "Mon, 12 Dec 2011 18:38:03 +0000",
|
278
|
+
"name": "FallHeadsRoll",
|
279
|
+
"representativeArtists": [
|
280
|
+
"The Beach Boys",
|
281
|
+
"Oppenheimer Analysis",
|
282
|
+
"Red House Painters",
|
283
|
+
"Tom Waits"
|
284
|
+
],
|
285
|
+
"twitterName": "FallHeadsRoll",
|
286
|
+
"url": "http://www.thisismyjam.com/FallHeadsRoll"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"apiUrl": "http://api.thisismyjam.com/1/riz.json?key=987bcab01b929eb2c07877b224215c92",
|
290
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_a72a6a30d719e46c5886506239632b6e_128.png",
|
291
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_a72a6a30d719e46c5886506239632b6e_small.png",
|
292
|
+
"bio": null,
|
293
|
+
"followers": "http://api.thisismyjam.com/1/riz/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
294
|
+
"followersCount": 0,
|
295
|
+
"following": "http://api.thisismyjam.com/1/riz/following.json?key=987bcab01b929eb2c07877b224215c92",
|
296
|
+
"followingCount": 0,
|
297
|
+
"fullname": null,
|
298
|
+
"hasCurrentJam": false,
|
299
|
+
"jamCount": 1,
|
300
|
+
"joinedDate": "Tue, 27 Mar 2012 20:40:53 +0000",
|
301
|
+
"name": "riz",
|
302
|
+
"representativeArtists": [
|
303
|
+
"The Beach Boys"
|
304
|
+
],
|
305
|
+
"url": "http://www.thisismyjam.com/riz"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"apiUrl": "http://api.thisismyjam.com/1/Marco.json?key=987bcab01b929eb2c07877b224215c92",
|
309
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_e32cf1109ed9af231c9f839ecb9591f9_128.jpg",
|
310
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_e32cf1109ed9af231c9f839ecb9591f9_small.jpg",
|
311
|
+
"bio": "Marco @ Angry Robot, publishers of SF, F and WTF. \"A little order, a little grace, something new to fill up this place.\"",
|
312
|
+
"facebookID": "1123135484",
|
313
|
+
"followers": "http://api.thisismyjam.com/1/Marco/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
314
|
+
"followersCount": 75,
|
315
|
+
"following": "http://api.thisismyjam.com/1/Marco/following.json?key=987bcab01b929eb2c07877b224215c92",
|
316
|
+
"followingCount": 82,
|
317
|
+
"fullname": "Marc G",
|
318
|
+
"hasCurrentJam": true,
|
319
|
+
"jamCount": 93,
|
320
|
+
"joinedDate": "Thu, 08 Dec 2011 13:02:22 +0000",
|
321
|
+
"name": "Marco",
|
322
|
+
"representativeArtists": [
|
323
|
+
"The Beach Boys",
|
324
|
+
"Alberto y Lost Trios Paranoias",
|
325
|
+
"Philip Glass",
|
326
|
+
"Peter Hammill"
|
327
|
+
],
|
328
|
+
"twitterName": "Marc_Gascoigne",
|
329
|
+
"url": "http://www.thisismyjam.com/Marco"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"apiUrl": "http://api.thisismyjam.com/1/mattymatty.json?key=987bcab01b929eb2c07877b224215c92",
|
333
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_03d1e1f71abcef0b800f5e0515278c91_128.png",
|
334
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_03d1e1f71abcef0b800f5e0515278c91_small.png",
|
335
|
+
"bio": "",
|
336
|
+
"facebookID": "537999166",
|
337
|
+
"followers": "http://api.thisismyjam.com/1/mattymatty/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
338
|
+
"followersCount": 13,
|
339
|
+
"following": "http://api.thisismyjam.com/1/mattymatty/following.json?key=987bcab01b929eb2c07877b224215c92",
|
340
|
+
"followingCount": 15,
|
341
|
+
"fullname": "Matty Roodt",
|
342
|
+
"hasCurrentJam": true,
|
343
|
+
"jamCount": 12,
|
344
|
+
"joinedDate": "Sun, 18 Dec 2011 15:38:35 +0000",
|
345
|
+
"name": "mattymatty",
|
346
|
+
"representativeArtists": [
|
347
|
+
"The Beach Boys",
|
348
|
+
"Daniel Johnston",
|
349
|
+
"Washed Out",
|
350
|
+
"Robbie Basho"
|
351
|
+
],
|
352
|
+
"url": "http://www.thisismyjam.com/mattymatty"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"apiUrl": "http://api.thisismyjam.com/1/rossbirks.json?key=987bcab01b929eb2c07877b224215c92",
|
356
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_fcd4ca09a398a050b8c1befb976ec2f2_128.jpg",
|
357
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_fcd4ca09a398a050b8c1befb976ec2f2_small.jpg",
|
358
|
+
"bio": "I like songs that sound like movies.",
|
359
|
+
"facebookID": "1383976367",
|
360
|
+
"followers": "http://api.thisismyjam.com/1/rossbirks/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
361
|
+
"followersCount": 24,
|
362
|
+
"following": "http://api.thisismyjam.com/1/rossbirks/following.json?key=987bcab01b929eb2c07877b224215c92",
|
363
|
+
"followingCount": 21,
|
364
|
+
"fullname": "Ross Birks",
|
365
|
+
"hasCurrentJam": true,
|
366
|
+
"jamCount": 47,
|
367
|
+
"joinedDate": "Sun, 26 Feb 2012 12:38:20 +0000",
|
368
|
+
"name": "rossbirks",
|
369
|
+
"representativeArtists": [
|
370
|
+
"The Beach Boys",
|
371
|
+
"The Beatles",
|
372
|
+
"Queens of the Stone Age",
|
373
|
+
"The Black Keys"
|
374
|
+
],
|
375
|
+
"twitterName": "rossbirks",
|
376
|
+
"url": "http://www.thisismyjam.com/rossbirks"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"apiUrl": "http://api.thisismyjam.com/1/cornalt130.json?key=987bcab01b929eb2c07877b224215c92",
|
380
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_9887072e8942548d6222bf435c39afa9_128.jpg",
|
381
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_9887072e8942548d6222bf435c39afa9_small.jpg",
|
382
|
+
"bio": "",
|
383
|
+
"facebookID": "1274204039",
|
384
|
+
"followers": "http://api.thisismyjam.com/1/cornalt130/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
385
|
+
"followersCount": 5,
|
386
|
+
"following": "http://api.thisismyjam.com/1/cornalt130/following.json?key=987bcab01b929eb2c07877b224215c92",
|
387
|
+
"followingCount": 5,
|
388
|
+
"fullname": "Corn\u00e9",
|
389
|
+
"hasCurrentJam": false,
|
390
|
+
"jamCount": 9,
|
391
|
+
"joinedDate": "Thu, 09 Feb 2012 21:49:54 +0000",
|
392
|
+
"name": "cornalt130",
|
393
|
+
"representativeArtists": [
|
394
|
+
"The Beach Boys",
|
395
|
+
"Acda & De Munnik",
|
396
|
+
"Mumford & Sons",
|
397
|
+
"Johnny Cash"
|
398
|
+
],
|
399
|
+
"twitterName": "cornalt130",
|
400
|
+
"url": "http://www.thisismyjam.com/cornalt130"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"apiUrl": "http://api.thisismyjam.com/1/Lannuss.json?key=987bcab01b929eb2c07877b224215c92",
|
404
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_44d920dd59d8560b1afa5683df6ba556_128.jpg",
|
405
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_44d920dd59d8560b1afa5683df6ba556_small.jpg",
|
406
|
+
"bio": "does things in a bank with IT. I love; pinot noir, maltesers, Manchester City, old school hip hop, jigsaws, watches, Las Vegas, good tailoring and my family",
|
407
|
+
"followers": "http://api.thisismyjam.com/1/Lannuss/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
408
|
+
"followersCount": 1,
|
409
|
+
"following": "http://api.thisismyjam.com/1/Lannuss/following.json?key=987bcab01b929eb2c07877b224215c92",
|
410
|
+
"followingCount": 4,
|
411
|
+
"fullname": "The Lannuss",
|
412
|
+
"hasCurrentJam": true,
|
413
|
+
"jamCount": 3,
|
414
|
+
"joinedDate": "Sun, 25 Mar 2012 09:57:42 +0000",
|
415
|
+
"name": "Lannuss",
|
416
|
+
"representativeArtists": [
|
417
|
+
"The Beach Boys",
|
418
|
+
"Sounds Of Blackness"
|
419
|
+
],
|
420
|
+
"twitterName": "Lannuss",
|
421
|
+
"url": "http://www.thisismyjam.com/Lannuss"
|
422
|
+
},
|
423
|
+
{
|
424
|
+
"apiUrl": "http://api.thisismyjam.com/1/Doddy.json?key=987bcab01b929eb2c07877b224215c92",
|
425
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_896ed9bd7233e58b4527a12963ab69ea_128.jpg",
|
426
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_896ed9bd7233e58b4527a12963ab69ea_small.jpg",
|
427
|
+
"bio": "Music ramblings of an ordinary man.",
|
428
|
+
"facebookID": "605763693",
|
429
|
+
"followers": "http://api.thisismyjam.com/1/Doddy/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
430
|
+
"followersCount": 28,
|
431
|
+
"following": "http://api.thisismyjam.com/1/Doddy/following.json?key=987bcab01b929eb2c07877b224215c92",
|
432
|
+
"followingCount": 69,
|
433
|
+
"fullname": "James aka Doddy",
|
434
|
+
"hasCurrentJam": true,
|
435
|
+
"jamCount": 36,
|
436
|
+
"joinedDate": "Sat, 18 Feb 2012 13:38:34 +0000",
|
437
|
+
"name": "Doddy",
|
438
|
+
"representativeArtists": [
|
439
|
+
"The Beach Boys",
|
440
|
+
"Spiritualized",
|
441
|
+
"LFO",
|
442
|
+
"LuLu"
|
443
|
+
],
|
444
|
+
"twitterName": "vibert73",
|
445
|
+
"url": "http://www.thisismyjam.com/Doddy"
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"apiUrl": "http://api.thisismyjam.com/1/lavoie.json?key=987bcab01b929eb2c07877b224215c92",
|
449
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_71364e4d20a67dedb33c757720a74329_128.jpg",
|
450
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_71364e4d20a67dedb33c757720a74329_small.jpg",
|
451
|
+
"bio": "( \uff9f_\u309d\uff9f) THERE'S A LOT OF COOL STUFF ON THE INTERNET. http://gplus.to/lavoie / http://www.twitter.com/lavoie",
|
452
|
+
"facebookID": "41503807",
|
453
|
+
"followers": "http://api.thisismyjam.com/1/lavoie/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
454
|
+
"followersCount": 112,
|
455
|
+
"following": "http://api.thisismyjam.com/1/lavoie/following.json?key=987bcab01b929eb2c07877b224215c92",
|
456
|
+
"followingCount": 142,
|
457
|
+
"fullname": "LAVOIE~~",
|
458
|
+
"hasCurrentJam": true,
|
459
|
+
"jamCount": 49,
|
460
|
+
"joinedDate": "Wed, 23 Nov 2011 16:26:25 +0000",
|
461
|
+
"lastfmName": "hopeunknown",
|
462
|
+
"name": "lavoie",
|
463
|
+
"representativeArtists": [
|
464
|
+
"The Beach Boys",
|
465
|
+
"The Blow",
|
466
|
+
"Nite Jewel"
|
467
|
+
],
|
468
|
+
"twitterName": "lavoie",
|
469
|
+
"url": "http://www.thisismyjam.com/lavoie"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"apiUrl": "http://api.thisismyjam.com/1/bobtheidiot.json?key=987bcab01b929eb2c07877b224215c92",
|
473
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_2e6b0d17a27dcc3a3032b10d2ccc7dd3_128.jpg",
|
474
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_2e6b0d17a27dcc3a3032b10d2ccc7dd3_small.jpg",
|
475
|
+
"bio": "",
|
476
|
+
"followers": "http://api.thisismyjam.com/1/bobtheidiot/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
477
|
+
"followersCount": 15,
|
478
|
+
"following": "http://api.thisismyjam.com/1/bobtheidiot/following.json?key=987bcab01b929eb2c07877b224215c92",
|
479
|
+
"followingCount": 11,
|
480
|
+
"fullname": "Bob",
|
481
|
+
"hasCurrentJam": false,
|
482
|
+
"jamCount": 10,
|
483
|
+
"joinedDate": "Wed, 15 Feb 2012 09:40:14 +0000",
|
484
|
+
"name": "bobtheidiot",
|
485
|
+
"representativeArtists": [
|
486
|
+
"The Beach Boys",
|
487
|
+
"Aimee Mann",
|
488
|
+
"Laura Marling"
|
489
|
+
],
|
490
|
+
"twitterName": "bobtheidiot",
|
491
|
+
"url": "http://www.thisismyjam.com/bobtheidiot"
|
492
|
+
},
|
493
|
+
{
|
494
|
+
"apiUrl": "http://api.thisismyjam.com/1/AurlieRenard.json?key=987bcab01b929eb2c07877b224215c92",
|
495
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_14b1e88e4afd0f7630cd997d8711b11d_128.jpg",
|
496
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_14b1e88e4afd0f7630cd997d8711b11d_small.jpg",
|
497
|
+
"bio": "\"\u00c0 toute heure chien pisse et femme pleure\"",
|
498
|
+
"facebookID": "716335551",
|
499
|
+
"followers": "http://api.thisismyjam.com/1/AurlieRenard/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
500
|
+
"followersCount": 0,
|
501
|
+
"following": "http://api.thisismyjam.com/1/AurlieRenard/following.json?key=987bcab01b929eb2c07877b224215c92",
|
502
|
+
"followingCount": 0,
|
503
|
+
"fullname": "Aur\u00e9lie Renard",
|
504
|
+
"hasCurrentJam": false,
|
505
|
+
"jamCount": 2,
|
506
|
+
"joinedDate": "Sat, 17 Mar 2012 14:22:41 +0000",
|
507
|
+
"name": "AurlieRenard",
|
508
|
+
"representativeArtists": [
|
509
|
+
"The Beach Boys"
|
510
|
+
],
|
511
|
+
"url": "http://www.thisismyjam.com/AurlieRenard"
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"apiUrl": "http://api.thisismyjam.com/1/Conagh_Murphy.json?key=987bcab01b929eb2c07877b224215c92",
|
515
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_7a49e466ab61f13be9ca243f10988f6a_128.jpg",
|
516
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_7a49e466ab61f13be9ca243f10988f6a_small.jpg",
|
517
|
+
"bio": "16 years old from Blackpool, guitarist and songwriter for Terms and Conditions, future changer of the world",
|
518
|
+
"facebookID": "1204236300",
|
519
|
+
"followers": "http://api.thisismyjam.com/1/Conagh_Murphy/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
520
|
+
"followersCount": 69,
|
521
|
+
"following": "http://api.thisismyjam.com/1/Conagh_Murphy/following.json?key=987bcab01b929eb2c07877b224215c92",
|
522
|
+
"followingCount": 26,
|
523
|
+
"fullname": "Conagh_Murphy",
|
524
|
+
"hasCurrentJam": true,
|
525
|
+
"jamCount": 49,
|
526
|
+
"joinedDate": "Tue, 24 Jan 2012 19:26:36 +0000",
|
527
|
+
"name": "Conagh_Murphy",
|
528
|
+
"representativeArtists": [
|
529
|
+
"The Beach Boys",
|
530
|
+
"The Smiths",
|
531
|
+
"Blur",
|
532
|
+
"The Kinks"
|
533
|
+
],
|
534
|
+
"twitterName": "Conagh_Murphy",
|
535
|
+
"url": "http://www.thisismyjam.com/Conagh_Murphy"
|
536
|
+
},
|
537
|
+
{
|
538
|
+
"apiUrl": "http://api.thisismyjam.com/1/siobhangalpin.json?key=987bcab01b929eb2c07877b224215c92",
|
539
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_91813f08140dd6dcd6828ab9890afded_128.jpg",
|
540
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_91813f08140dd6dcd6828ab9890afded_small.jpg",
|
541
|
+
"bio": "I'm 14 years old and I love to live",
|
542
|
+
"facebookID": "1317662815",
|
543
|
+
"followers": "http://api.thisismyjam.com/1/siobhangalpin/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
544
|
+
"followersCount": 21,
|
545
|
+
"following": "http://api.thisismyjam.com/1/siobhangalpin/following.json?key=987bcab01b929eb2c07877b224215c92",
|
546
|
+
"followingCount": 15,
|
547
|
+
"fullname": "Siobhan Adriana",
|
548
|
+
"hasCurrentJam": true,
|
549
|
+
"jamCount": 8,
|
550
|
+
"joinedDate": "Tue, 06 Mar 2012 01:59:43 +0000",
|
551
|
+
"name": "siobhangalpin",
|
552
|
+
"representativeArtists": [
|
553
|
+
"The Beach Boys",
|
554
|
+
"Bon Iver",
|
555
|
+
"The Killers"
|
556
|
+
],
|
557
|
+
"url": "http://www.thisismyjam.com/siobhangalpin"
|
558
|
+
},
|
559
|
+
{
|
560
|
+
"apiUrl": "http://api.thisismyjam.com/1/bluequicksilver.json?key=987bcab01b929eb2c07877b224215c92",
|
561
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_a51b06e7fce0393d13cc3ef740645635_128.jpg",
|
562
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_a51b06e7fce0393d13cc3ef740645635_small.jpg",
|
563
|
+
"bio": "\"Never get involved in a land war in Asia.\" - Vizzini\n\nIf you ask, I will tell.",
|
564
|
+
"facebookID": "1402617267",
|
565
|
+
"followers": "http://api.thisismyjam.com/1/bluequicksilver/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
566
|
+
"followersCount": 6,
|
567
|
+
"following": "http://api.thisismyjam.com/1/bluequicksilver/following.json?key=987bcab01b929eb2c07877b224215c92",
|
568
|
+
"followingCount": 2,
|
569
|
+
"fullname": "Jason Cole",
|
570
|
+
"hasCurrentJam": true,
|
571
|
+
"jamCount": 13,
|
572
|
+
"joinedDate": "Wed, 21 Mar 2012 14:56:29 +0000",
|
573
|
+
"name": "bluequicksilver",
|
574
|
+
"representativeArtists": [
|
575
|
+
"Beach Boys",
|
576
|
+
"Priory",
|
577
|
+
"Cocteau Twins"
|
578
|
+
],
|
579
|
+
"url": "http://www.thisismyjam.com/bluequicksilver"
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"apiUrl": "http://api.thisismyjam.com/1/RobinKimball.json?key=987bcab01b929eb2c07877b224215c92",
|
583
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_c6b39e8fc4cfcb44fdb8a75443aa05ed_128.jpg",
|
584
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_c6b39e8fc4cfcb44fdb8a75443aa05ed_small.jpg",
|
585
|
+
"bio": "...that baby face with an eyebrow that says, 'I know what I want.'",
|
586
|
+
"followers": "http://api.thisismyjam.com/1/RobinKimball/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
587
|
+
"followersCount": 41,
|
588
|
+
"following": "http://api.thisismyjam.com/1/RobinKimball/following.json?key=987bcab01b929eb2c07877b224215c92",
|
589
|
+
"followingCount": 34,
|
590
|
+
"fullname": "Robin Kimball",
|
591
|
+
"hasCurrentJam": false,
|
592
|
+
"jamCount": 48,
|
593
|
+
"joinedDate": "Fri, 09 Dec 2011 01:43:26 +0000",
|
594
|
+
"name": "RobinKimball",
|
595
|
+
"representativeArtists": [
|
596
|
+
"The Beach Boys",
|
597
|
+
"The Slits",
|
598
|
+
"Velvet Underground",
|
599
|
+
"LCD Soundsystem"
|
600
|
+
],
|
601
|
+
"twitterName": "RobinKimball",
|
602
|
+
"url": "http://www.thisismyjam.com/RobinKimball"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"apiUrl": "http://api.thisismyjam.com/1/ABMorse.json?key=987bcab01b929eb2c07877b224215c92",
|
606
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_0120f1a46349a67d3066a983fdb75eb2_128.jpg",
|
607
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_0120f1a46349a67d3066a983fdb75eb2_small.jpg",
|
608
|
+
"bio": "A celebrated 19th-century American folk hero, frontiersman, soldier and politician.",
|
609
|
+
"facebookID": "124400241",
|
610
|
+
"followers": "http://api.thisismyjam.com/1/ABMorse/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
611
|
+
"followersCount": 5,
|
612
|
+
"following": "http://api.thisismyjam.com/1/ABMorse/following.json?key=987bcab01b929eb2c07877b224215c92",
|
613
|
+
"followingCount": 5,
|
614
|
+
"fullname": "Andrew Morse",
|
615
|
+
"hasCurrentJam": true,
|
616
|
+
"jamCount": 24,
|
617
|
+
"joinedDate": "Thu, 15 Mar 2012 05:54:33 +0000",
|
618
|
+
"name": "ABMorse",
|
619
|
+
"representativeArtists": [
|
620
|
+
"The Beach Boys",
|
621
|
+
"Tom Waits",
|
622
|
+
"Jackie Chan",
|
623
|
+
"Chris Isaak"
|
624
|
+
],
|
625
|
+
"twitterName": "ABMorse",
|
626
|
+
"url": "http://www.thisismyjam.com/ABMorse"
|
627
|
+
},
|
628
|
+
{
|
629
|
+
"apiUrl": "http://api.thisismyjam.com/1/radiomaru.json?key=987bcab01b929eb2c07877b224215c92",
|
630
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_68106bcd1ce36dcb8ffa2d5a3b3c0bce_128.gif",
|
631
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_68106bcd1ce36dcb8ffa2d5a3b3c0bce_small.gif",
|
632
|
+
"bio": "Bryan Lee O'Malley is an alive person who is not dead.",
|
633
|
+
"followers": "http://api.thisismyjam.com/1/radiomaru/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
634
|
+
"followersCount": 2728,
|
635
|
+
"following": "http://api.thisismyjam.com/1/radiomaru/following.json?key=987bcab01b929eb2c07877b224215c92",
|
636
|
+
"followingCount": 31,
|
637
|
+
"fullname": "Bryan Lee O'Malley",
|
638
|
+
"hasCurrentJam": true,
|
639
|
+
"jamCount": 43,
|
640
|
+
"joinedDate": "Tue, 06 Dec 2011 19:09:58 +0000",
|
641
|
+
"name": "radiomaru",
|
642
|
+
"representativeArtists": [
|
643
|
+
"The Beach Boys",
|
644
|
+
"Cut/Copy",
|
645
|
+
"Girls",
|
646
|
+
"Chairlift"
|
647
|
+
],
|
648
|
+
"url": "http://www.thisismyjam.com/radiomaru"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"apiUrl": "http://api.thisismyjam.com/1/dylan.todd.json?key=987bcab01b929eb2c07877b224215c92",
|
652
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_cdbef0cebf11016238f12da99cc4f9b9_128.jpg",
|
653
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_cdbef0cebf11016238f12da99cc4f9b9_small.jpg",
|
654
|
+
"bio": "We are the men that you'll grow to love soon.",
|
655
|
+
"facebookID": "674614447",
|
656
|
+
"followers": "http://api.thisismyjam.com/1/dylan.todd/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
657
|
+
"followersCount": 109,
|
658
|
+
"following": "http://api.thisismyjam.com/1/dylan.todd/following.json?key=987bcab01b929eb2c07877b224215c92",
|
659
|
+
"followingCount": 48,
|
660
|
+
"fullname": "Dylan Todd",
|
661
|
+
"hasCurrentJam": true,
|
662
|
+
"jamCount": 123,
|
663
|
+
"joinedDate": "Thu, 15 Dec 2011 23:15:57 +0000",
|
664
|
+
"name": "dylan.todd",
|
665
|
+
"representativeArtists": [
|
666
|
+
"The Beach Boys",
|
667
|
+
"Pavement",
|
668
|
+
"Guided By Voices",
|
669
|
+
"The Clash"
|
670
|
+
],
|
671
|
+
"twitterName": "bigredrobot",
|
672
|
+
"url": "http://www.thisismyjam.com/dylan.todd"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"apiUrl": "http://api.thisismyjam.com/1/badmachinery.json?key=987bcab01b929eb2c07877b224215c92",
|
676
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_dc575fb76dc0248f7a090be67bf99684_128.png",
|
677
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_dc575fb76dc0248f7a090be67bf99684_small.png",
|
678
|
+
"bio": "Tweaking music's mortoned toe.",
|
679
|
+
"followers": "http://api.thisismyjam.com/1/badmachinery/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
680
|
+
"followersCount": 418,
|
681
|
+
"following": "http://api.thisismyjam.com/1/badmachinery/following.json?key=987bcab01b929eb2c07877b224215c92",
|
682
|
+
"followingCount": 25,
|
683
|
+
"fullname": "John Allison",
|
684
|
+
"hasCurrentJam": true,
|
685
|
+
"jamCount": 41,
|
686
|
+
"joinedDate": "Thu, 20 Oct 2011 20:48:56 +0000",
|
687
|
+
"lastfmName": "freedomeagle",
|
688
|
+
"name": "badmachinery",
|
689
|
+
"representativeArtists": [
|
690
|
+
"The Beach Boys",
|
691
|
+
"Each Other",
|
692
|
+
"Whiskeytown",
|
693
|
+
"Mount Eerie"
|
694
|
+
],
|
695
|
+
"url": "http://www.thisismyjam.com/badmachinery"
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"apiUrl": "http://api.thisismyjam.com/1/MontyCantsin.json?key=987bcab01b929eb2c07877b224215c92",
|
699
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_1bdff56c415b21a55714c686716aceab_128.jpg",
|
700
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_1bdff56c415b21a55714c686716aceab_small.jpg",
|
701
|
+
"bio": "",
|
702
|
+
"followers": "http://api.thisismyjam.com/1/MontyCantsin/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
703
|
+
"followersCount": 0,
|
704
|
+
"following": "http://api.thisismyjam.com/1/MontyCantsin/following.json?key=987bcab01b929eb2c07877b224215c92",
|
705
|
+
"followingCount": 1,
|
706
|
+
"fullname": "Monty Cantsin",
|
707
|
+
"hasCurrentJam": true,
|
708
|
+
"jamCount": 49,
|
709
|
+
"joinedDate": "Sun, 20 Nov 2011 22:21:16 +0000",
|
710
|
+
"name": "MontyCantsin",
|
711
|
+
"representativeArtists": [
|
712
|
+
"The Beach Boys",
|
713
|
+
"Lou Reed",
|
714
|
+
"Johnny Osbourne",
|
715
|
+
"Modern Beijing Opera\u00a0"
|
716
|
+
],
|
717
|
+
"url": "http://www.thisismyjam.com/MontyCantsin"
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"apiUrl": "http://api.thisismyjam.com/1/jamesbatsford.json?key=987bcab01b929eb2c07877b224215c92",
|
721
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_2970be6e1e56fc1121db79ab232430ce_128.jpg",
|
722
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_2970be6e1e56fc1121db79ab232430ce_small.jpg",
|
723
|
+
"bio": "Invisible man who can sing in a visible voice",
|
724
|
+
"facebookID": "1313419825",
|
725
|
+
"followers": "http://api.thisismyjam.com/1/jamesbatsford/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
726
|
+
"followersCount": 7,
|
727
|
+
"following": "http://api.thisismyjam.com/1/jamesbatsford/following.json?key=987bcab01b929eb2c07877b224215c92",
|
728
|
+
"followingCount": 12,
|
729
|
+
"fullname": "James Batsford",
|
730
|
+
"hasCurrentJam": true,
|
731
|
+
"jamCount": 5,
|
732
|
+
"joinedDate": "Mon, 19 Mar 2012 16:54:59 +0000",
|
733
|
+
"name": "jamesbatsford",
|
734
|
+
"representativeArtists": [
|
735
|
+
"The Beach Boys",
|
736
|
+
"The Chairmen Of The Board",
|
737
|
+
"Steely Dan",
|
738
|
+
"Mike Wexler"
|
739
|
+
],
|
740
|
+
"twitterName": "jamesdbatsford",
|
741
|
+
"url": "http://www.thisismyjam.com/jamesbatsford"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"apiUrl": "http://api.thisismyjam.com/1/rhayes827.json?key=987bcab01b929eb2c07877b224215c92",
|
745
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_b6daf24aa66066c2d80779414c559220_128.jpg",
|
746
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_b6daf24aa66066c2d80779414c559220_small.jpg",
|
747
|
+
"bio": "\"Dream as if you'll live forever; live as if you'll die tomorrow.\" - James Dean",
|
748
|
+
"facebookID": "809650693",
|
749
|
+
"followers": "http://api.thisismyjam.com/1/rhayes827/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
750
|
+
"followersCount": 7,
|
751
|
+
"following": "http://api.thisismyjam.com/1/rhayes827/following.json?key=987bcab01b929eb2c07877b224215c92",
|
752
|
+
"followingCount": 6,
|
753
|
+
"fullname": "Rebecca Hayes",
|
754
|
+
"hasCurrentJam": true,
|
755
|
+
"jamCount": 15,
|
756
|
+
"joinedDate": "Wed, 25 Jan 2012 02:20:50 +0000",
|
757
|
+
"name": "rhayes827",
|
758
|
+
"representativeArtists": [
|
759
|
+
"The Beach Boys",
|
760
|
+
"Lauryn Hill",
|
761
|
+
"Lykke Li",
|
762
|
+
"Noisettes"
|
763
|
+
],
|
764
|
+
"url": "http://www.thisismyjam.com/rhayes827"
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"apiUrl": "http://api.thisismyjam.com/1/hellokatie.json?key=987bcab01b929eb2c07877b224215c92",
|
768
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_887569265e91cbdb76c22d92198d66ac_128.jpg",
|
769
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_887569265e91cbdb76c22d92198d66ac_small.jpg",
|
770
|
+
"bio": "Art Graduate, Music Geek, collector of tack, red lipped idiot",
|
771
|
+
"followers": "http://api.thisismyjam.com/1/hellokatie/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
772
|
+
"followersCount": 4,
|
773
|
+
"following": "http://api.thisismyjam.com/1/hellokatie/following.json?key=987bcab01b929eb2c07877b224215c92",
|
774
|
+
"followingCount": 8,
|
775
|
+
"fullname": "katie B",
|
776
|
+
"hasCurrentJam": true,
|
777
|
+
"jamCount": 13,
|
778
|
+
"joinedDate": "Thu, 09 Feb 2012 01:24:32 +0000",
|
779
|
+
"name": "hellokatie",
|
780
|
+
"representativeArtists": [
|
781
|
+
"The Beach Boys",
|
782
|
+
"Montell Jordan",
|
783
|
+
"The Cure",
|
784
|
+
"Japandroids"
|
785
|
+
],
|
786
|
+
"twitterName": "katiecutspaper",
|
787
|
+
"url": "http://www.thisismyjam.com/hellokatie"
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"apiUrl": "http://api.thisismyjam.com/1/TheNintenGenius.json?key=987bcab01b929eb2c07877b224215c92",
|
791
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_66f43e657b1978baa35f566ac63c577d_128.gif",
|
792
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_66f43e657b1978baa35f566ac63c577d_small.gif",
|
793
|
+
"bio": "I listen to all sortsa crazy bullshit. Like, whoooaaaaa",
|
794
|
+
"followers": "http://api.thisismyjam.com/1/TheNintenGenius/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
795
|
+
"followersCount": 15,
|
796
|
+
"following": "http://api.thisismyjam.com/1/TheNintenGenius/following.json?key=987bcab01b929eb2c07877b224215c92",
|
797
|
+
"followingCount": 23,
|
798
|
+
"fullname": "T.S.",
|
799
|
+
"hasCurrentJam": true,
|
800
|
+
"jamCount": 47,
|
801
|
+
"joinedDate": "Fri, 10 Feb 2012 00:38:21 +0000",
|
802
|
+
"name": "TheNintenGenius",
|
803
|
+
"representativeArtists": [
|
804
|
+
"The Beach Boys",
|
805
|
+
"Captain & Tennille",
|
806
|
+
"Sweet",
|
807
|
+
"The Flaming Lips"
|
808
|
+
],
|
809
|
+
"twitterName": "TheNintenGenius",
|
810
|
+
"url": "http://www.thisismyjam.com/TheNintenGenius"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"apiUrl": "http://api.thisismyjam.com/1/sharifedak.json?key=987bcab01b929eb2c07877b224215c92",
|
814
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_1ca484aa904c24892d788ac36dea035b_128.jpg",
|
815
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_1ca484aa904c24892d788ac36dea035b_small.jpg",
|
816
|
+
"bio": "Punk rocker, keyboard nerd, cat owner, dress enthusiast ",
|
817
|
+
"facebookID": "584287266",
|
818
|
+
"followers": "http://api.thisismyjam.com/1/sharifedak/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
819
|
+
"followersCount": 8,
|
820
|
+
"following": "http://api.thisismyjam.com/1/sharifedak/following.json?key=987bcab01b929eb2c07877b224215c92",
|
821
|
+
"followingCount": 4,
|
822
|
+
"fullname": "Shari Fedak",
|
823
|
+
"hasCurrentJam": true,
|
824
|
+
"jamCount": 25,
|
825
|
+
"joinedDate": "Sat, 10 Dec 2011 14:00:35 +0000",
|
826
|
+
"name": "sharifedak",
|
827
|
+
"representativeArtists": [
|
828
|
+
"The Beach Boys",
|
829
|
+
"The Rapture",
|
830
|
+
"S*M*A*S*H",
|
831
|
+
"David Devant And His Spirit Wife"
|
832
|
+
],
|
833
|
+
"url": "http://www.thisismyjam.com/sharifedak"
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"apiUrl": "http://api.thisismyjam.com/1/aideenmccole.json?key=987bcab01b929eb2c07877b224215c92",
|
837
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_01740088fdef47433fa0e72af0e062a7_128.jpg",
|
838
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_01740088fdef47433fa0e72af0e062a7_small.jpg",
|
839
|
+
"bio": "The official twitter account for Aideen McCole.",
|
840
|
+
"followers": "http://api.thisismyjam.com/1/aideenmccole/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
841
|
+
"followersCount": 0,
|
842
|
+
"following": "http://api.thisismyjam.com/1/aideenmccole/following.json?key=987bcab01b929eb2c07877b224215c92",
|
843
|
+
"followingCount": 0,
|
844
|
+
"fullname": "Aideen McCole",
|
845
|
+
"hasCurrentJam": false,
|
846
|
+
"jamCount": 0,
|
847
|
+
"joinedDate": "Mon, 30 Jan 2012 10:16:34 +0000",
|
848
|
+
"name": "aideenmccole",
|
849
|
+
"representativeArtists": [
|
850
|
+
"Beach Boys"
|
851
|
+
],
|
852
|
+
"twitterName": "aideenmccole",
|
853
|
+
"url": "http://www.thisismyjam.com/aideenmccole"
|
854
|
+
},
|
855
|
+
{
|
856
|
+
"apiUrl": "http://api.thisismyjam.com/1/thecliffglenn.json?key=987bcab01b929eb2c07877b224215c92",
|
857
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_d3526dc6534f81798d2b35181b9af45d_128.jpg",
|
858
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_d3526dc6534f81798d2b35181b9af45d_small.jpg",
|
859
|
+
"bio": "Arrogant and boorish, in an endearing sort of way",
|
860
|
+
"facebookID": "546345857",
|
861
|
+
"followers": "http://api.thisismyjam.com/1/thecliffglenn/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
862
|
+
"followersCount": 1,
|
863
|
+
"following": "http://api.thisismyjam.com/1/thecliffglenn/following.json?key=987bcab01b929eb2c07877b224215c92",
|
864
|
+
"followingCount": 2,
|
865
|
+
"fullname": "Cliff Glenn",
|
866
|
+
"hasCurrentJam": true,
|
867
|
+
"jamCount": 2,
|
868
|
+
"joinedDate": "Fri, 16 Mar 2012 01:11:02 +0000",
|
869
|
+
"name": "thecliffglenn",
|
870
|
+
"representativeArtists": [
|
871
|
+
"The Beach Boys"
|
872
|
+
],
|
873
|
+
"twitterName": "thecliffglenn",
|
874
|
+
"url": "http://www.thisismyjam.com/thecliffglenn"
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"apiUrl": "http://api.thisismyjam.com/1/spacedave.json?key=987bcab01b929eb2c07877b224215c92",
|
878
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_573af84b5c6f4b9251c83e944986a94c_128.jpg",
|
879
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_573af84b5c6f4b9251c83e944986a94c_small.jpg",
|
880
|
+
"bio": "Who's the cat that won't cop out, when there's danger all about?",
|
881
|
+
"facebookID": "599580429",
|
882
|
+
"followers": "http://api.thisismyjam.com/1/spacedave/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
883
|
+
"followersCount": 3,
|
884
|
+
"following": "http://api.thisismyjam.com/1/spacedave/following.json?key=987bcab01b929eb2c07877b224215c92",
|
885
|
+
"followingCount": 9,
|
886
|
+
"fullname": "David Ruane",
|
887
|
+
"hasCurrentJam": false,
|
888
|
+
"jamCount": 8,
|
889
|
+
"joinedDate": "Tue, 13 Dec 2011 14:26:11 +0000",
|
890
|
+
"lastfmName": "MajorMcMuffin",
|
891
|
+
"name": "spacedave",
|
892
|
+
"representativeArtists": [
|
893
|
+
"The Beach Boys",
|
894
|
+
"Black Sheep",
|
895
|
+
"Grandmaster Flash",
|
896
|
+
"Marvin Gaye"
|
897
|
+
],
|
898
|
+
"twitterName": "majormcmuffin",
|
899
|
+
"url": "http://www.thisismyjam.com/spacedave"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"apiUrl": "http://api.thisismyjam.com/1/SElizabethMcGe.json?key=987bcab01b929eb2c07877b224215c92",
|
903
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_a4c3a633ef1203eeef9b2b775a81814e_128.jpg",
|
904
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_a4c3a633ef1203eeef9b2b775a81814e_small.jpg",
|
905
|
+
"bio": "poet, songwriter, social researcher",
|
906
|
+
"facebookID": "122702152",
|
907
|
+
"followers": "http://api.thisismyjam.com/1/SElizabethMcGe/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
908
|
+
"followersCount": 13,
|
909
|
+
"following": "http://api.thisismyjam.com/1/SElizabethMcGe/following.json?key=987bcab01b929eb2c07877b224215c92",
|
910
|
+
"followingCount": 34,
|
911
|
+
"fullname": "S Elizabeth McGee",
|
912
|
+
"hasCurrentJam": false,
|
913
|
+
"jamCount": 14,
|
914
|
+
"joinedDate": "Wed, 14 Mar 2012 03:46:31 +0000",
|
915
|
+
"name": "SElizabethMcGe",
|
916
|
+
"representativeArtists": [
|
917
|
+
"The Beach Boys",
|
918
|
+
"Beach House",
|
919
|
+
"Future Islands",
|
920
|
+
"Bruce Springsteen"
|
921
|
+
],
|
922
|
+
"twitterName": "eliz_pearl",
|
923
|
+
"url": "http://www.thisismyjam.com/SElizabethMcGe"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"apiUrl": "http://api.thisismyjam.com/1/darrananderson.json?key=987bcab01b929eb2c07877b224215c92",
|
927
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_5841b6b802e0b79266c5b0d1c8537482_128.jpg",
|
928
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_5841b6b802e0b79266c5b0d1c8537482_small.jpg",
|
929
|
+
"bio": "creator of brain tonics & penny dreadfuls.",
|
930
|
+
"followers": "http://api.thisismyjam.com/1/darrananderson/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
931
|
+
"followersCount": 11,
|
932
|
+
"following": "http://api.thisismyjam.com/1/darrananderson/following.json?key=987bcab01b929eb2c07877b224215c92",
|
933
|
+
"followingCount": 14,
|
934
|
+
"fullname": "Darran Anderson",
|
935
|
+
"hasCurrentJam": true,
|
936
|
+
"jamCount": 31,
|
937
|
+
"joinedDate": "Sun, 08 Jan 2012 19:38:30 +0000",
|
938
|
+
"name": "darrananderson",
|
939
|
+
"representativeArtists": [
|
940
|
+
"The Beach Boys",
|
941
|
+
"Radiohead",
|
942
|
+
"Azealia Banks",
|
943
|
+
"John Frusciante"
|
944
|
+
],
|
945
|
+
"twitterName": "darrananderson1",
|
946
|
+
"url": "http://www.thisismyjam.com/darrananderson"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"apiUrl": "http://api.thisismyjam.com/1/JonEjacobs.json?key=987bcab01b929eb2c07877b224215c92",
|
950
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_ac1b76eb991220b54273167c24be5ee2_128.jpg",
|
951
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_ac1b76eb991220b54273167c24be5ee2_small.jpg",
|
952
|
+
"bio": "Oh The Braided Twists We Eat...",
|
953
|
+
"facebookID": "1375320023",
|
954
|
+
"followers": "http://api.thisismyjam.com/1/JonEjacobs/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
955
|
+
"followersCount": 5,
|
956
|
+
"following": "http://api.thisismyjam.com/1/JonEjacobs/following.json?key=987bcab01b929eb2c07877b224215c92",
|
957
|
+
"followingCount": 2,
|
958
|
+
"fullname": "Jonathan Jacobs",
|
959
|
+
"hasCurrentJam": true,
|
960
|
+
"jamCount": 13,
|
961
|
+
"joinedDate": "Sat, 11 Feb 2012 15:45:30 +0000",
|
962
|
+
"name": "JonEjacobs",
|
963
|
+
"representativeArtists": [
|
964
|
+
"The Beach Boys",
|
965
|
+
"ABBA",
|
966
|
+
"Bobby Darin"
|
967
|
+
],
|
968
|
+
"url": "http://www.thisismyjam.com/JonEjacobs"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"apiUrl": "http://api.thisismyjam.com/1/whereswallacea.json?key=987bcab01b929eb2c07877b224215c92",
|
972
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_3fac20b014c421a33860f69b28b99cc5_128.jpg",
|
973
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_3fac20b014c421a33860f69b28b99cc5_small.jpg",
|
974
|
+
"bio": "",
|
975
|
+
"facebookID": "634830315",
|
976
|
+
"followers": "http://api.thisismyjam.com/1/whereswallacea/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
977
|
+
"followersCount": 11,
|
978
|
+
"following": "http://api.thisismyjam.com/1/whereswallacea/following.json?key=987bcab01b929eb2c07877b224215c92",
|
979
|
+
"followingCount": 9,
|
980
|
+
"fullname": "Jollace Wallace",
|
981
|
+
"hasCurrentJam": true,
|
982
|
+
"jamCount": 19,
|
983
|
+
"joinedDate": "Tue, 08 Nov 2011 17:17:19 +0000",
|
984
|
+
"name": "whereswallacea",
|
985
|
+
"representativeArtists": [
|
986
|
+
"The Beach Boys",
|
987
|
+
"William Shatner",
|
988
|
+
"Beck",
|
989
|
+
"Brian Eno"
|
990
|
+
],
|
991
|
+
"url": "http://www.thisismyjam.com/whereswallacea"
|
992
|
+
},
|
993
|
+
{
|
994
|
+
"apiUrl": "http://api.thisismyjam.com/1/rightwong.json?key=987bcab01b929eb2c07877b224215c92",
|
995
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_66dd42f1f96657143591b7c62e2d8fdc_128.jpg",
|
996
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_66dd42f1f96657143591b7c62e2d8fdc_small.jpg",
|
997
|
+
"bio": "",
|
998
|
+
"followers": "http://api.thisismyjam.com/1/rightwong/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
999
|
+
"followersCount": 8,
|
1000
|
+
"following": "http://api.thisismyjam.com/1/rightwong/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1001
|
+
"followingCount": 0,
|
1002
|
+
"fullname": "Kim Wong",
|
1003
|
+
"hasCurrentJam": true,
|
1004
|
+
"jamCount": 27,
|
1005
|
+
"joinedDate": "Fri, 23 Dec 2011 19:45:40 +0000",
|
1006
|
+
"name": "rightwong",
|
1007
|
+
"representativeArtists": [
|
1008
|
+
"The Beach Boys",
|
1009
|
+
"Elvis Costello",
|
1010
|
+
"Panacea",
|
1011
|
+
"Pantera"
|
1012
|
+
],
|
1013
|
+
"twitterName": "rightwong",
|
1014
|
+
"url": "http://www.thisismyjam.com/rightwong"
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"apiUrl": "http://api.thisismyjam.com/1/JonDennis.json?key=987bcab01b929eb2c07877b224215c92",
|
1018
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_008e993ee11d2c827ed8879bb28974b5_128.jpg",
|
1019
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_008e993ee11d2c827ed8879bb28974b5_small.jpg",
|
1020
|
+
"bio": "I do stuff for the Guardian.",
|
1021
|
+
"followers": "http://api.thisismyjam.com/1/JonDennis/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1022
|
+
"followersCount": 19,
|
1023
|
+
"following": "http://api.thisismyjam.com/1/JonDennis/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1024
|
+
"followingCount": 34,
|
1025
|
+
"fullname": "Jon Dennis",
|
1026
|
+
"hasCurrentJam": true,
|
1027
|
+
"jamCount": 56,
|
1028
|
+
"joinedDate": "Thu, 19 Jan 2012 09:44:19 +0000",
|
1029
|
+
"name": "JonDennis",
|
1030
|
+
"representativeArtists": [
|
1031
|
+
"The Beach Boys",
|
1032
|
+
"Joe Quarterman & Free Soul",
|
1033
|
+
"Nancy Sinatra & Lee Hazlewood",
|
1034
|
+
"The Electric Eels"
|
1035
|
+
],
|
1036
|
+
"twitterName": "JonDennis",
|
1037
|
+
"url": "http://www.thisismyjam.com/JonDennis"
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"apiUrl": "http://api.thisismyjam.com/1/studawg.json?key=987bcab01b929eb2c07877b224215c92",
|
1041
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_c05f9831a44b210d23961d91382a07e8_128.png",
|
1042
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_c05f9831a44b210d23961d91382a07e8_small.png",
|
1043
|
+
"bio": "I like to drink good beer.",
|
1044
|
+
"followers": "http://api.thisismyjam.com/1/studawg/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1045
|
+
"followersCount": 10,
|
1046
|
+
"following": "http://api.thisismyjam.com/1/studawg/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1047
|
+
"followingCount": 30,
|
1048
|
+
"fullname": "Stuart Wood",
|
1049
|
+
"hasCurrentJam": true,
|
1050
|
+
"jamCount": 50,
|
1051
|
+
"joinedDate": "Wed, 22 Feb 2012 12:15:05 +0000",
|
1052
|
+
"name": "studawg",
|
1053
|
+
"representativeArtists": [
|
1054
|
+
"The Beach Boys",
|
1055
|
+
"Can",
|
1056
|
+
"Dickie Pride",
|
1057
|
+
"Brighouse & Rastrick Band"
|
1058
|
+
],
|
1059
|
+
"url": "http://www.thisismyjam.com/studawg"
|
1060
|
+
},
|
1061
|
+
{
|
1062
|
+
"apiUrl": "http://api.thisismyjam.com/1/ben_towle.json?key=987bcab01b929eb2c07877b224215c92",
|
1063
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_877538bd786277fbbb15106c4cdce159_128.jpg",
|
1064
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_877538bd786277fbbb15106c4cdce159_small.jpg",
|
1065
|
+
"bio": "Cartoonist, (occasional) teacher, multiple-Eisner nominee, general roustabout. My webcomic: http://oysterwar.tumblr.com",
|
1066
|
+
"followers": "http://api.thisismyjam.com/1/ben_towle/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1067
|
+
"followersCount": 23,
|
1068
|
+
"following": "http://api.thisismyjam.com/1/ben_towle/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1069
|
+
"followingCount": 24,
|
1070
|
+
"fullname": "Ben Towle",
|
1071
|
+
"hasCurrentJam": true,
|
1072
|
+
"jamCount": 22,
|
1073
|
+
"joinedDate": "Thu, 12 Jan 2012 19:59:05 +0000",
|
1074
|
+
"name": "ben_towle",
|
1075
|
+
"representativeArtists": [
|
1076
|
+
"Will C. x The Beach Boys",
|
1077
|
+
"The Music Machine",
|
1078
|
+
"Mitchmatic",
|
1079
|
+
"Stevie Wonder"
|
1080
|
+
],
|
1081
|
+
"twitterName": "ben_towle",
|
1082
|
+
"url": "http://www.thisismyjam.com/ben_towle"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"apiUrl": "http://api.thisismyjam.com/1/palespectre.json?key=987bcab01b929eb2c07877b224215c92",
|
1086
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_c6995afd95adedf9e3dddce29a28136a_128.jpg",
|
1087
|
+
"avatarSmall": "http://static03.thisismyjam.com/i/avtr_c6995afd95adedf9e3dddce29a28136a_small.jpg",
|
1088
|
+
"bio": "loneliness is an eyesore\r\nmusic is my boyfriend",
|
1089
|
+
"facebookID": "563276215",
|
1090
|
+
"followers": "http://api.thisismyjam.com/1/palespectre/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1091
|
+
"followersCount": 7,
|
1092
|
+
"following": "http://api.thisismyjam.com/1/palespectre/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1093
|
+
"followingCount": 31,
|
1094
|
+
"fullname": "",
|
1095
|
+
"hasCurrentJam": true,
|
1096
|
+
"jamCount": 8,
|
1097
|
+
"joinedDate": "Wed, 07 Mar 2012 17:38:59 +0000",
|
1098
|
+
"lastfmName": "palespectre",
|
1099
|
+
"name": "palespectre",
|
1100
|
+
"representativeArtists": [
|
1101
|
+
"The Beach Boys",
|
1102
|
+
"The Field Mice",
|
1103
|
+
"Memphis (Megane Mix)"
|
1104
|
+
],
|
1105
|
+
"url": "http://www.thisismyjam.com/palespectre"
|
1106
|
+
},
|
1107
|
+
{
|
1108
|
+
"apiUrl": "http://api.thisismyjam.com/1/Anil.json?key=987bcab01b929eb2c07877b224215c92",
|
1109
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_a052378a8bae88907ca2ab285acf5e43_128.jpg",
|
1110
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_a052378a8bae88907ca2ab285acf5e43_small.jpg",
|
1111
|
+
"bio": "",
|
1112
|
+
"facebookID": "100001281747698",
|
1113
|
+
"followers": "http://api.thisismyjam.com/1/Anil/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1114
|
+
"followersCount": 1,
|
1115
|
+
"following": "http://api.thisismyjam.com/1/Anil/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1116
|
+
"followingCount": 1,
|
1117
|
+
"fullname": "Anil Nitchingham",
|
1118
|
+
"hasCurrentJam": false,
|
1119
|
+
"jamCount": 3,
|
1120
|
+
"joinedDate": "Wed, 07 Mar 2012 10:46:58 +0000",
|
1121
|
+
"name": "Anil",
|
1122
|
+
"representativeArtists": [
|
1123
|
+
"The Beach Boys",
|
1124
|
+
"They Might Be Giants",
|
1125
|
+
"Bran Van 3000"
|
1126
|
+
],
|
1127
|
+
"url": "http://www.thisismyjam.com/Anil"
|
1128
|
+
},
|
1129
|
+
{
|
1130
|
+
"apiUrl": "http://api.thisismyjam.com/1/BrianLeeWalsh.json?key=987bcab01b929eb2c07877b224215c92",
|
1131
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_e3acb81357a43fb0e0ef345241d4cb64_128.jpg",
|
1132
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_e3acb81357a43fb0e0ef345241d4cb64_small.jpg",
|
1133
|
+
"bio": "Noshing in Egypt!\r\n\r\nHappily married to my college sweetheart for 31 years. Love people but love my quiet time too. Love to listen to live music. Love investing in the stock market. Early retired!!",
|
1134
|
+
"facebookID": "758934746",
|
1135
|
+
"followers": "http://api.thisismyjam.com/1/BrianLeeWalsh/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1136
|
+
"followersCount": 2,
|
1137
|
+
"following": "http://api.thisismyjam.com/1/BrianLeeWalsh/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1138
|
+
"followingCount": 4,
|
1139
|
+
"fullname": "Brian Walsh",
|
1140
|
+
"hasCurrentJam": true,
|
1141
|
+
"jamCount": 5,
|
1142
|
+
"joinedDate": "Sat, 10 Mar 2012 14:58:43 +0000",
|
1143
|
+
"name": "BrianLeeWalsh",
|
1144
|
+
"representativeArtists": [
|
1145
|
+
"The Beach Boys",
|
1146
|
+
"Ani DiFranco",
|
1147
|
+
"Gene Clark"
|
1148
|
+
],
|
1149
|
+
"twitterName": "briwal",
|
1150
|
+
"url": "http://www.thisismyjam.com/BrianLeeWalsh"
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"apiUrl": "http://api.thisismyjam.com/1/word.srsly.json?key=987bcab01b929eb2c07877b224215c92",
|
1154
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_c7649547aea521504b2d4dfc89398cf2_128.jpg",
|
1155
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_c7649547aea521504b2d4dfc89398cf2_small.jpg",
|
1156
|
+
"bio": "Andria was born to speak all mirth and no matter.",
|
1157
|
+
"facebookID": "1593134032",
|
1158
|
+
"followers": "http://api.thisismyjam.com/1/word.srsly/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1159
|
+
"followersCount": 10,
|
1160
|
+
"following": "http://api.thisismyjam.com/1/word.srsly/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1161
|
+
"followingCount": 13,
|
1162
|
+
"fullname": "Andria Waclawski",
|
1163
|
+
"hasCurrentJam": true,
|
1164
|
+
"jamCount": 45,
|
1165
|
+
"joinedDate": "Wed, 25 Jan 2012 15:43:54 +0000",
|
1166
|
+
"name": "word.srsly",
|
1167
|
+
"representativeArtists": [
|
1168
|
+
"The Beach Boys",
|
1169
|
+
"Soulwax",
|
1170
|
+
"Gorillaz",
|
1171
|
+
"Beck"
|
1172
|
+
],
|
1173
|
+
"twitterName": "SoBatman",
|
1174
|
+
"url": "http://www.thisismyjam.com/word.srsly"
|
1175
|
+
},
|
1176
|
+
{
|
1177
|
+
"apiUrl": "http://api.thisismyjam.com/1/tonyhughes07.json?key=987bcab01b929eb2c07877b224215c92",
|
1178
|
+
"avatarNormal": "http://static01.thisismyjam.com/i/avtr_c0150be0c4e3e25d72f5ae57c0cac5ab_128.jpg",
|
1179
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_c0150be0c4e3e25d72f5ae57c0cac5ab_small.jpg",
|
1180
|
+
"bio": "I have opinions of my own \u2013strong opinions\u2013 but I don\u2019t always agree with them, paddlocked to stormplum.",
|
1181
|
+
"followers": "http://api.thisismyjam.com/1/tonyhughes07/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1182
|
+
"followersCount": 13,
|
1183
|
+
"following": "http://api.thisismyjam.com/1/tonyhughes07/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1184
|
+
"followingCount": 21,
|
1185
|
+
"fullname": "The Big T",
|
1186
|
+
"hasCurrentJam": true,
|
1187
|
+
"jamCount": 48,
|
1188
|
+
"joinedDate": "Thu, 09 Feb 2012 16:59:35 +0000",
|
1189
|
+
"name": "tonyhughes07",
|
1190
|
+
"representativeArtists": [
|
1191
|
+
"The Beach Boys",
|
1192
|
+
"Oasis",
|
1193
|
+
"Bob Dylan",
|
1194
|
+
"Stevie Wonder"
|
1195
|
+
],
|
1196
|
+
"twitterName": "Dabigt",
|
1197
|
+
"url": "http://www.thisismyjam.com/tonyhughes07"
|
1198
|
+
},
|
1199
|
+
{
|
1200
|
+
"apiUrl": "http://api.thisismyjam.com/1/tinribs27.json?key=987bcab01b929eb2c07877b224215c92",
|
1201
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_3226b9e953019585d045f7100422410e_128.jpg",
|
1202
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_3226b9e953019585d045f7100422410e_small.jpg",
|
1203
|
+
"bio": "Part-time movie reviewer, full-time moron",
|
1204
|
+
"facebookID": "528166828",
|
1205
|
+
"followers": "http://api.thisismyjam.com/1/tinribs27/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1206
|
+
"followersCount": 2,
|
1207
|
+
"following": "http://api.thisismyjam.com/1/tinribs27/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1208
|
+
"followingCount": 0,
|
1209
|
+
"fullname": "Mark Roulston",
|
1210
|
+
"hasCurrentJam": false,
|
1211
|
+
"jamCount": 17,
|
1212
|
+
"joinedDate": "Tue, 07 Feb 2012 20:18:50 +0000",
|
1213
|
+
"name": "tinribs27",
|
1214
|
+
"representativeArtists": [
|
1215
|
+
"The Beach Boys",
|
1216
|
+
"The Menzingers",
|
1217
|
+
"Alkaline Trio",
|
1218
|
+
"The Weakerthans"
|
1219
|
+
],
|
1220
|
+
"twitterName": "tinribs27",
|
1221
|
+
"url": "http://www.thisismyjam.com/tinribs27"
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
"apiUrl": "http://api.thisismyjam.com/1/sian_superman.json?key=987bcab01b929eb2c07877b224215c92",
|
1225
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_1554c4646900763cb8e4432d3133b5b8_128.jpg",
|
1226
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_1554c4646900763cb8e4432d3133b5b8_small.jpg",
|
1227
|
+
"bio": "author. illustrator. founder of the hangover art club.",
|
1228
|
+
"followers": "http://api.thisismyjam.com/1/sian_superman/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1229
|
+
"followersCount": 58,
|
1230
|
+
"following": "http://api.thisismyjam.com/1/sian_superman/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1231
|
+
"followingCount": 28,
|
1232
|
+
"fullname": "sian pattenden",
|
1233
|
+
"hasCurrentJam": false,
|
1234
|
+
"jamCount": 24,
|
1235
|
+
"joinedDate": "Mon, 12 Dec 2011 15:35:47 +0000",
|
1236
|
+
"name": "sian_superman",
|
1237
|
+
"representativeArtists": [
|
1238
|
+
"The Beach Boys",
|
1239
|
+
"David Essex",
|
1240
|
+
"Lee Hazlewood",
|
1241
|
+
"Neil Diamond"
|
1242
|
+
],
|
1243
|
+
"twitterName": "sian_superman",
|
1244
|
+
"url": "http://www.thisismyjam.com/sian_superman"
|
1245
|
+
},
|
1246
|
+
{
|
1247
|
+
"apiUrl": "http://api.thisismyjam.com/1/breerussell55.json?key=987bcab01b929eb2c07877b224215c92",
|
1248
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_95b9db3c2e567b7d5c4dc7b6a244af1f_128.png",
|
1249
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_95b9db3c2e567b7d5c4dc7b6a244af1f_small.png",
|
1250
|
+
"bio": null,
|
1251
|
+
"followers": "http://api.thisismyjam.com/1/breerussell55/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1252
|
+
"followersCount": 0,
|
1253
|
+
"following": "http://api.thisismyjam.com/1/breerussell55/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1254
|
+
"followingCount": 0,
|
1255
|
+
"fullname": null,
|
1256
|
+
"hasCurrentJam": false,
|
1257
|
+
"jamCount": 4,
|
1258
|
+
"joinedDate": "Thu, 08 Mar 2012 02:31:13 +0000",
|
1259
|
+
"name": "breerussell55",
|
1260
|
+
"representativeArtists": [
|
1261
|
+
"The Beach Boys",
|
1262
|
+
"Trent Reznor and Atticus Ross",
|
1263
|
+
"Die Antwoord"
|
1264
|
+
],
|
1265
|
+
"url": "http://www.thisismyjam.com/breerussell55"
|
1266
|
+
},
|
1267
|
+
{
|
1268
|
+
"apiUrl": "http://api.thisismyjam.com/1/SNes.json?key=987bcab01b929eb2c07877b224215c92",
|
1269
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_e31d4459d7739c1108c596470b3f646a_128.jpg",
|
1270
|
+
"avatarSmall": "http://static01.thisismyjam.com/i/avtr_e31d4459d7739c1108c596470b3f646a_small.jpg",
|
1271
|
+
"bio": "here to learn more about music....educate me",
|
1272
|
+
"followers": "http://api.thisismyjam.com/1/SNes/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1273
|
+
"followersCount": 10,
|
1274
|
+
"following": "http://api.thisismyjam.com/1/SNes/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1275
|
+
"followingCount": 17,
|
1276
|
+
"fullname": "Sandra",
|
1277
|
+
"hasCurrentJam": false,
|
1278
|
+
"jamCount": 14,
|
1279
|
+
"joinedDate": "Tue, 06 Mar 2012 19:19:39 +0000",
|
1280
|
+
"name": "SNes",
|
1281
|
+
"representativeArtists": [
|
1282
|
+
"The Beach Boys",
|
1283
|
+
"Aerosmith",
|
1284
|
+
"Stevie Wonder"
|
1285
|
+
],
|
1286
|
+
"url": "http://www.thisismyjam.com/SNes"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"apiUrl": "http://api.thisismyjam.com/1/missyp88.json?key=987bcab01b929eb2c07877b224215c92",
|
1290
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_9f121c512a2b6b49949050e4ab023390_128.png",
|
1291
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_9f121c512a2b6b49949050e4ab023390_small.png",
|
1292
|
+
"bio": null,
|
1293
|
+
"followers": "http://api.thisismyjam.com/1/missyp88/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1294
|
+
"followersCount": 2,
|
1295
|
+
"following": "http://api.thisismyjam.com/1/missyp88/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1296
|
+
"followingCount": 3,
|
1297
|
+
"fullname": null,
|
1298
|
+
"hasCurrentJam": false,
|
1299
|
+
"jamCount": 1,
|
1300
|
+
"joinedDate": "Wed, 07 Mar 2012 20:46:21 +0000",
|
1301
|
+
"name": "missyp88",
|
1302
|
+
"representativeArtists": [
|
1303
|
+
"Beach Boys"
|
1304
|
+
],
|
1305
|
+
"url": "http://www.thisismyjam.com/missyp88"
|
1306
|
+
},
|
1307
|
+
{
|
1308
|
+
"apiUrl": "http://api.thisismyjam.com/1/KieronButcher.json?key=987bcab01b929eb2c07877b224215c92",
|
1309
|
+
"avatarNormal": "http://static04.thisismyjam.com/i/avtr_5e06f5ad5aa144b75350bd6ac4e6bcf0_128.jpg",
|
1310
|
+
"avatarSmall": "http://static02.thisismyjam.com/i/avtr_5e06f5ad5aa144b75350bd6ac4e6bcf0_small.jpg",
|
1311
|
+
"bio": "Official account of Kieron Butcher. Corporate hero by day, family guy by night.",
|
1312
|
+
"facebookID": "522622847",
|
1313
|
+
"followers": "http://api.thisismyjam.com/1/KieronButcher/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1314
|
+
"followersCount": 0,
|
1315
|
+
"following": "http://api.thisismyjam.com/1/KieronButcher/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1316
|
+
"followingCount": 2,
|
1317
|
+
"fullname": "KieronButcher",
|
1318
|
+
"hasCurrentJam": false,
|
1319
|
+
"jamCount": 9,
|
1320
|
+
"joinedDate": "Mon, 27 Feb 2012 19:49:12 +0000",
|
1321
|
+
"name": "KieronButcher",
|
1322
|
+
"representativeArtists": [
|
1323
|
+
"The Beach Boys v J Dilla",
|
1324
|
+
"Golden Boy/Miss Kittin",
|
1325
|
+
"Sly & The Family Stone",
|
1326
|
+
"Miike Snow"
|
1327
|
+
],
|
1328
|
+
"twitterName": "KieronButcher",
|
1329
|
+
"url": "http://www.thisismyjam.com/KieronButcher"
|
1330
|
+
},
|
1331
|
+
{
|
1332
|
+
"apiUrl": "http://api.thisismyjam.com/1/edclarke.json?key=987bcab01b929eb2c07877b224215c92",
|
1333
|
+
"avatarNormal": "http://static02.thisismyjam.com/i/avtr_d47fc6451e1f259fd051e2244fa21f7d_128.jpg",
|
1334
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_d47fc6451e1f259fd051e2244fa21f7d_small.jpg",
|
1335
|
+
"bio": "Young Mancunian. Love Music, mostly of the Rock/Indie sort but open to a bit of anything. So you can expect 'Jams' along those lines. Enjoy.\r\n\r\n\r\n\r\n\r\n\r\n",
|
1336
|
+
"followers": "http://api.thisismyjam.com/1/edclarke/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1337
|
+
"followersCount": 91,
|
1338
|
+
"following": "http://api.thisismyjam.com/1/edclarke/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1339
|
+
"followingCount": 97,
|
1340
|
+
"fullname": "Ed Clarke",
|
1341
|
+
"hasCurrentJam": true,
|
1342
|
+
"jamCount": 23,
|
1343
|
+
"joinedDate": "Wed, 07 Mar 2012 02:20:06 +0000",
|
1344
|
+
"name": "edclarke",
|
1345
|
+
"representativeArtists": [
|
1346
|
+
"The Beach Boys",
|
1347
|
+
"Ron Sexsmith",
|
1348
|
+
"The Boomtown Rats",
|
1349
|
+
"Otis Redding"
|
1350
|
+
],
|
1351
|
+
"url": "http://www.thisismyjam.com/edclarke"
|
1352
|
+
},
|
1353
|
+
{
|
1354
|
+
"apiUrl": "http://api.thisismyjam.com/1/JuanSolon.json?key=987bcab01b929eb2c07877b224215c92",
|
1355
|
+
"avatarNormal": "http://static03.thisismyjam.com/i/avtr_3b0d091773b41f072c73c1246bcfeeec_128.jpg",
|
1356
|
+
"avatarSmall": "http://static04.thisismyjam.com/i/avtr_3b0d091773b41f072c73c1246bcfeeec_small.jpg",
|
1357
|
+
"bio": "Toronto Freelance Illustrator for the Financial Post,Rogue, 360 Dexia, Canadian Lawyer, Wired. With a million hit points and maximum charisma.",
|
1358
|
+
"followers": "http://api.thisismyjam.com/1/JuanSolon/followers.json?key=987bcab01b929eb2c07877b224215c92",
|
1359
|
+
"followersCount": 3,
|
1360
|
+
"following": "http://api.thisismyjam.com/1/JuanSolon/following.json?key=987bcab01b929eb2c07877b224215c92",
|
1361
|
+
"followingCount": 11,
|
1362
|
+
"fullname": "Juan Carlos Solon",
|
1363
|
+
"hasCurrentJam": true,
|
1364
|
+
"jamCount": 15,
|
1365
|
+
"joinedDate": "Tue, 28 Feb 2012 21:54:06 +0000",
|
1366
|
+
"name": "JuanSolon",
|
1367
|
+
"representativeArtists": [
|
1368
|
+
"The Beach Boys",
|
1369
|
+
"Snoop Dog Ft. Pharell Williams",
|
1370
|
+
"Biggie Smalls feat Lil Kim",
|
1371
|
+
"wu tang vs the beatles"
|
1372
|
+
],
|
1373
|
+
"twitterName": "JuanSolon",
|
1374
|
+
"url": "http://www.thisismyjam.com/JuanSolon"
|
1375
|
+
}
|
1376
|
+
]
|
1377
|
+
}
|