private Random random = new Random();
@PostConstruct
public void init() throws IOException {
provider = new TwitterServiceProvider(appKey, appSecret);
stopwords = new HashSet<>(IOUtils.readLines(TimelineToMusicService.class.getResourceAsStream("/stopwords.txt")));
}