Basie Rides Again!

Basie Rides Again! is an album by pianist/bandleader Count Basie recorded in 1952 and originally released on the Clef label in 1956.[1][2][3][4] Selections from this album were previously released on the 1954 Clef LP Basie Jazz.

Basie Rides Again!
Studio album by
Released1956
RecordedJuly 26 and December 12 & 13, 1952
Fine Sound, New York City
GenreJazz
Length39:39
LabelClef
MG C-729
ProducerNorman Granz
Count Basie chronology
Basie Jazz
(1952)
Basie Rides Again!
(1956)
Dance Session
(1953)

Reception

Professional ratings
Review scores
SourceRating
AllMusic[5]

AllMusic awarded the album 4½ stars.[5]

Track listing

  1. "Jive at Five" (Count Basie, Harry Edison) - 3:06
  2. "Be My Guest" (Ernie Wilkins) - 3:00
  3. "No Name" (King Oliver) - 3:06
  4. "Blues for the Count and Oscar" (Basie, Oscar Peterson) - 3:04
  5. "Redhead" (Oliver) - 2:47
  6. "Every Tub" (Basie, Eddie Durham) - 2:47
  7. "Goin' to Chicago" (Count Basie) - 3:17
  8. "Sent for You Yesterday and Here You Come Today" (Count Basie, Eddie Durham, Jimmy Rushing) - 3:09
  9. "Bread" (Wilkins) - 2:49
  10. "There's a Small Hotel" (Richard Rodgers, Lorenz Hart) - 3:29
  11. "Tippin' on the Q. T." (Buck Clayton) - 3:00
  12. "Blee-Blop Blues" (A. K. Salim) - 3:16

Recorded at Fine Sound Studios in New York City on January 25, (tracks 1, 3, 5 & 6), July 22 (tracks 9-12), July 26 (track 2 & 4) and December 12 (tracks 7 & 8), 1952

Personnel

gollark: Now with optimization settings!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: ^
gollark: 937 bytes.
gollark: The WHY compiler is *very* small.

References

  1. Edwards, D. & Callahan, M. Clef Label Discography, accessed November 20, 2015
  2. Kitora, R., Count Basie Discography, accessed November 20, 2015
  3. Clef Records Catalog: 700, JATP, 1000, 4000, 2000 series, accessed November 20, 2015
  4. Big Band Paradise Archived 2015-11-21 at the Wayback Machine, accessed November 20, 2015
  5. Allmusic listing, accessed November 20, 2015
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.