shortwave 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/.document +5 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +3 -0
  4. data/LICENSE +20 -0
  5. data/README.rdoc +74 -0
  6. data/Rakefile +133 -0
  7. data/VERSION +1 -0
  8. data/lib/shortwave.rb +12 -0
  9. data/lib/shortwave/authentication.rb +107 -0
  10. data/lib/shortwave/facade.rb +3 -0
  11. data/lib/shortwave/facade/build/facade_builder.rb +199 -0
  12. data/lib/shortwave/facade/build/facade_template.erb +17 -0
  13. data/lib/shortwave/facade/lastfm.rb +878 -0
  14. data/lib/shortwave/facade/remote.rb +86 -0
  15. data/lib/shortwave/model/album.rb +33 -0
  16. data/lib/shortwave/model/artist.rb +62 -0
  17. data/lib/shortwave/model/base_model.rb +112 -0
  18. data/lib/shortwave/model/chart_dates.rb +15 -0
  19. data/lib/shortwave/model/comparison.rb +15 -0
  20. data/lib/shortwave/model/event.rb +55 -0
  21. data/lib/shortwave/model/group.rb +26 -0
  22. data/lib/shortwave/model/location.rb +45 -0
  23. data/lib/shortwave/model/playlist.rb +36 -0
  24. data/lib/shortwave/model/shout.rb +21 -0
  25. data/lib/shortwave/model/tag.rb +47 -0
  26. data/lib/shortwave/model/track.rb +71 -0
  27. data/lib/shortwave/model/user.rb +70 -0
  28. data/lib/shortwave/model/venue.rb +37 -0
  29. data/lib/shortwave/model/weekly_charts.rb +31 -0
  30. data/lib/shortwave/providers.rb +161 -0
  31. data/shortwave.gemspec +178 -0
  32. data/test/authentication_test.rb +64 -0
  33. data/test/build/build_test.rb +25 -0
  34. data/test/build/data/intro.yml +2 -0
  35. data/test/build/data/screens/album_addTags.html +1238 -0
  36. data/test/build/data/screens/intro_truncated.html +426 -0
  37. data/test/build/data/screens/tasteometer_compare.html +1274 -0
  38. data/test/build/data/screens/user_getLovedTracks.html +1278 -0
  39. data/test/build/data/screens/venue_search.html +1261 -0
  40. data/test/build/facade_builder_test.rb +23 -0
  41. data/test/build/parameter_test.rb +43 -0
  42. data/test/build/remote_method_test.rb +47 -0
  43. data/test/build/ruby_class_test.rb +12 -0
  44. data/test/build/ruby_method_test.rb +137 -0
  45. data/test/helper.rb +35 -0
  46. data/test/model/album_test.rb +62 -0
  47. data/test/model/artist_test.rb +103 -0
  48. data/test/model/chart_dates_test.rb +11 -0
  49. data/test/model/comparison_test.rb +18 -0
  50. data/test/model/data/album_info.xml +38 -0
  51. data/test/model/data/album_search.xml +210 -0
  52. data/test/model/data/artist_info.xml +58 -0
  53. data/test/model/data/artist_search.xml +109 -0
  54. data/test/model/data/artist_shouts.xml +546 -0
  55. data/test/model/data/artist_top_fans.xml +405 -0
  56. data/test/model/data/event_info.xml +47 -0
  57. data/test/model/data/group_members.xml +242 -0
  58. data/test/model/data/group_weekly_album_chart.xml +1754 -0
  59. data/test/model/data/group_weekly_artist_chart.xml +604 -0
  60. data/test/model/data/group_weekly_track_chart.xml +1005 -0
  61. data/test/model/data/location_events.xml +383 -0
  62. data/test/model/data/ok.xml +2 -0
  63. data/test/model/data/playlist_fetch.xml +227 -0
  64. data/test/model/data/tag_search.xml +110 -0
  65. data/test/model/data/tag_similar.xml +254 -0
  66. data/test/model/data/tag_top_albums.xml +805 -0
  67. data/test/model/data/tag_top_artists.xml +605 -0
  68. data/test/model/data/tag_top_tags.xml +1254 -0
  69. data/test/model/data/tag_top_tracks.xml +843 -0
  70. data/test/model/data/tag_weekly_chart_list.xml +57 -0
  71. data/test/model/data/tasteometer_compare.xml +54 -0
  72. data/test/model/data/track_info.xml +53 -0
  73. data/test/model/data/track_search.xml +195 -0
  74. data/test/model/data/user_chartlist.xml +90 -0
  75. data/test/model/data/user_info.xml +16 -0
  76. data/test/model/data/user_neighbours.xml +484 -0
  77. data/test/model/data/user_playlists.xml +17 -0
  78. data/test/model/data/user_recent_tracks.xml +124 -0
  79. data/test/model/data/user_recommended_artists.xml +454 -0
  80. data/test/model/data/user_shouts.xml +9 -0
  81. data/test/model/data/user_weekly_artist_chart.xml +478 -0
  82. data/test/model/data/venue_events.xml +556 -0
  83. data/test/model/data/venue_past_events.xml +1778 -0
  84. data/test/model/data/venue_search.xml +355 -0
  85. data/test/model/event_test.rb +63 -0
  86. data/test/model/group_test.rb +45 -0
  87. data/test/model/location_test.rb +25 -0
  88. data/test/model/playlist_test.rb +51 -0
  89. data/test/model/shout_test.rb +23 -0
  90. data/test/model/tag_test.rb +39 -0
  91. data/test/model/track_test.rb +67 -0
  92. data/test/model/user_test.rb +125 -0
  93. data/test/model/venue_test.rb +60 -0
  94. data/test/provider/album_provider_test.rb +26 -0
  95. data/test/provider/artist_provider_test.rb +25 -0
  96. data/test/provider/group_provider_test.rb +9 -0
  97. data/test/provider/location_provider_test.rb +9 -0
  98. data/test/provider/playlist_provider_test.rb +12 -0
  99. data/test/provider/tag_provider_test.rb +24 -0
  100. data/test/provider/track_provider_test.rb +26 -0
  101. data/test/provider/user_provider_test.rb +11 -0
  102. data/test/provider/venue_provider_test.rb +15 -0
  103. data/test/provider_test_helper.rb +27 -0
  104. data/test/remote_test.rb +26 -0
  105. metadata +209 -0
