'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Red Mitchell

Keith Moore "Red" Mitchell (September 20, 1927 November 8, 1992), was an American jazz double-bassist, composer, lyricist, and poet.

Biography

Mitchell was born on September 20, 1927, in New York City. His younger brother, Whitey Mitchell, also became a jazz bassist.

Mitchell was raised in New Jersey by a father who was an engineer and loved music, and a mother who loved poetry. His first instruments were piano, alto saxophone, and clarinet. Although Cornell University awarded him an engineering scholarship, by 1947 he was in the US Army playing bass. The next year he was in a jazz trio in New York City.

Mitchell became known for performing and/or recording with Mundell Lowe, Chubby Jackson, Charlie Ventura, Woody Herman, Red Norvo, Gerry Mulligan, and, after joining the West Coast jazz scene in the early 1950s, with André Previn, Shelly Manne, Hampton Hawes, Billie Holiday, Stan Seltzer, Ornette Coleman, and others. He also worked as a bassist in the TV and film studios around Los Angeles, occasionally appearing on screen. Mitchell also appeared in documentaries about Tal Farlow, and Zoot Sims.

Red Mitchell (ice hockey)

William Lawson "Bill, Red" Mitchell (September 6, 1912 – December 12, 1984) was a professional ice hockey player who played 83 games in the National Hockey League. Born in Toronto, Ontario, he played with the Chicago Black Hawks.

