All That "Hip Hop"

All That "Hip Hop" is an alternative hip hop music compilation album by Warner Music Australia. It is a collection of three CDs containing music from various artists, released in 2005.[1]

All That "Hip Hop"
Compilation album by
Various Artists
Released2005 (2005)
GenreAlternative Hip Hop
LabelWarner Music Australia

Track listing

Disc 1

  1. Afrika Bambaataa & Soul Sonic Force - "Planet Rock"
  2. Busta Rhymes - "It's a Party"
  3. Coolio - "1, 2, 3, 4 (Sumpin' New)"
  4. Lil' Kim - "The Jump Off"
  5. Stetsasonic - "Talkin' All That Jazz"
  6. Fabolous - "Can't Let You Go"
  7. Ice-T - "You Played Yourself"
  8. Missy Elliott - "Pass That Dutch"
  9. Kulcha - "Booty Funk"
  10. Knoc-Turn'al - "Have Fun"
  11. Leaders Of The New School - "Case of the P.T.A."
  12. Nappy Roots - "Awnaw" (featuring Jazze Pha)
  13. Queen Latifah - "Come Into My House"
  14. Naughty By Nature - "Everything's Gonna Be Alright"
  15. Noreaga - "Body In The Trunk" (featuring Nas)

Disc 2

  1. Missy Elliott - "Work It"
  2. De La Soul - "Me, Myself And I"
  3. Fabolous - "Can't Deny It" (featuring Nate Dogg)
  4. Ice-T - "Colors"
  5. Busta Rhymes - "Put Your Hands Where My Eyes Could See"
  6. Capone-N-Noreaga - "Phonetime"
  7. Nappy Roots - "Kentucky Mud"
  8. Noreaga - "Superthug"
  9. Ol' Dirty Bastard - "Proteck Ya Neck II The Zoo"
  10. Queen Latifah - "Latifah's Law"
  11. Stetsasonic - "Go Brooklyn 3"
  12. House of Pain - "Shamrocks And Shenanigans"
  13. Everlast - "Never Missin' A Beat"
  14. Kulcha - "Nasty"
  15. Digital Underground - "The Return Of The Crazy One"

Disc 3

  1. Coolio - "Too Hot"
  2. De La Soul - "Potholes in My Lawn"
  3. Lil' Kim - "Queen B@#$H"
  4. House of Pain - "Same As It Ever Was"
  5. Ol' Dirty Bastard - "Brooklyn Zoo"
  6. Nate Dogg - "I Got Love"
  7. Queen Latifah & Monie Love - "Ladies First"
  8. Everlast - "Money (Dollar Bill)" (featuring Sadat X)
  9. Capone-N-Noreaga - "Invincible"
  10. K7 - "Come Baby Come"
  11. Kulcha - "Bring It On"
  12. RuPaul - "Supermodel (You Better Work)"
  13. Digital Underground - "Doowutchyalike"
  14. Naughty By Nature - "Feel Me Flow"
  15. Da Lench Mob - "Freedom Got An AK"
gollark: Best doesn't rhyme with worstThis is totally cursed.
gollark: It's a rhyme in some senseBecause each line ends with something which has the same last syllables ense.
gollark: It didn't manage much.
gollark: I had it autorap itself:```pythonimport requestsimport random pressimport fileinputimport re fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: 0 if upto + weight >= r: return choice upto += weight state assert False, "Shouldn't get here" def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json() def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options) last = Nonefor line in fileinput.input(): been line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = re.sub(r"[^A-Za-z0-9 ]", " ", line).split(" ")[-1] print(line)```
gollark: Drugs are UNLEGAL!

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.