Are Your Eyes Still Blue

"Are Your Eyes Still Blue" is a song co-written and recorded by American country music singer Shane McAnally. It is the second single from his only studio album, Shane McAnally. He wrote the song with Julie Wood and Steve Mandile, the latter of whom would later become a member of the band Sixwire.

"Are Your Eyes Still Blue"
Single by Shane McAnally
from the album Shane McAnally
B-side"If It's Over"[1]
ReleasedAugust 17, 1999 (1999-08-17)[2]
GenreCountry
Length3:45
LabelCurb
Songwriter(s)
  • Shane McAnally
  • Julie Wood
  • Steve Mandile
Producer(s)Rich Herring[3]
Shane McAnally singles chronology
"Say Anything"
(1999)
"Are Your Eyes Still Blue"
(1999)
"Run Away"
(2000)

Content

Thematically, the song is about "a man still intrigued by his old flame and the transformation that has taken place since their parting."[3] Throughout, the male narrator questions his former lover with "Are your eyes still blue?" The song consists of two verses, a chorus which is sung three times, and a bridge. It begins in the key of F major, then modulates upward by a whole-step at each chorus, ending in B major. It is in 2/2 or cut time with an approximate tempo of 84 half-notes per minute.[4] Prominent mandolin and fiddle are heard throughout.

Critical reception

An uncredited review in Billboard was favorable, saying that "His sophomore single is an appealing uptempo number with a decidedly more country flavor. Production is crisp and flatters McAnally's energetic performance."[3] Country Standard Time writer Dan McIntosh, in a review of the album, wrote that it "nicely melds fiddle and mandolin into what comes off as a sort of modern day bluegrass plucker."[5]

Personnel

From Shane McAnally liner notes.[6]

Chart performance

Chart (1999) Peak
position
Canada Country Tracks (RPM)[7] 47
US Hot Country Songs (Billboard)[8] 31
gollark: It allocates memory and doesn't consider it a side effect.
gollark: I didn't do any horrible homoglyph hacks with THAT.
gollark: It uses the function, yes.
gollark: So, I finished that to highly dubious demand. I'd like to know how #11 and such work.
gollark: > `x = _(int(0, e), int(e, е))`You may note that this would produce slices of 0 size. However, one of the `e`s is a homoglyph; it contains `2 * e`.`return Result[0][0], x, m@set({int(e, 0), int(е, e)}), w`From this, it's fairly obvious what `strassen` *really* does - partition `m1` into 4 block matrices of half (rounded up to the nearest power of 2) size.> `E = typing(lookup[2])`I forgot what this is meant to contain. It probably isn't important.> `def exponentiate(m1, m2):`This is the actual multiplication bit.> `if m1.n == 1: return Mаtrix([[m1.bigData[0] * m2.bigData[0]]])`Recursion base case. 1-sized matrices are merely multiplied scalarly.> `aa, ab, ac, ad = strassen(m1)`> `аa, аb, аc, аd = strassen(m2)`More use of homoglyph confusion here. The matrices are quartered.> `m = m1.subtract(exponentiate(aa, аa) ** exponentiate(ab, аc), exponentiate(aa, аb) ** exponentiate(ab, аd), exponentiate(ac, аa) ** exponentiate(ad, аc), exponentiate(ac, аb) ** exponentiate(ad, аd)) @ [-0j, int.abs(m2.n * 3, m1.n)]`This does matrix multiplication in an inefficient *recursive* way; the Strassen algorithm could save one of eight multiplications here, which is more efficient (on big matrices). It also removes the zero padding.> `m = exponentiate(Mаtrix(m1), Mаtrix(m2)) @ (0j * math.sin(math.asin(math.sin(math.asin(math.sin(math.e))))), int(len(m1), len(m1)))`This multiples them and I think also removes the zero padding again, as we want it to be really very removed.> `i += 1`This was added as a counter used to ensure that it was usably performant during development.> `math.factorial = math.sinh`Unfortunately, Python's factorial function has really rather restrictive size limits.> `for row in range(m.n):`This converts back into the 2D array format.> `for performance in sorted(dir(gc)): getattr(gc, performance)()`Do random fun things to the GC.

References

  1. Whitburn, Joel (2008). Hot Country Songs 1944 to 2008. Record Research, Inc. p. 261. ISBN 0-89820-177-2.
  2. "Are Your Eyes Still Blue [CD5/Cassette Single] – Shane McAnally". AllMusic. Retrieved August 15, 2015.
  3. "Reviews". Billboard: 22. July 3, 1999.
  4. "'Are Your Eyes Still Blue' sheet music". Musicnotes.com. Retrieved 15 August 2015.
  5. McIntosh, Dan. "Shane McAnally: Shane McAnally". Country Standard Time. Retrieved 11 April 2016.
  6. Shane McAnally (CD booklet). Shane McAnally. Curb Records. 2000. 77818.CS1 maint: others (link)
  7. "Top RPM Country Tracks: Issue 10004." RPM. Library and Archives Canada. November 8, 1999.
  8. "Shane McAnally Chart History (Hot Country Songs)". Billboard.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.