External links

  • Red Mitchell's career statistics at The Internet Hockey Database

  • Just One of Those Things

    Just One of Those Things may refer to:

  • "Just One of Those Things" (song), a 1935 song written by Cole Porter
  • Just One of Those Things (album), a 1957 album by Nat King Cole
  • "Just One of Those Things" (Early Edition), an episode of Early Edition
  • "Just One of Those Things", an episode of Working Girl
  • Just One of Those Things (album)

    Just One of Those Things is a 1957 album by Nat King Cole, arranged by Billy May. The record placed at #18 on the Billboard album chart.

    Track listing

  • "When Your Lover Has Gone" (Einar Aaron Swan) – 2:33
  • "A Cottage for Sale" (Larry Conley, Willard Robison) – 3:00
  • "Who's Sorry Now?" (Bert Kalmar, Harry Ruby, Ted Snyder) – 3:00
  • "Once in a While" (Michael Edwards, Bud Green) – 2:50
  • "These Foolish Things (Remind Me of You)" (Harry Link, Holt Marvell, Jack Strachey) – 3:49
  • "Just for the Fun of It" (Lorenz Hart, A. Jackson) – 2:37
  • "Don't Get Around Much Anymore" (Duke Ellington, Bob Russell) – 3:13
  • "I Understand" (Kim Gannon, Mabel Wayne) – 2:27
  • "Just One of Those Things" (Cole Porter) – 2:17
  • "The Song is Ended (but the Melody Lingers On)" (Irving Berlin) – 2:49
  • "I Should Care" (Sammy Cahn, Axel Stordahl, Paul Weston) – 2:49
  • "The Party's Over" (Betty Comden, Adolph Green, Jule Styne) – 2:45
  • Personnel

    Performance

  • Nat King Colevocal
  • Billy Mayarranger, conductor
  • Just One of Those Things (song)

    "Just One of Those Things" is a popular song written by Cole Porter for the 1935 musical Jubilee.

    Porter had written the score for Jubilee while on an extended sea cruise in the early part of 1935: however, in September 1935 while he was visiting a friend's farm in Ohio with Jubilee's librettist Moss Hart, the latter mentioned that the play's second act required an additional song, and Porter had "Just One of Those Things" completed by the following morning (he had previously used the title for a song intended for but not featured in the 1930 musical The New Yorkers—apart from the title the two songs are distinct). Porter's original lyric lacked an adjective for the line "a trip to the moon on gossamer wings": "gossamer" would be suggested by his friend, Ed Tauch.

    "Just One of Those Things" was featured in two Doris Day musical films, Lullaby of Broadway (1951) and Young at Heart (1954), and also in the film version of Can-Can (1960) in which it's performed by Maurice Chevalier.

    Podcasts:

    Red Mitchell

    ALBUMS

    Born: 1927-09-20

    Died: 1992-11-08

    • Just One Of Those Things (Remastered 1998)

      Provided to YouTube by Universal Music Group Just One Of Those Things (Remastered 1998) · Frank Sinatra Swing Easy! ℗ 1998 Capitol Records, LLC Released on: 1954-01-01 Associated Performer, Vocals: Frank Sinatra Producer: Voyle Gilmore Conductor: Nelson Riddle Studio Personnel, Mastering Engineer: Robert Norberg Studio Personnel, Mastering Engineer: Bob Norberg Composer Lyricist: Cole Porter Auto-generated by YouTube.

      published: 24 Jul 2018
    • Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadier

      "Just One Of Those Things" Emmet Cohen - Piano Patrick Bartley - Alto Sax Larry Grenadier - Bass Kyle Poole - Drums Video Design: Alex Weitz http://abw-productions.com Sound: Kelvin Grant tfsoundworks@gmail.com

      published: 24 May 2023
    • Just One of Those Things - Frank Sinatra

      Frank Sinatra The Absolutely essential 3 CD Collection disc two

      published: 31 Jan 2012
    • Just One Of Those Things [Song by Cole Porter] 1957

      Classic Mood Experience The best masterpieces ever recorded in the music history. Join our Youtube: https://goo.gl/8AOGaN Join our Facebook: http://goo.gl/5oL723 Cole Albert Porter (June 9, 1891 – October 15, 1964) was an American composer and songwriter. Born to a wealthy family in Indiana, he defied the wishes of his domineering grandfather and took up music as a profession. Classically trained, he was drawn towards musical theatre. After a slow start, he began to achieve success in the 1920s, and by the 1930s he was one of the major songwriters for the Broadway musical stage. Unlike many successful Broadway composers, Porter wrote the lyrics, as well as the music, for his songs. After a serious horseback riding accident in 1937, Porter was left disabled and in constant pain, but he con...

      published: 14 Jan 2013
    • Tony Bennett - Just One Of Those Things (Official Audio)

      Listen to Tony Bennett & Lady Gaga’s new album “Love For Sale”, available now: https://TonyGaga.lnk.to/LoveForSale Shop “Love For Sale” music and merch in the official store: https://shop.ladygaga.com Follow Tony Bennett: Facebook: https://www.facebook.com/tonybennett Instagram: https://www.instagram.com/itstonybennett Twitter: https://twitter.com/itstonybennett Website: https://www.tonybennett.com/ Follow Lady Gaga: Facebook: http://gaga.lk/facebook Instagram: http://gaga.lk/Instagram Snapchat: http://gaga.lk/Snapchat Twitter: http://gaga.lk/Twitter Website: http://www.ladygaga.com/ Official Store: http://gaga.lk/GagaStore Email List: http://gaga.lk/News Music video by Tony Bennett performing Just One Of Those Things (Audio). © 2021 Columbia Records, a division of Sony Music Entertain...

      published: 01 Oct 2021
    • Just One Of Those Things - Ella Fitzgerald

      Created with http://www.mp32tube.com

      published: 14 Jan 2012
    • Harry Connick Jr. - Just One Of Those Things

      I'm thrilled to share my new music video with y'all! Lemme know what you think 😃 Pre-order True Love: A Celebration of Cole Porter here: https://HarryConnickJr.lnk.to/TrueLoveYD Follow Harry @HarryConnickJr Director - Bobby Bruderle Creative & Production Co - No Chiefs + TBA Films, Inc. Executive Producers - Marium Raja & Dee Allen Creative Producer - Danielle Salzedo Producer - Tyler Ben-Amotz Editor - Alex Morrison It was just one of those things Just one of those crazy flings One of those bells that now and then rings Just one of those things It was just one of those nights Just one of those fabulous flights A trip to the moon on gossamer wings Just one of those things If we'd thought a bit before the end of it When we started painting the town We'd have been aware that our love aff...

      published: 17 Sep 2019
    • 1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)

      Popular standard from “Jubilee,” the Cole Porter-Moss Hart musical that also introduced “Begin The Beguine.” The play opened 10-12-35 for 169 performances and starred Mary Boland and Melville Cooper. CD audio, originally issued on 78rpm: Victor 25161 - Just One Of Those Things (Porter) by Richard Himber and his Ritz-Carlton Orchestra, vocal by Stuart Allen, recorded in NYC October 21, 1935 THE 1935 HITS ARCHIVE - a collection of commercial recordings and songs that proved popular during the calendar year 1935 (some were recorded in 1934) via sales, sheet music, and radio exposure.…plus some others that have gained increased recognition or have been shown to have had an impact during the decades that followed. . ----------------------------------------------------------------------------...

      published: 31 May 2019
    • Willie Clayton - Just One Of Them Things

      Listen Now: https://social.tunecore.com/linkShare?linkid=9SIdF_jiyC2WCJnyHhQTaA Filmed By @Ron21hoops

      published: 26 Jul 2024
    • Ella Fitzgerald - Just one of those things (1957) [Restored]

      "Just One of Those Things" is a song written by Cole Porter for the 1935 musical Jubilee.

      published: 29 Aug 2019
    developed with YouTube
    Just One Of Those Things (Remastered 1998)
    3:13

    Just One Of Those Things (Remastered 1998)

    • Order:
    • Duration: 3:13
    • Uploaded Date: 24 Jul 2018
    • views: 224373
    Provided to YouTube by Universal Music Group Just One Of Those Things (Remastered 1998) · Frank Sinatra Swing Easy! ℗ 1998 Capitol Records, LLC Released on: 1954-01-01 Associated Performer, Vocals: Frank Sinatra Producer: Voyle Gilmore Conductor: Nelson Riddle Studio Personnel, Mastering Engineer: Robert Norberg Studio Personnel, Mastering Engineer: Bob Norberg Composer Lyricist: Cole Porter Auto-generated by YouTube.
    https://wn.com/Just_One_Of_Those_Things_(Remastered_1998)
    Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadier
    14:56

    Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadier

    • Order:
    • Duration: 14:56
    • Uploaded Date: 24 May 2023
    • views: 80342
    "Just One Of Those Things" Emmet Cohen - Piano Patrick Bartley - Alto Sax Larry Grenadier - Bass Kyle Poole - Drums Video Design: Alex Weitz http://abw-productions.com Sound: Kelvin Grant tfsoundworks@gmail.com
    https://wn.com/Just_One_Of_Those_Things_W_Emmet_Cohen,_Patrick_Bartley_Larry_Grenadier
    Just One of Those Things - Frank Sinatra
    3:22

    Just One of Those Things - Frank Sinatra

    • Order:
    • Duration: 3:22
    • Uploaded Date: 31 Jan 2012
    • views: 347355
    Frank Sinatra The Absolutely essential 3 CD Collection disc two
    https://wn.com/Just_One_Of_Those_Things_Frank_Sinatra
    Just One Of Those Things [Song by Cole Porter] 1957
    5:35

    Just One Of Those Things [Song by Cole Porter] 1957

    • Order:
    • Duration: 5:35
    • Uploaded Date: 14 Jan 2013
    • views: 39733
    Classic Mood Experience The best masterpieces ever recorded in the music history. Join our Youtube: https://goo.gl/8AOGaN Join our Facebook: http://goo.gl/5oL723 Cole Albert Porter (June 9, 1891 – October 15, 1964) was an American composer and songwriter. Born to a wealthy family in Indiana, he defied the wishes of his domineering grandfather and took up music as a profession. Classically trained, he was drawn towards musical theatre. After a slow start, he began to achieve success in the 1920s, and by the 1930s he was one of the major songwriters for the Broadway musical stage. Unlike many successful Broadway composers, Porter wrote the lyrics, as well as the music, for his songs. After a serious horseback riding accident in 1937, Porter was left disabled and in constant pain, but he continued to work. His shows of the early 1940s did not contain the lasting hits of his best work of the 1920s and '30s, but in 1948 he made a triumphant comeback with his most successful musical, Kiss Me, Kate. It won the first Tony Award for Best Musical. Porter's other musicals include Fifty Million Frenchmen, DuBarry Was a Lady, Anything Goes, Can-Can and Silk Stockings. His numerous hit songs include "Night and Day", "Begin the Beguine", "I Get a Kick Out of You", "Well, Did You Evah!", "I've Got You Under My Skin", "My Heart Belongs to Daddy" and "You're the Top". He also composed scores for films from the 1930s to the 1950s, including Born to Dance (1936), which featured the song "You'd Be So Easy to Love"; Rosalie (1937), which featured "In the Still of the Night"; High Society (1956), which included "True Love"; and Les Girls (1957). FROM WIKIPEDIA: https://en.wikipedia.org/wiki/Cole_Porter 🎷🎶 🎷🎶 🎷🎶 Subscribe to our channel for the best music masterpieces: http://bit.ly/ClassicMoodExperience Classic Mood Experience The best masterpieces ever recorded in the music history. Explore Classic Mood Experience music, the best  jazz, blues, rock, pop, R&B, soul, lantin songs ever recorded by Etta James, Billie Holiday, Bill Evans, Stevie Wonder, Ray Charles, Nina Simone, Muddy Waters, Django Reinhardt, Louis Armstrong, Miles Davis, James Brown, Chet Baker, Frank Sinatra, Ella Fitzgerald, Harry Belafonte, Nat King Cole, Louis Prima, Duke Ellington, Elvis Presley, Count Basie, Little Walter, Herbie Hancock, Edith Piaf, Aretha Franklin, Charlie Parker, Lightnin' Hopkins, Son House, B.B. King, Thelonious Monk, Howlin' Wolf, Quincy Jones, Johnny Cash, Glenn Miller, Chuck Berry, Dizzy Gillespie, Paul Anka, John Coltrane, John Lee Hooker, Coleman Hawkins, Robert Johnson, Dean Martin, Oscar Peterson, George Gershwin, Ben E. King, Big Bill Broonzy, Hank Williams, Benny Goodman, Art Tatum, Big Joe Turner, Bing Crosby, Jimmie Rodgers, Mamie Smith, Ma Rainey, Dave Brubeck, Mahalia Jackson, Fats Domino, Marvin Gaye, Bud Powell, Sonny Rollins, Fats Waller, Tony Bennett, Dinah Washington, Sarah Vaughan, Perry Como, Gerry Mulligan and many more. Listen to the best of Classic Mood Experience: https://www.youtube.com/playlist?list=PLSdaj2Wn7snI0cPetmOp4VhjocT1GrPfA Thank you for watching this video by Classic Mood Experience channel! Don't forget to share it and subscribe to our channel http://bit.ly/ClassicMoodExperience
    https://wn.com/Just_One_Of_Those_Things_Song_By_Cole_Porter_1957
    Tony Bennett - Just One Of Those Things (Official Audio)
    3:01

    Tony Bennett - Just One Of Those Things (Official Audio)

    • Order:
    • Duration: 3:01
    • Uploaded Date: 01 Oct 2021
    • views: 131625
    Listen to Tony Bennett & Lady Gaga’s new album “Love For Sale”, available now: https://TonyGaga.lnk.to/LoveForSale Shop “Love For Sale” music and merch in the official store: https://shop.ladygaga.com Follow Tony Bennett: Facebook: https://www.facebook.com/tonybennett Instagram: https://www.instagram.com/itstonybennett Twitter: https://twitter.com/itstonybennett Website: https://www.tonybennett.com/ Follow Lady Gaga: Facebook: http://gaga.lk/facebook Instagram: http://gaga.lk/Instagram Snapchat: http://gaga.lk/Snapchat Twitter: http://gaga.lk/Twitter Website: http://www.ladygaga.com/ Official Store: http://gaga.lk/GagaStore Email List: http://gaga.lk/News Music video by Tony Bennett performing Just One Of Those Things (Audio). © 2021 Columbia Records, a division of Sony Music Entertainment /Interscope Records, a division of UMG Recordings, Inc. http://vevo.ly/tBnr1f
    https://wn.com/Tony_Bennett_Just_One_Of_Those_Things_(Official_Audio)
    Just One Of Those Things - Ella Fitzgerald
    3:33

    Just One Of Those Things - Ella Fitzgerald

    • Order:
    • Duration: 3:33
    • Uploaded Date: 14 Jan 2012
    • views: 122894
    Created with http://www.mp32tube.com
    https://wn.com/Just_One_Of_Those_Things_Ella_Fitzgerald
    Harry Connick Jr. - Just One Of Those Things
    3:17

    Harry Connick Jr. - Just One Of Those Things

    • Order:
    • Duration: 3:17
    • Uploaded Date: 17 Sep 2019
    • views: 524569
    I'm thrilled to share my new music video with y'all! Lemme know what you think 😃 Pre-order True Love: A Celebration of Cole Porter here: https://HarryConnickJr.lnk.to/TrueLoveYD Follow Harry @HarryConnickJr Director - Bobby Bruderle Creative & Production Co - No Chiefs + TBA Films, Inc. Executive Producers - Marium Raja & Dee Allen Creative Producer - Danielle Salzedo Producer - Tyler Ben-Amotz Editor - Alex Morrison It was just one of those things Just one of those crazy flings One of those bells that now and then rings Just one of those things It was just one of those nights Just one of those fabulous flights A trip to the moon on gossamer wings Just one of those things If we'd thought a bit before the end of it When we started painting the town We'd have been aware that our love affair Was too hot not to cool down So good-bye, dear, and amen Here's hoping we meet now and then It was great fun But it was just one of those things Music video by Harry Connick Jr. performing Just One Of Those Things. © 2019 Connick Performances, Inc., under exclusive license to Verve Label Group http://vevo.ly/Kiw1DD
    https://wn.com/Harry_Connick_Jr._Just_One_Of_Those_Things
    1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)
    2:50

    1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)

    • Order:
    • Duration: 2:50
    • Uploaded Date: 31 May 2019
    • views: 16615
    Popular standard from “Jubilee,” the Cole Porter-Moss Hart musical that also introduced “Begin The Beguine.” The play opened 10-12-35 for 169 performances and starred Mary Boland and Melville Cooper. CD audio, originally issued on 78rpm: Victor 25161 - Just One Of Those Things (Porter) by Richard Himber and his Ritz-Carlton Orchestra, vocal by Stuart Allen, recorded in NYC October 21, 1935 THE 1935 HITS ARCHIVE - a collection of commercial recordings and songs that proved popular during the calendar year 1935 (some were recorded in 1934) via sales, sheet music, and radio exposure.…plus some others that have gained increased recognition or have been shown to have had an impact during the decades that followed. . ---------------------------------------------------------------------------------------------- The three* MusicProf channels are home to The HITS ARCHIVES, YouTube’s most comprehensive collection of U.S. ‘popular music’ recordings from 1925 thru 1975. Discover thousands of original hit versions, conveniently arranged in year-by-year playlists and sorted alphabetically in your choice of either song title or artist name. Simply visit this channel’s home page (here: https://www.youtube.com/@the78prof72 ), scroll down the rows of playlist categories, choose a favorite year, click on “view full playlist,” and then pick out the songs that you want to hear. Enjoy the music! * The78Prof The45Prof AnotherProf
    https://wn.com/1935_Hits_Archive_Just_One_Of_Those_Things_Richard_Himber_(Stuart_Allen,_Vocal)
    Willie Clayton - Just One Of Them Things
    3:23

    Willie Clayton - Just One Of Them Things

    • Order:
    • Duration: 3:23
    • Uploaded Date: 26 Jul 2024
    • views: 154145
    Listen Now: https://social.tunecore.com/linkShare?linkid=9SIdF_jiyC2WCJnyHhQTaA Filmed By @Ron21hoops
    https://wn.com/Willie_Clayton_Just_One_Of_Them_Things
    Ella Fitzgerald - Just one of those things (1957) [Restored]
    3:18

    Ella Fitzgerald - Just one of those things (1957) [Restored]

    • Order:
    • Duration: 3:18
    • Uploaded Date: 29 Aug 2019
    • views: 17289
    "Just One of Those Things" is a song written by Cole Porter for the 1935 musical Jubilee.
    https://wn.com/Ella_Fitzgerald_Just_One_Of_Those_Things_(1957)_Restored
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Just One Of Those Things (Remastered 1998)
      3:13
      Just One Of Those Things (Remastered 1998)remove from playlist
    • Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadier
      14:56
      Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadierremove from playlist
    • Just One Of Those Things [Song by Cole Porter] 1957
      5:35
      Just One Of Those Things [Song by Cole Porter] 1957remove from playlist
    • Tony Bennett - Just One Of Those Things (Official Audio)
      3:01
      Tony Bennett - Just One Of Those Things (Official Audio)remove from playlist
    • Harry Connick Jr. - Just One Of Those Things
      3:17
      Harry Connick Jr. - Just One Of Those Thingsremove from playlist
    • 1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)
      2:50
      1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)remove from playlist
    • Willie Clayton - Just One Of Them Things
      3:23
      Willie Clayton - Just One Of Them Thingsremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Just One Of Those Things (Remastered 1998)

    Provided to YouTube by Universal Music Group Just One Of Those Things (Remastered 1998) · Frank Sinatra Swing Easy! ℗ 1998 Capitol Records, LLC Released on: 1954-01-01 Associated Performer, Vocals: Frank Sinatra Producer: Voyle Gilmore Conductor: Nelson Riddle Studio Personnel, Mastering Engineer: Robert Norberg Studio Personnel, Mastering Engineer: Bob Norberg Composer Lyricist: Cole Porter Auto-generated by YouTube.
    3:13
    Just One Of Those Things (Remastered 1998)
    Provided to YouTube by Universal Music Group Just One Of Those Things (Remastered 1998) ·...
    published: 24 Jul 2018
    Play in Full Screen
    14:56
    Just One of Those Things w/ Emmet Cohen, Patrick Bartley & Larry Grenadier
    "Just One Of Those Things" Emmet Cohen - Piano Patrick Bartley - Alto Sax Larry Grenadier...
    published: 24 May 2023
    Play in Full Screen
    3:22
    Just One of Those Things - Frank Sinatra
    Frank Sinatra The Absolutely essential 3 CD Collection disc two
    published: 31 Jan 2012
    Play in Full Screen
    5:35
    Just One Of Those Things [Song by Cole Porter] 1957
    Classic Mood Experience The best masterpieces ever recorded in the music history. Join our...
    published: 14 Jan 2013
    Play in Full Screen
    3:01
    Tony Bennett - Just One Of Those Things (Official Audio)
    Listen to Tony Bennett & Lady Gaga’s new album “Love For Sale”, available now: https://Ton...
    published: 01 Oct 2021
    Play in Full Screen
    3:33
    Just One Of Those Things - Ella Fitzgerald
    Created with http://www.mp32tube.com
    published: 14 Jan 2012
    Play in Full Screen
    3:17
    Harry Connick Jr. - Just One Of Those Things
    I'm thrilled to share my new music video with y'all! Lemme know what you think 😃 Pre-orde...
    published: 17 Sep 2019
    Play in Full Screen
    2:50
    1935 HITS ARCHIVE: Just One Of Those Things - Richard Himber (Stuart Allen, vocal)
    Popular standard from “Jubilee,” the Cole Porter-Moss Hart musical that also introduced “B...
    published: 31 May 2019
    Play in Full Screen
    3:23
    Willie Clayton - Just One Of Them Things
    Listen Now: https://social.tunecore.com/linkShare?linkid=9SIdF_jiyC2WCJnyHhQTaA Filmed By ...
    published: 26 Jul 2024
    Play in Full Screen
    3:18
    Ella Fitzgerald - Just one of those things (1957) [Restored]
    "Just One of Those Things" is a song written by Cole Porter for the 1935 musical Jubilee.
    published: 29 Aug 2019
    Play in Full Screen

    Red Mitchell

    Keith Moore "Red" Mitchell (September 20, 1927 November 8, 1992), was an American jazz double-bassist, composer, lyricist, and poet.

    Biography

    Mitchell was born on September 20, 1927, in New York City. His younger brother, Whitey Mitchell, also became a jazz bassist.

    Mitchell was raised in New Jersey by a father who was an engineer and loved music, and a mother who loved poetry. His first instruments were piano, alto saxophone, and clarinet. Although Cornell University awarded him an engineering scholarship, by 1947 he was in the US Army playing bass. The next year he was in a jazz trio in New York City.

    Mitchell became known for performing and/or recording with Mundell Lowe, Chubby Jackson, Charlie Ventura, Woody Herman, Red Norvo, Gerry Mulligan, and, after joining the West Coast jazz scene in the early 1950s, with André Previn, Shelly Manne, Hampton Hawes, Billie Holiday, Stan Seltzer, Ornette Coleman, and others. He also worked as a bassist in the TV and film studios around Los Angeles, occasionally appearing on screen. Mitchell also appeared in documentaries about Tal Farlow, and Zoot Sims.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×