Good Cookin'

Good Cookin' is an album by saxophonist Junior Cook recorded in 1979 and released on the Muse label.[1][2][3][4]

Good Cookin'
Studio album by
Released1980
RecordedJune 7, 1979
StudioVan Gelder Studio, Englewood Cliffs, NJ
GenreJazz
Length37:04
LabelMuse
MR 5159
ProducerFred Seibert
Junior Cook chronology
Pressure Cooker
(1977)
Good Cookin'
(1980)
Somethin's Cookin'
(1981)

Reception

Professional ratings
Review scores
SourceRating
Allmusic[5]

The Allmusic review called it a "all-star hard-bop cast".[5]

Track listing

All compositions by Slide Hampton except where noted.

  1. "J.C." – 7:07
  2. "I'm Getting Sentimental Over You" (George Bassman, Ned Washington) – 4:58
  3. "Play Together Again" – 5:12
  4. "Waltz for Junior" – 7:45
  5. "I Waited for You" (Dizzy Gillespie, Gil Fuller) – 4:39
  6. "Mood" – 7:23

Personnel

gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
gollark: To be honest I find REST kind of an uncool way to design APIs.

References

  1. Muse LP series discography: 5150 to 5199 accessed April 13, 2017
  2. Muse Records discography accessed April 13, 2017
  3. Junior Cook catalog accessed April 13, 2017
  4. Jazzlists: Junior Cook discography accessed April 13, 2017
  5. Szatmary, David. Good Cookin' – Review at AllMusic. Retrieved April 13, 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.