Many Shades of Black

"Many Shades of Black" is a song by the band The Raconteurs. It appears as the eighth track on their second album, Consolers of the Lonely. It is second single from the album and was made available in 7" vinyl format. The cover art depicts Mary Todd Lincoln or Abraham Lincoln depending on the way the inner sleeve is turned. The track is also available as downloadable content for the music video game Rock Band 2.

"Many Shades of Black"
Single by The Raconteurs
from the album Consolers of the Lonely
ReleasedAugust 25, 2008
Genre
Length4:24
Label
Songwriter(s)
Producer(s)
The Raconteurs singles chronology
"Salute Your Solution"
(2008)
"Many Shades of Black"
(2008)
"Old Enough"
(2008)
Alternative covers
Cover with inner sleeve reversed

The release of the single contains a version of the song performed by British singer Adele.[1] Adele has performed this song live several times, including during her An Evening with Adele tour and it was included in the deluxe edition of her 19 album. The Adele version was featured in the ending of 90210 episode "Wild Alaskan Salmon" (episode 6, season 2).[2]

Chart positions

The song peaked at number 37 on the U.S. Hot Modern Rock Tracks chart.[3]

Track listing

  1. "Many Shades of Black"
  2. "Many Shades of Black" (performed by The Raconteurs and Adele)
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!
gollark: I tried that.
gollark: `False`
gollark: `True`

References

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