Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Love a good Markov chain generator! How did you get so many songs in the corpus?

Using the website absolutelyrics.com and the JSoup library, we parsed the song lists and read them into our n-gram generator. But don't worry! We stored all of the n-grams in a separate file so that the program doesn't have to read the websites every time.

(+1)

Aha! Thanks for pointing out JSoup-- I'll definitely have to give it a look for future projects!