Parachute Woman

"Parachute Woman" is a song by the Rolling Stones featured on their 1968 album Beggars Banquet.

"Parachute Woman"
Song by the Rolling Stones
from the album Beggars Banquet
Released6 December 1968 (1968-12-06)
RecordedApril 1968
GenreBlues
Length2:23
LabelABKCO
Songwriter(s)Jagger/Richards
Producer(s)Jimmy Miller

Inspiration and recording

Written by Mick Jagger and Keith Richards, "Parachute Woman" is a blues song and is one of the famous Beggars Banquet songs recorded on a cassette player and double-tracked for effect. Bill Janovitz comments in his review of the song:

The result is a raw and murky but atmosphere-filled blues track that spotlights Mick Jagger's mumbled sexual boasts and intense harmonica playing. With barely veiled innuendo – just enough to make it comical – Jagger makes like a modern-day Muddy Waters: "Parachute woman will you blow me out?/My heavy throbber's itching just to lay a solid rhythm down."[1]

Mick Jagger is on lead vocals and Keith Richards is on electric lead guitar, and Brian Jones plays acoustic rhythm guitar.[2] Both Mick Jagger and Brian Jones play harmonica. Charlie Watts provides drums and Bill Wyman plays the bass.[1]

"Parachute Woman" was only ever performed live by the Rolling Stones two times. The first performance was during the 1968 Rock and Roll Circus and appears on the subsequent album. It would also be performed once during the 2002 Licks Tour, more than 30 years after its initial live debut.

Personnel

gollark: ```pythonimport thesaurusimport randomimport concurrent.futures as futureswords_to_synonyms = {}synonyms_to_words = {}def add_to_key(d, k, v): d[k] = d.get(k, set()).union(set(v))def add_synonyms(syns, word): for syn in syns: add_to_key(synonyms_to_words, syn, [word]) add_to_key(words_to_synonyms, word, syns)def concat(list_of_lists): return sum(list_of_lists, [])def fetch_word(word): results = concat(thesaurus.Word(word).synonyms("all")) return resultsdef add_words(words): with futures.ThreadPoolExecutor(max_workers=50) as executor: word_futures = {executor.submit(fetch_word, word): word for word in words} for future in futures.as_completed(word_futures): word = word_futures[future] try: data = future.result() except Exception as exc: print(f"Error fetching {word}: {exc}") else: add_synonyms(data, word)def getattr_hook(obj, key): results = list(synonyms_to_words.get(key, set()).union(words_to_synonyms.get(key, set()))) if len(results) > 0: return obj.__getattribute__(random.choice(results)) else: raise AttributeError(f"Attribute {key} not found.")def wrap(obj): add_words(dir(obj)) obj.__getattr__ = lambda key: getattr_hook(obj, key)wrap(__builtins__)__builtins__.engrave("Hi!")```
gollark: Ah yes. Global Interpreter Lock. Right. This may be hard.
gollark: On the plus side, you should be able to use `zilch` in place of `None` now.
gollark: The python thesaurus-izer may need some parallelization to be effective.
gollark: We could use this; it seems a cool idea.

References

  1. Janovitz, Bill. "Rolling Stones: Parachute Woman – Review". AllMusic. Retrieved 5 April 2018.
  2. Clayson, Alan (2008). The Rolling Stones: Beggars Banquet. Billboard Books. pp. 246. ISBN 978-0-8230-8397-8.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.