Blue Seven

Blue Seven is a studio album by organist Shirley Scott recorded in 1961 for Prestige and issued in 1966 as PRLP 7376. It features performances by Oliver Nelson and Joe Newman, among the others.

Blue Seven
Studio album by
ReleasedMay 1966[1]
RecordedAugust 22, 1961
StudioVan Gelder Studio, Englewood Cliffs
GenreJazz, Blues
Length36:40
LabelPrestige
PRLP 7376
ProducerEsmond Edwards
Shirley Scott chronology
Hip Soul
(1961)
Blue Seven
(1966)
Hip Twist
(1961)
Professional ratings
Review scores
SourceRating
Allmusic[2]

Track listing

  1. "Blue Seven" (Sonny Rollins) – 6:45
  2. "Don't Worry About It Baby, Here I Am" (Scott) – 6:40
  3. "Nancy (With the Laughing Face)" (Phil Silvers, Jimmy Van Heusen) – 5:28
  4. "Wagon Wheels" (DeRose, Hill) – 12:10
  5. "Give Me the Simple Life" (Rube Bloom, Harry Ruby) – 5:37

Note

  • The CD reissue includes the bonus track "How Sweet".

Personnel

gollark: We need some sort of Rust-based RPG, because Rust is good, all Hail Rust Rust Rust, Rust Rust, Rust... Rust.
gollark: ```rustuse wasm_bindgen::prelude::*;#[derive(Default)]pub struct Counter { value: i32,}pub enum Message { Increment, Decrement, Reset,}impl draco::App for Counter { type Message = Message; fn update(&mut self, _: &draco::Mailbox<Message>, message: Self::Message) { use self::Message::*; match message { Increment => self.value += 1, Decrement => self.value -= 1, Reset => self.value = 0, } } fn render(&self) -> draco::Node<Self::Message> { use draco::html as h; h::div() .push(h::button().push("-").on("click", |_| Message::Decrement)) .push(self.value) .push(h::button().push("+").on("click", |_| Message::Increment)) .push(h::button().push("Reset").on("click", |_| Message::Reset)) .into() }}#[wasm_bindgen]pub fn start() { draco::start( Counter::default(), draco::select("main").expect("main").into(), );}pub fn main() {}```RUSTRUSTRUSTRUST
gollark: General ignorethisU Role Playing System.
gollark: Gurp gurp.
gollark: CnC? CaC? C&C?

References

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