- published: 12 Oct 2013
- views: 10866139
'+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; })); }); -->
Bobby Hutcherson (born January 27, 1941) in Los Angeles is a jazz vibraphone and marimba player. "Little B's Poem" (from the album Components) is one of his best-known compositions. Hutcherson has influenced younger vibraphonists including Steve Nelson, Joe Locke and Stefon Harris.
Bobby Hutcherson was born to Eli, a master mason, and Esther, a hairdresser. Hutcherson was exposed to jazz by his brother Teddy, who listened to Art Blakey records in the family home with his friend Dexter Gordon. His older sister Peggy was a singer in Gerald Wilson's orchestra and personally introduced Hutcherson to Eric Dolphy (her boyfriend at the time) and Billy Mitchell. Hutcherson was inspired to take up the vibraphone when he heard Milt Jackson play "Bemsha Swing" on the Miles Davis and the Modern Jazz Giants LP at the age of 12. Still in his teens, Hutcherson began his professional career in the late fifties working with Curtis Amy and Carmell Jones, as well as with Dolphy and Charles Lloyd at Pandora's Box on the Sunset Strip. He made his recording debut on August 3, 1960, cutting two songs for a 7-inch single with the Les McCann trio for Pacific Jazz (released 1961), followed by the LP Groovin' Blue with the Curtis Amy-Frank Butler sextet on December 10 (also released by Pacific Jazz in 1961). In January 1962, Hutcherson joined the Billy Mitchell-Al Grey group for dates at The Jazz Workshop in San Francisco and Birdland in New York City (opposite Art Blakey). After touring with the Mitchell-Grey group for a year, Hutcherson settled in New York City (on 165th street in The Bronx) where he worked part-time as a taxi driver, before fully entering the jazz scene via his childhood friend, bassist Herbie Lewis.
Wayne's World was originally a recurring sketch from the NBC television series Saturday Night Live. It evolved from a segment titled "Wayne's Power Minute" (1987) on the CBC Television series It's Only Rock & Roll, as the main character first appeared in that show. The Saturday Night Live sketch spawned two films, and several catchphrases which have since entered the pop-culture lexicon. The sketch centered on a local public-access television program in Aurora, Illinois, hosted by Wayne Campbell (Mike Myers, the same actor from "Wayne's Power Minute"), an enthusiastic and sardonic long-haired metalhead, and his timid and sometimes high-strung, yet equally metal-loving sidekick and best friend, Garth Algar (Dana Carvey). Wayne lives with his parents and broadcasts his show "live" from the basement of their house every Friday evening at 10:30. The first "Wayne's World" sketch appeared in the 13th Saturday Night Live episode of 1988/1989.
The "show" would open with Wayne and Garth singing the lyric to the opening theme, "Wayne's World! Wayne's World! Party time! Excellent!", accompanied by Wayne's frenetic strumming of his guitar, and Garth drumming on his lap with drum sticks. The two would introduce themselves (Garth: "Party on, Wayne." Wayne: "Party on, Garth.") and then proceed to go into their various exploits, including discussions of their love of hard rock bands and "babes", as well as juvenile antics, such as the "Extreme Close-Up" (where a camera would zoom in on Wayne and Garth as they screamed) and tricking their unsuspecting guests into saying vulgar words. Garth would frequently get overexcited and lose control, upon which Wayne would have to tell him, "Take your Ritalin."
Wayne's World is a 1992 American comedy film directed by Penelope Spheeris and starring Mike Myers as Wayne Campbell and Dana Carvey as Garth Algar, hosts of the Aurora, Illinois-based public-access television cable TV show Wayne's World. The film was adapted from a sketch of the same name on NBC's Saturday Night Live.
The film grossed US$121.6 million in its theatrical run, placing it as the tenth highest-grossing film of 1992 and the highest-grossing of the 11 films based on Saturday Night Live skits. It was filmed in 34 days.
Wayne's World was Myers' feature film debut. The film also featured Rob Lowe, Tia Carrere, Lara Flynn Boyle, Brian Doyle-Murray, Robert Patrick (spoofing his role in Terminator 2: Judgment Day), Chris Farley, Ed O'Neill, Ione Skye, Meat Loaf, and Alice Cooper. Wayne's World was released on February 14, 1992, and was a critical and commercial success. A sequel, Wayne's World 2, was released on December 10, 1993. In 2000, readers of Total Film magazine voted Wayne's World the 41st-greatest comedy film of all time.
Wayne's World is an action video game based on the film Wayne's World and released in 1993 by THQ. Different versions of the game were released; the NES and Game Boy games were developed by Radical Entertainment and feature both protagonists Wayne and Garth as playable characters. The Super NES and Sega Mega Drive/Genesis games were developed by Gray Matter and feature only Wayne as a playable character.
In the NES and Game Boy games, the player controls both Wayne and Garth in different levels; however, the Super NES version had only Wayne as a playable character. In the former, Garth's main attack is a laser gun and Wayne has a kick. In the Super NES version, Wayne uses his guitar as a weapon.
According to Flux magazine, Wayne's World was the 19th worst video game of all time.
An adventure game based on the film was released for personal computers by Capstone. Argonaut was also developing a version for the unreleased Super NES CD-ROM upgrade. Nothing is known of the gameplay, just that Argonaut planned to include footage from the movie and "a lot of heavy metal music".
Scene from the movie Wayne's World
The best moments from Wayne's World 1, watch for link to Wayne's World 2 Best Bits.
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Garth (Dana Carvey) plays a wicked drum solo at the Guitar Store. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wants Wayne's girlfriend, a rock singer named Cassandra (Tia Carrere). W...
Two slacker friends try to promote their public-access cable show. Starring Mike Myers & Dana Carvey
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Wayne (Mike Myers) and Garth (Dana Carvey) explain to Benjamin (Rob Lowe) that they are not in it for the money. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wants Wayne's girlfriend,...
My favourite scene in the movie Wayne's World - Garth dances to Foxy Lady by Jimi Hendrix.
The hosts of Wayne’s World, Wayne Campbell (Mike Myers) and Garth Algar (Dana Carvey), discuss everything from drunk driving to their favorite movies and even interview Aerosmith. Saturday Night Live. Stream now on Peacock: https://pck.tv/3uQxh4q Subscribe to SNL: https://goo.gl/tUsXwM Stream Current Full Episodes: http://www.nbc.com/saturday-night-live WATCH PAST SNL SEASONS Google Play - http://bit.ly/SNLGooglePlay iTunes - http://bit.ly/SNLiTunes SNL ON SOCIAL SNL Instagram: http://instagram.com/nbcsnl SNL Facebook: https://www.facebook.com/snl SNL Twitter: https://twitter.com/nbcsnl SNL TikTok: https://www.tiktok.com/@nbcsnl GET MORE NBC Like NBC: http://Facebook.com/NBC Follow NBC: http://Twitter.com/NBC NBC Tumblr: http://NBCtv.tumblr.com/ YouTube: http://www.youtube.com/nbc ...
Wayne's World (1992) Trailer #1: Check out the trailer starring Mike Myers, Dana Carvey, and Rob Lowe! Be the first to watch, comment, and share old trailers dropping @MovieclipsClassicTrailers. ► Buy or Rent on FandangoNOW: https://www.fandangonow.com/details/movie/waynes-world-1992/1MVb8adf715767eb8397296841c58cad6df?ele=searchresult&elc=wayne&eli=0&eci=movies?cmp=MCYT_YouTube_Desc Watch more Classic Trailers: ► Classic Remade Films Playlist http://bit.ly/2nQX1eG ► Classic Superhero Films Playlist http://bit.ly/2o3saxE ► Classic Movie Adaptations Playlist http://bit.ly/2oSfo2o A big screen spin-off of the "Saturday Night Live" skit. Rob Lowe plays a producer that wants to take the public access "Wayne's World" to the world of commercial television. Wayne (Mike Myers) and Garth (D...
Wayne's World quotes 1992-1993
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Wayne (Mike Myers) impresses Cassandra (Tia Carrere) by speaking Cantonese while his ex (Lara Flynn Boyle) tries to get his attention. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wan...
Scene from the movie Wayne's World
My own personal "fix" of this scene, where I replaced the bogus notes played by Wayne with the actual opening four notes from "Stairway to Heaven". I had to use my own voice for the clerk's "Hey!!!" as well.
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Wayne (Mike Myers) and Garth (Dana Carvey) explain to Benjamin (Rob Lowe) that they are not in it for the money. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wants Wayne's girlfriend,...
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Garth (Dana Carvey) plays a wicked drum solo at the Guitar Store. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wants Wayne's girlfriend, a rock singer named Cassandra (Tia Carrere). W...
Wayne's World (1992) Trailer #1: Check out the trailer starring Mike Myers, Dana Carvey, and Rob Lowe! Be the first to watch, comment, and share old trailers dropping @MovieclipsClassicTrailers. ► Buy or Rent on FandangoNOW: https://www.fandangonow.com/details/movie/waynes-world-1992/1MVb8adf715767eb8397296841c58cad6df?ele=searchresult&elc=wayne&eli=0&eci=movies?cmp=MCYT_YouTube_Desc Watch more Classic Trailers: ► Classic Remade Films Playlist http://bit.ly/2nQX1eG ► Classic Superhero Films Playlist http://bit.ly/2o3saxE ► Classic Movie Adaptations Playlist http://bit.ly/2oSfo2o A big screen spin-off of the "Saturday Night Live" skit. Rob Lowe plays a producer that wants to take the public access "Wayne's World" to the world of commercial television. Wayne (Mike Myers) and Garth (D...
Two slacker friends try to promote their public-access cable show. Starring Mike Myers & Dana Carvey
My favourite scene in the movie Wayne's World - Garth dances to Foxy Lady by Jimi Hendrix.
www.armovieguys.com Follow us on Twitter! @armovieguys
Wayne's World movie clips: http://j.mp/1BcUCvr BUY THE MOVIE: http://amzn.to/t88UPu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Wayne (Mike Myers) and Garth (Dana Carvey) make it backstage to hang with their idol Alice Cooper. FILM DESCRIPTION: Based on the Saturday Night Live sketch of the same name, Wayne's World is a wacky, irreverent pop-culture comedy about the adventures of two amiably aimless metal-head friends, Wayne (Mike Myers) and Garth (Dana Carvey). From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive (Rob Lowe) who wants to produce a big-budget version of "Wayne's World"--and he also wants Wayne's girlfriend, a rock singer...
The best moments from Wayne's World 1, watch for link to Wayne's World 2 Best Bits.
Bobby Hutcherson (born January 27, 1941) in Los Angeles is a jazz vibraphone and marimba player. "Little B's Poem" (from the album Components) is one of his best-known compositions. Hutcherson has influenced younger vibraphonists including Steve Nelson, Joe Locke and Stefon Harris.
Bobby Hutcherson was born to Eli, a master mason, and Esther, a hairdresser. Hutcherson was exposed to jazz by his brother Teddy, who listened to Art Blakey records in the family home with his friend Dexter Gordon. His older sister Peggy was a singer in Gerald Wilson's orchestra and personally introduced Hutcherson to Eric Dolphy (her boyfriend at the time) and Billy Mitchell. Hutcherson was inspired to take up the vibraphone when he heard Milt Jackson play "Bemsha Swing" on the Miles Davis and the Modern Jazz Giants LP at the age of 12. Still in his teens, Hutcherson began his professional career in the late fifties working with Curtis Amy and Carmell Jones, as well as with Dolphy and Charles Lloyd at Pandora's Box on the Sunset Strip. He made his recording debut on August 3, 1960, cutting two songs for a 7-inch single with the Les McCann trio for Pacific Jazz (released 1961), followed by the LP Groovin' Blue with the Curtis Amy-Frank Butler sextet on December 10 (also released by Pacific Jazz in 1961). In January 1962, Hutcherson joined the Billy Mitchell-Al Grey group for dates at The Jazz Workshop in San Francisco and Birdland in New York City (opposite Art Blakey). After touring with the Mitchell-Grey group for a year, Hutcherson settled in New York City (on 165th street in The Bronx) where he worked part-time as a taxi driver, before fully entering the jazz scene via his childhood friend, bassist Herbie Lewis.