@@ -0,0 +1,546 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <shouts artist="The Feelies" total="111">
4
+ <shout>
5
+ <body>Koopatroopa: Yeah, the reissue was supposed to come out a year ago, but it kept on getting pushed back that I stopped paying attention to it. I was so excited to get it too, since prices on ebay are crazy.</body>
6
+ <author>distantfingers</author>
7
+ <date>Wed, 13 May 2009 03:58:30</date>
8
+ </shout>
9
+ <shout>
10
+ <body>Yeah, remember when we all got excited over Crazy Rhythms supposed release in January last year? Or was it just me? Whatever the delay, hopefully it gets the super duper doubleplus shiny crisp treatment, but it's good enough on it's own.</body>
11
+ <author>koopatroopa_</author>
12
+ <date>Mon, 11 May 2009 06:30:53</date>
13
+ </shout>
14
+ <shout>
15
+ <body>They haven't even cracked 500,000 plays? Shame.</body>
16
+ <author>iboughtanewbike</author>
17
+ <date>Wed, 6 May 2009 02:49:52</date>
18
+ </shout>
19
+ <shout>
20
+ <body>Check out our interview: http://www.agitreader.com/features/feelies-05.04.html</body>
21
+ <author>AgitReader</author>
22
+ <date>Mon, 4 May 2009 17:55:42</date>
23
+ </shout>
24
+ <shout>
25
+ <body>Best band ever, basically. </body>
26
+ <author>dubsnevets</author>
27
+ <date>Mon, 4 May 2009 08:58:08</date>
28
+ </shout>
29
+ <shout>
30
+ <body>Thanks. Hopefully, the reissues will be good. Whenever they come out.</body>
31
+ <author>uturnaround</author>
32
+ <date>Thu, 23 Apr 2009 03:34:20</date>
33
+ </shout>
34
+ <shout>
35
+ <body>there is none. but its most probably goint to occur this year or early 2010</body>
36
+ <author>FootToFace</author>
37
+ <date>Wed, 22 Apr 2009 04:16:32</date>
38
+ </shout>
39
+ <shout>
40
+ <body>I read that Crazy Rhythms and The Good Earth were going to be reissued this summer. Does anyone have a specific release date?</body>
41
+ <author>uturnaround</author>
42
+ <date>Fri, 10 Apr 2009 00:53:15</date>
43
+ </shout>
44
+ <shout>
45
+ <body>only for die-hard fans http://www.last.fm/group/1979+Post-Punk</body>
46
+ <author>dethintwosec</author>
47
+ <date>Mon, 16 Mar 2009 22:00:25</date>
48
+ </shout>
49
+ <shout>
50
+ <body>shake them winks, feelbuddies!</body>
51
+ <author>scalamalx</author>
52
+ <date>Sun, 15 Mar 2009 10:00:43</date>
53
+ </shout>
54
+ <shout>
55
+ <body>I hear a little Modern Lovers too.</body>
56
+ <author>ForSatori1919</author>
57
+ <date>Sun, 15 Mar 2009 01:48:51</date>
58
+ </shout>
59
+ <shout>
60
+ <body>Scratch that. Bit more Velvet Underground.</body>
61
+ <author>insomniacme</author>
62
+ <date>Fri, 13 Mar 2009 22:20:04</date>
63
+ </shout>
64
+ <shout>
65
+ <body>Nerd rock, similar vein to Talking Heads. Brilliant.</body>
66
+ <author>insomniacme</author>
67
+ <date>Fri, 27 Feb 2009 08:43:03</date>
68
+ </shout>
69
+ <shout>
70
+ <body>Wish that I could have gotten tickets to see them at Johnny Brendas in Philly. Ugh.</body>
71
+ <author>Cropulis</author>
72
+ <date>Thu, 26 Feb 2009 06:22:43</date>
73
+ </shout>
74
+ <shout>
75
+ <body>so nice</body>
76
+ <author>Amoide</author>
77
+ <date>Sun, 22 Feb 2009 22:00:27</date>
78
+ </shout>
79
+ <shout>
80
+ <body>The Feelies are fanfrickinfastic! They are so underated. </body>
81
+ <author>eighteenforever</author>
82
+ <date>Thu, 19 Feb 2009 03:30:17</date>
83
+ </shout>
84
+ <shout>
85
+ <body>Incredible band. For so long I only listened to Crazy Rhythms but all four records are top notch.</body>
86
+ <author>LeftCoastRyda</author>
87
+ <date>Tue, 17 Feb 2009 16:02:17</date>
88
+ </shout>
89
+ <shout>
90
+ <body>I never knew how much some Early Yo La Tengo is influenced by this. Love this band from the first few songs I heard. </body>
91
+ <author>Cropulis</author>
92
+ <date>Tue, 17 Feb 2009 04:58:08</date>
93
+ </shout>
94
+ <shout>
95
+ <body>I love the feelies so much. It is up there with the best.</body>
96
+ <author>ukulelelab</author>
97
+ <date>Tue, 10 Feb 2009 21:39:58</date>
98
+ </shout>
99
+ <shout>
100
+ <body>the boy next door is me alright</body>
101
+ <author>FootToFace</author>
102
+ <date>Sun, 1 Feb 2009 22:18:05</date>
103
+ </shout>
104
+ <shout>
105
+ <body>Oh my god, this band is amazing! </body>
106
+ <author>Hugo_A-Go-Go</author>
107
+ <date>Mon, 5 Jan 2009 18:19:01</date>
108
+ </shout>
109
+ <shout>
110
+ <body>underrated big time</body>
111
+ <author>negativeEclipse</author>
112
+ <date>Wed, 31 Dec 2008 21:06:54</date>
113
+ </shout>
114
+ <shout>
115
+ <body>great</body>
116
+ <author>indy133</author>
117
+ <date>Tue, 30 Dec 2008 23:31:19</date>
118
+ </shout>
119
+ <shout>
120
+ <body>their fourth album is up on the commercial zone blog
121
+
122
+ http://commercialzone.blogspot.com/</body>
123
+ <author>stu_f</author>
124
+ <date>Sat, 6 Dec 2008 09:57:45</date>
125
+ </shout>
126
+ <shout>
127
+ <body>Saw them in '89 or so at the Blind Pig in Ann Arbor, one of the top 3 live shows I've ever seen.</body>
128
+ <author>ffg</author>
129
+ <date>Thu, 4 Dec 2008 20:32:59</date>
130
+ </shout>
131
+ <shout>
132
+ <body>This band is too good.</body>
133
+ <author>EvilMalware</author>
134
+ <date>Tue, 25 Nov 2008 04:07:06</date>
135
+ </shout>
136
+ <shout>
137
+ <body>Feelies I saw them in Dortmund,Germany in the Live Station at the end of the 80ties with Yo La Tengo one of the greatest concerts in my life</body>
138
+ <author>MGiant77</author>
139
+ <date>Sat, 22 Nov 2008 20:53:53</date>
140
+ </shout>
141
+ <shout>
142
+ <body>goin' ta see them on new years eve. . .</body>
143
+ <author>mastrogirls</author>
144
+ <date>Sun, 16 Nov 2008 17:37:16</date>
145
+ </shout>
146
+ <shout>
147
+ <body>They need to:
148
+ Come out with the reissue of &quot;Crazy Rhythms&quot; sometime soon...
149
+ Do a North American tour.</body>
150
+ <author>distantfingers</author>
151
+ <date>Sun, 19 Oct 2008 05:19:18</date>
152
+ </shout>
153
+ <shout>
154
+ <body>They really need to come to Los Angeles on this tour.</body>
155
+ <author>bentclouds</author>
156
+ <date>Wed, 15 Oct 2008 21:47:55</date>
157
+ </shout>
158
+ <shout>
159
+ <body>similar artists are calculated by what last.fm users listen to, so blame the users</body>
160
+ <author>Zopwx2</author>
161
+ <date>Wed, 15 Oct 2008 05:36:58</date>
162
+ </shout>
163
+ <shout>
164
+ <body>Wow that is weird. The Pop Group and the Feelies are stupidly different haha. Oh well...</body>
165
+ <author>IanCat87</author>
166
+ <date>Sun, 12 Oct 2008 05:54:37</date>
167
+ </shout>
168
+ <shout>
169
+ <body>please, please please please please TOUR! </body>
170
+ <author>spacemangraig</author>
171
+ <date>Sun, 5 Oct 2008 15:56:14</date>
172
+ </shout>
173
+ <shout>
174
+ <body>great band! glad to see them back in action.. AND we got to interview 'em too. check it out!
175
+ http://www.uncensoredinterview.com/artists/325-The-Feelies</body>
176
+ <author>UncensoredRocks</author>
177
+ <date>Tue, 23 Sep 2008 16:37:51</date>
178
+ </shout>
179
+ <shout>
180
+ <body>REM riiped em off</body>
181
+ <author>the_flava</author>
182
+ <date>Sun, 14 Sep 2008 18:47:51</date>
183
+ </shout>
184
+ <shout>
185
+ <body>the mint chicks - walking off a cliff again sounds a lot like forces at work, at the start at least. coincidence or not idk idc. </body>
186
+ <author>Jacaran</author>
187
+ <date>Wed, 10 Sep 2008 07:52:33</date>
188
+ </shout>
189
+ <shout>
190
+ <body>Best band of the 80's! Hopefully a label is enterprising enough to re-release their back catalog.</body>
191
+ <author>uturnaround</author>
192
+ <date>Wed, 3 Sep 2008 00:40:34</date>
193
+ </shout>
194
+ <shout>
195
+ <body>&quot;All you really wanted was to be alone, at least a little while. How was I to know that it seemed like an eternity.&quot;</body>
196
+ <author>NescafeKid</author>
197
+ <date>Sun, 20 Jul 2008 11:48:03</date>
198
+ </shout>
199
+ <shout>
200
+ <body>I've only just discovered them...wow. Love this music already! &lt;3</body>
201
+ <author>MoogleFan</author>
202
+ <date>Sun, 20 Jul 2008 06:34:29</date>
203
+ </shout>
204
+ <shout>
205
+ <body>fantastic performance in Battery Park. the crowd was so into them, they played an encore even though they were the opening band.</body>
206
+ <author>TheYames</author>
207
+ <date>Tue, 8 Jul 2008 17:11:07</date>
208
+ </shout>
209
+ <shout>
210
+ <body>Feelies opening for Lou Reed on his New York tour......one of the best gigs I've ever seen!</body>
211
+ <author>Tackhead</author>
212
+ <date>Mon, 7 Jul 2008 04:55:07</date>
213
+ </shout>
214
+ <shout>
215
+ <body>wishing i could be there tomorrow when they open for sonic youth...</body>
216
+ <author>tjd9</author>
217
+ <date>Fri, 4 Jul 2008 02:38:01</date>
218
+ </shout>
219
+ <shout>
220
+ <body>Tell me [artist]The Dandy Warhols[/artist] weren't influenced by these guys!</body>
221
+ <author>emergingsynergy</author>
222
+ <date>Tue, 1 Jul 2008 14:59:07</date>
223
+ </shout>
224
+ <shout>
225
+ <body>I am SO glad I stumbled upon this wonderful band! :) wow..... [artist]Lou Reed[/artist] influenced, would you say? A sort of happy melodic drone... drifts.... nice... </body>
226
+ <author>emergingsynergy</author>
227
+ <date>Tue, 1 Jul 2008 14:49:28</date>
228
+ </shout>
229
+ <shout>
230
+ <body>where can i buy crazy rhythms for under $30?</body>
231
+ <author>HalfOpened</author>
232
+ <date>Sun, 29 Jun 2008 15:22:01</date>
233
+ </shout>
234
+ <shout>
235
+ <body>only just discovered these guys. i love vewy much:)</body>
236
+ <author>marbley</author>
237
+ <date>Tue, 24 Jun 2008 14:04:13</date>
238
+ </shout>
239
+ <shout>
240
+ <body>Here's a good place to go for The Good Earth: http://www.tt.net/coyote/projects/8673.html</body>
241
+ <author>citymonkey</author>
242
+ <date>Mon, 16 Jun 2008 22:15:30</date>
243
+ </shout>
244
+ <shout>
245
+ <body>Does anybody knows where can I find their albums (especially their debut &quot;Crazy Rhythms&quot;)?</body>
246
+ <author>ItalGalore</author>
247
+ <date>Sun, 15 Jun 2008 01:10:24</date>
248
+ </shout>
249
+ <shout>
250
+ <body>Reissue of Only Life is coming!</body>
251
+ <author>comet-sun</author>
252
+ <date>Wed, 11 Jun 2008 01:18:57</date>
253
+ </shout>
254
+ <shout>
255
+ <body>QUOTE:Anyone think they'll reissue Only Life? I haven't managed to find that online yet. I'll definitely pick up the CR rerelease though.
256
+
257
+ Dude that album's pretty easy to find, I bought the LP off ebay for 15 bucks on a buy it now just last week.
258
+ </body>
259
+ <author>killtime</author>
260
+ <date>Wed, 28 May 2008 23:24:15</date>
261
+ </shout>
262
+ <shout>
263
+ <body>What is actually happening with the reissues? this is all just ridiculous.</body>
264
+ <author>nothingbutflesh</author>
265
+ <date>Sat, 24 May 2008 15:53:29</date>
266
+ </shout>
267
+ <shout>
268
+ <body>aaawwwwww man i wanna see them too! :(</body>
269
+ <author>Waqcku</author>
270
+ <date>Thu, 15 May 2008 02:14:25</date>
271
+ </shout>
272
+ <shout>
273
+ <body>(Reissue of Crazy Rhythms due April 2008!!!!!!) on vinyl too?</body>
274
+ <author>buddude420</author>
275
+ <date>Mon, 5 May 2008 07:55:22</date>
276
+ </shout>
277
+ <shout>
278
+ <body>HOLA SHIT</body>
279
+ <author>elstoo</author>
280
+ <date>Wed, 9 Apr 2008 07:48:49</date>
281
+ </shout>
282
+ <shout>
283
+ <body>OMG!
284
+ http://idolator.com/370364/the-feelies-to-bring-their-crazy-rhythms-back-this-summer
285
+ </body>
286
+ <author>comet-sun</author>
287
+ <date>Sat, 5 Apr 2008 10:54:20</date>
288
+ </shout>
289
+ <shout>
290
+ <body>WOOOOOO!!!!</body>
291
+ <author>IanCat87</author>
292
+ <date>Fri, 4 Apr 2008 16:14:17</date>
293
+ </shout>
294
+ <shout>
295
+ <body>Reissue of Crazy Rhythms due April 2008!!!!!! Woohoo!!</body>
296
+ <author>flashbleu</author>
297
+ <date>Sat, 22 Mar 2008 23:16:40</date>
298
+ </shout>
299
+ <shout>
300
+ <body>i like them</body>
301
+ <author>animalchin8</author>
302
+ <date>Mon, 10 Mar 2008 23:38:25</date>
303
+ </shout>
304
+ <shout>
305
+ <body>Yeah so I don't know what happened to the reissue. If anyone finds anything more about it, please let me know.</body>
306
+ <author>IanCat87</author>
307
+ <date>Sun, 10 Feb 2008 20:42:20</date>
308
+ </shout>
309
+ <shout>
310
+ <body>I hope they reissue the rest of the catalogue and then maybe a b-sides collection or something too.</body>
311
+ <author>IanCat87</author>
312
+ <date>Sat, 26 Jan 2008 19:41:51</date>
313
+ </shout>
314
+ <shout>
315
+ <body>was Raised Eyebrows in a mastercard commercial? i knew i'd heard it before and i feel like priceless was somehow attatched to it...</body>
316
+ <author>TheMcEneaney</author>
317
+ <date>Thu, 27 Dec 2007 06:15:22</date>
318
+ </shout>
319
+ <shout>
320
+ <body>Anyone think they'll reissue Only Life? I haven't managed to find that online yet. I'll definitely pick up the CR rerelease though.</body>
321
+ <author>Waqcku</author>
322
+ <date>Mon, 24 Dec 2007 21:55:43</date>
323
+ </shout>
324
+ <shout>
325
+ <body> Wow!!</body>
326
+ <author>comet-sun</author>
327
+ <date>Wed, 19 Dec 2007 14:46:37</date>
328
+ </shout>
329
+ <shout>
330
+ <body>It's coming out for re-issue! January 22nd! 6 days before my birthday I am so fucking pumped!!
331
+ http://www.amazon.com/Crazy-Rhythms-Feelies/dp/B000Z7G7KU/ref=pd_bbs_sr_3?ie=UTF8&amp;s=music&amp;qid=1197941509&amp;sr=1-3</body>
332
+ <author>IanCat87</author>
333
+ <date>Tue, 18 Dec 2007 01:34:32</date>
334
+ </shout>
335
+ <shout>
336
+ <body>It's due for a re-issue and remaster, that's for sure.
337
+
338
+ p.s.: Slipping (Into Something) is fucking bliss!</body>
339
+ <author>IanCat87</author>
340
+ <date>Tue, 18 Dec 2007 01:30:53</date>
341
+ </shout>
342
+ <shout>
343
+ <body>Is Crazy Rhythms really being reissued? I've seen it for preorder on a couple sites i've never heard of before, but that's it.</body>
344
+ <author>Akarik</author>
345
+ <date>Mon, 17 Dec 2007 02:57:59</date>
346
+ </shout>
347
+ <shout>
348
+ <body>you remind me of a tv-show. that's alright, i watch it anyway</body>
349
+ <author>im1wine</author>
350
+ <date>Mon, 10 Dec 2007 21:09:52</date>
351
+ </shout>
352
+ <shout>
353
+ <body>where've they been all my life??? stuff is bloody hard to come by, sorry had to download it, IM SORRY</body>
354
+ <author>safe-as-milk</author>
355
+ <date>Tue, 30 Oct 2007 20:56:06</date>
356
+ </shout>
357
+ <shout>
358
+ <body>http://www.lastfm.es/group/The+Feelies</body>
359
+ <author>pablosp</author>
360
+ <date>Tue, 23 Oct 2007 19:00:06</date>
361
+ </shout>
362
+ <shout>
363
+ <body>the most underrated band of all time.</body>
364
+ <author>pablosp</author>
365
+ <date>Tue, 23 Oct 2007 01:18:00</date>
366
+ </shout>
367
+ <shout>
368
+ <body>Check out [artist]Good Commies[/artist].</body>
369
+ <author>MCredshift</author>
370
+ <date>Thu, 18 Oct 2007 19:02:03</date>
371
+ </shout>
372
+ <shout>
373
+ <body>this is a nice link for feelies fans and those who can't find their albums
374
+ http://lost-intyme.blogspot.com/2007/10/feelies-crazy-rhythms-1980.html</body>
375
+ <author>Magic_Alex</author>
376
+ <date>Tue, 16 Oct 2007 22:21:01</date>
377
+ </shout>
378
+ <shout>
379
+ <body>Hey the Feelies are one of the connected artists in a group I just made: [group]Born to be Strangers[/group].</body>
380
+ <author>IanCat87</author>
381
+ <date>Mon, 8 Oct 2007 20:16:24</date>
382
+ </shout>
383
+ <shout>
384
+ <body>i have yung wu.
385
+
386
+ explorers hold ep.
387
+
388
+ speed the plough is nice enough too</body>
389
+ <author>Padraig_F</author>
390
+ <date>Mon, 1 Oct 2007 01:57:48</date>
391
+ </shout>
392
+ <shout>
393
+ <body>Seems nobody says 'Collect'em ALL' except me and my monkey...
394
+ and I recommend you to a Yung Wu album too.
395
+ http://www.twintone.com/
396
+ You will like it.</body>
397
+ <author>comet-sun</author>
398
+ <date>Fri, 21 Sep 2007 16:08:16</date>
399
+ </shout>
400
+ <shout>
401
+ <body>are Only Life and Time for a Witness worth getting? I already have CR and TGE.</body>
402
+ <author>Waqcku</author>
403
+ <date>Fri, 31 Aug 2007 20:36:38</date>
404
+ </shout>
405
+ <shout>
406
+ <body>$36 is worth it</body>
407
+ <author>Padraig_F</author>
408
+ <date>Tue, 28 Aug 2007 03:36:51</date>
409
+ </shout>
410
+ <shout>
411
+ <body>IanCat87 - I totally picked up Crazy Rhythms on vinyl the other day. Paid a cool $36 for it too.</body>
412
+ <author>ryankailath</author>
413
+ <date>Thu, 23 Aug 2007 21:05:31</date>
414
+ </shout>
415
+ <shout>
416
+ <body>Still, very good listen for totally sketchy early live recordings! :D</body>
417
+ <author>IanCat87</author>
418
+ <date>Mon, 20 Aug 2007 19:41:56</date>
419
+ </shout>
420
+ <shout>
421
+ <body>I feel very sorry for that... :(</body>
422
+ <author>comet-sun</author>
423
+ <date>Mon, 13 Aug 2007 15:56:09</date>
424
+ </shout>
425
+ <shout>
426
+ <body>Aw man. Some of those audio files don't work. :(</body>
427
+ <author>IanCat87</author>
428
+ <date>Sun, 12 Aug 2007 21:06:01</date>
429
+ </shout>
430
+ <shout>
431
+ <body>Let's go crazy with it:
432
+ http://earfarm.blogspot.com/2006/08/weekend-live-music_12.html</body>
433
+ <author>comet-sun</author>
434
+ <date>Thu, 9 Aug 2007 15:36:00</date>
435
+ </shout>
436
+ <shout>
437
+ <body>Is everything after Crazy Rhythms still in print?</body>
438
+ <author>IanCat87</author>
439
+ <date>Wed, 8 Aug 2007 20:47:17</date>
440
+ </shout>
441
+ <shout>
442
+ <body>Yeah I actually got The Good Earth first cause I heard Let's Go during the Squid and the Whale. Crazy Rythms is better, but both are great.</body>
443
+ <author>Waqcku</author>
444
+ <date>Sat, 4 Aug 2007 08:15:45</date>
445
+ </shout>
446
+ <shout>
447
+ <body>The Good Earth is one of my favourite records. It's as good as the third Velvet Underground album. Let's Go!</body>
448
+ <author>martin-pulaski</author>
449
+ <date>Tue, 31 Jul 2007 16:03:45</date>
450
+ </shout>
451
+ <shout>
452
+ <body>The Good Earth is definitely amazing, it just doesn't have the level of distinction that anton fier's drumming gave to crazy rhythms</body>
453
+ <author>Padraig_F</author>
454
+ <date>Tue, 24 Jul 2007 17:23:37</date>
455
+ </shout>
456
+ <shout>
457
+ <body>More people oughtta listen to The Good Earth.</body>
458
+ <author>Waqcku</author>
459
+ <date>Fri, 20 Jul 2007 21:58:17</date>
460
+ </shout>
461
+ <shout>
462
+ <body>hope that helped youse</body>
463
+ <author>Padraig_F</author>
464
+ <date>Wed, 11 Jul 2007 17:44:34</date>
465
+ </shout>
466
+ <shout>
467
+ <body>i don't like peer to peer sites because they sketch me out like paypal and ebay. but WORSE.</body>
468
+ <author>IanCat87</author>
469
+ <date>Wed, 11 Jul 2007 01:04:05</date>
470
+ </shout>
471
+ <shout>
472
+ <body>i need it.</body>
473
+ <author>lemago</author>
474
+ <date>Tue, 10 Jul 2007 00:34:39</date>
475
+ </shout>
476
+ <shout>
477
+ <body>i dont condone it, but you can get 'Crazy Rhythms' from many peer to peer sites..</body>
478
+ <author>Magic_Alex</author>
479
+ <date>Wed, 4 Jul 2007 23:12:17</date>
480
+ </shout>
481
+ <shout>
482
+ <body>crazy rhythms is out of print, even glenn mercer doesn't know who has the rights, so it cant be re-issued for a long time</body>
483
+ <author>Padraig_F</author>
484
+ <date>Wed, 4 Jul 2007 15:52:00</date>
485
+ </shout>
486
+ <shout>
487
+ <body>dude. where the FUCK can i find Crazy Rhythms?????</body>
488
+ <author>IanCat87</author>
489
+ <date>Mon, 2 Jul 2007 08:02:51</date>
490
+ </shout>
491
+ <shout>
492
+ <body>Some of their songs are kind of creepy, which is weird (in a good way) for those post-punk bands. </body>
493
+ <author>distantfingers</author>
494
+ <date>Sat, 16 Jun 2007 00:28:26</date>
495
+ </shout>
496
+ <shout>
497
+ <body>CURED, you're onto it.</body>
498
+ <author>GritJoel</author>
499
+ <date>Sun, 10 Jun 2007 11:01:59</date>
500
+ </shout>
501
+ <shout>
502
+ <body>SEATTLE PUBLIC LIBRARY?? damn. i am jealous. that means public libraries in seattle are much hipper than new england libraries. SHIT SON. anyway, my search for Crazy Rhythms continues... if i could find it on vinyl that'd be even more of a steal...</body>
503
+ <author>IanCat87</author>
504
+ <date>Sat, 9 Jun 2007 06:21:05</date>
505
+ </shout>
506
+ <shout>
507
+ <body>SO MANY INFERIOR BANDS RIPPED THEM OFF AND HAVE GOT MORE RECOGNITION. TRAGIC.</body>
508
+ <author>CURED</author>
509
+ <date>Sat, 19 May 2007 03:46:37</date>
510
+ </shout>
511
+ <shout>
512
+ <body>amazing!</body>
513
+ <author>matt0009</author>
514
+ <date>Wed, 18 Apr 2007 01:11:20</date>
515
+ </shout>
516
+ <shout>
517
+ <body>Only Life is their best; great, positive music.</body>
518
+ <author>Straybow</author>
519
+ <date>Sat, 24 Mar 2007 13:21:11</date>
520
+ </shout>
521
+ <shout>
522
+ <body>crazy rhythms is crazy hard to find!</body>
523
+ <author>distantfingers</author>
524
+ <date>Wed, 24 Jan 2007 04:33:06</date>
525
+ </shout>
526
+ <shout>
527
+ <body>one of the best</body>
528
+ <author>mrjackalope</author>
529
+ <date>Fri, 19 Jan 2007 06:54:44</date>
530
+ </shout>
531
+ <shout>
532
+ <body>loveless love, amazing!</body>
533
+ <author>stampit</author>
534
+ <date>Tue, 9 Jan 2007 01:19:04</date>
535
+ </shout>
536
+ <shout>
537
+ <body>Loveless Love, amazing!</body>
538
+ <author>schizodanny</author>
539
+ <date>Mon, 30 Oct 2006 09:40:40</date>
540
+ </shout>
541
+ <shout>
542
+ <body>would of missed them, if it wasn't for last.fm, thanks last.fm</body>
543
+ <author>jacn77</author>
544
+ <date>Sun, 25 Jun 2006 17:44:03</date>
545
+ </shout>
546
+ </shouts></lfm>