- published: 26 Sep 2022
- views: 3248032
'+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; })); }); -->
Pete Rodriguez (July 25, 1940 – November 30, 2014) was an American football coach of Mexican American descent.
Rodriguez broke into coaching as a graduate assistant at Arizona (1968–69) and later served as defensive coordinator at Western Illinois (1970–73), Florida State (1974–75), Iowa State (1976–78) and Northern Iowa (1986). He served as head coach at Western Illinois from 1979–82.
Rodriguez served as defensive line coach for the Michigan Panthers of the United States Football League from 1983-84. He was part of the USFL's first championship team, helping the Panthers to the title in 1983. He spent the 1985 season as defensive line coach with the Denver Gold.
Rodriguez was the defensive coordinator for the Ottawa Rough Riders of the Canadian Football League in 1987.
Rodriguez entered the National Football League as the Los Angeles Raiders special teams coach (1988–89). He served in a similar capacity with the Phoenix Cardinals (1990–93), Washington Redskins (1994–97), Seattle Seahawks (1998–2003) and, most recently, the Jacksonville Jaguars (2004–2006).
Pete Rodriguez was born in Bronx, New York in 1932. He was the leader and pianist of a Puerto Rican Boogaloo band from The Bronx in the mid-1960s, sometimes known as Pete Rodríguez y Su Conjunto.
The band's most successful song, "I Like It Like That", made it to the national Billboard charts and has since been covered several times including by the Blackout All-Stars. It was re-recorded by lead singer and composer Tony Pabón for the soundtrack of the 1994 movie I Like It Like That and received renewed exposure as the soundtrack to the main ident at Odeon Cinemas from 1998–2003.
Pete Rodriguez (born August 2, 1969) plays jazz trumpet and is a composer, vocalist, and percussionist. The reviewer Brian Zimmerman, in a review of the El Conde Negro album, wrote in 2015 that "Rodriguez is not only an attentive student of the Latin jazz tradition, but also one of the talented young artists who will usher it into the future."
Raised in Bronx, New York. Rodriguez is a jazz trumpeter and vocalist who is now based in Austin, Texas. Son of salsa musician, Pete "El Conde" Rodriguez. He has performed with Celia Cruz and appears on the Tito Puente’s album Mambo Birdland, which won the Latin Grammy Award for Best Traditional Tropical Album in 2000. As a leader, his recent festival performances include the IX Festival De Jazz at the Conservatorio De Musica De Puerto Rico, and with his quintet, which included Luis Perdomo (pianist), drummer Rudy Royston, saxophonist Gil Del Bosque, and bassist Ricky Rodriguez, at the 2014 Festival de Jazz de Chihuahua.
"I Like It Like That" is a song written by Tony Pabon and Manny Rodriguez. It was initially a hit for boogaloo musician Pete Rodriguez in 1967, and was one of the most influential boogaloo songs of the era. Rodriguez released an album in 1967 with the same title.
Tony Pabon and Manny Rodriguez originally wrote "I Like It Like That" in 1967. The recording was Engineered by Fred Weinberg at National Recording Studios in New York City, and Produced by Roulette records producer Pancho Cristal ( Real name -Morrie Pelsman ) For Roulette Records. Part of the recording used many of the musician's kids chanting "Ahh Bibi!" which seemed to add to the excitement of the song. At the request of Pancho Cristal, Weinberg delivered a copy to Roulette Records' owner, Morris Levy According to Weinberg, "Levy wanted the kids that were singing on the song removed as they sounded out of tune" , however, by that time a copy of the song was also delivered to a Disk Jockey named "Symphony Sid" at WEVD a New York Radio Station.Symphony Sid's Show had a huge diverse audience .The record had hit the airwaves at WEVD and requests by listeners poured in. At the suggestion of Weinberg, Morris Levy left the kids singing in the recording, which was a huge crossover hit reaching number 25 on the Billboard Hot 100 Charts.
I Like It Like That may refer to:
Gossip Girl is an American young adult novel series written by Cecily von Ziegesar and published by Little, Brown and Company, a subsidiary of the Hachette Group. The series revolves around the lives and romances of the privileged teenagers at the Constance Billard School for Girls, an elite private school in New York City's Upper East Side. The books primarily focus on best friends Blair Waldorf and Serena van der Woodsen, whose experiences are among those chronicled by the eponymous gossip blogger. The novel series is based on von Ziegesar's experiences at Nightingale-Bamford School and on what she heard from friends.
The first novel, Gossip Girl, was released in April 2002; the eleventh novel of the series was released in May 2007, with a prequel novel following in October 2007. Another follow-up novel, in which the characters return home from college for the holidays, was released in hardback format in November 2009. The original novel became the inspiration for the Gossip Girl teen drama television series, created by Josh Schwartz and Stephanie Savage, which premiered on The CW Television Network on September 19, 2007. There are now 13 novels.
I Like It Like That is a 1994 comedy-drama film about the trials and tribulations of a young Puerto Rican couple living in the poverty-stricken New York City neighborhood of the South Bronx. The film stars Lauren Velez, Jon Seda, Lisa Vidal, Griffin Dunne, Jesse Borrego and Rita Moreno, and was written and directed by Darnell Martin who, in her filmmaking debut, became the first African-American female filmmaker to take helm of a film produced by a major film studio.
The film was screened in the Un Certain Regard section at the 1994 Cannes Film Festival.
Lisette Linares (Velez) is a young mother of three children, married to Chino (Seda), a bicycle messenger. Although he is always reliable as the breadwinner of the family, Chino is having an affair with the neighborhood tramp, Magdalena (Vidal). One summer evening, a blackout sweeps the neighborhood, and Chino finds himself in jail after being arrested for looting.
Faced now with the reality of keeping her family together with the main breadwinner in jail, Lisette, with the encouragement of her transgender sister Alexis (Borrego), decides to give her dream of becoming a print model a chance. As she happens to be in the right place at the right time, Lisette lands a job as the personal assistant to a major record label producer (Dunne), who is trying to sign a major Latin music group (played by the real life group the Barrio Boyz).
Canto del disco I Like It Like That. Pete Rodriguez – Megamix: https://found.ee/PeteRodriguezMegaMix GREATEST FANIA SALSA HITS Playlist: https://found.ee/GreatestFaniaSalsa Shop the Fania Records store for merch, vinyl, and more: https://found.ee/fania-store **Sígue/Follow Fania Records** Facebook: https://found.ee/faniarecordsFB Instagram: https://found.ee/faniarecordsIG YouTube: https://found.ee/fania-subscribe-yt-lat Twitter: https://found.ee/faniarecordsTwitter TikTok: https://found.ee/faniarecordsTikTok Newsletter: https://found.ee/fania-subscribe-newsletter-lat **About Fania Records** Fania’s master recording catalog is the definitive home for genres such as Latin big band, Afro-Cuban jazz, boogaloo, salsa and Latin R&B and includes artistic giants such as Celia Cruz, Willie...
"I Like It Like That" from the album "I Like It Like That (A Mi Me Gusta Así)" now available for pre-order on 180-gram audiophile vinyl at the official Fania online store: https://found.ee/peterodriguez-faniad2c-lat #ILikeItLikeThat #PeteRodriguez #FaniaRecords The fifth album by the Bronx-born, Puerto Rican bandleader and pianist Pete Rodriguez, "I Like It Like That (A Mi Me Gusta Así)" was released on Alegre Records in 1967, later acquired by historic salsa label Fania Records in 1975, at the height of the Latin boogaloo dance craze. The title track became the genre’s anthem and one of the most iconic dance hits in the history of Latin American music. Latin boogaloo is a melting pot musical genre born when young Puerto Ricans in NYC mixed African American music (R&B) and doo-wop with t...
Canto del disco I Like It Like That. Pete Rodriguez – Megamix: https://found.ee/PeteRodriguezMegaMix GREATEST FANIA SALSA HITS Playlist: https://found.ee/GreatestFaniaSalsa Shop the Fania Records store for merch, vinyl, and more: https://found.ee/fania-store **Sígue/Follow Fania Records** Facebook: https://found.ee/faniarecordsFB Instagram: https://found.ee/faniarecordsIG YouTube: https://found.ee/fania-subscribe-yt-lat Twitter: https://found.ee/faniarecordsTwitter TikTok: https://found.ee/faniarecordsTikTok Newsletter: https://found.ee/fania-subscribe-newsletter-lat **About Fania Records** Fania’s master recording catalog is the definitive home for genres such as Latin big band, Afro-Cuban jazz, boogaloo, salsa and Latin R&B and includes artistic giants such as Celia Cruz, Willi...
Cancion del disco I Like It Like That. Pete Rodriguez – Megamix: https://found.ee/PeteRodriguezMegaMix GREATEST FANIA SALSA HITS Playlist: https://found.ee/GreatestFaniaSalsa #PeteRodriguez #Micaela Shop the Fania Records store for merch, vinyl, and more: https://found.ee/fania-store **Sígue/Follow Fania Records** Facebook: https://found.ee/faniarecordsFB Instagram: https://found.ee/faniarecordsIG YouTube: https://found.ee/fania-subscribe-yt-lat Twitter: https://found.ee/faniarecordsTwitter TikTok: https://found.ee/faniarecordsTikTok Newsletter: https://found.ee/fania-subscribe-newsletter-lat **About Fania Records** Fania’s master recording catalog is the definitive home for genres such as Latin big band, Afro-Cuban jazz, boogaloo, salsa and Latin R&B and includes artistic giant...
Subscribe to Fania: https://found.ee/fania-subscribe-yt-lat Fania newsletter: https://found.ee/fania-subscribe-newsletter-lat Pete Rodriguez returns to the stage for the first time in over 40 years! Filmed at the Hostos Center for the Arts & Culture Boogaloo Weekend: Boogaloo Legends Concert Starring Pete Rodriguez - Piano Benny Bonilla - Timbales Eddie Claudio - Lead Vocals Lefty Maldonado - Congas Boogaloo Revue Orchestra Richie Gonzalez - Musical Director, Trumpet Hector Zarzuela - Trumpet Luis Perez - Trumpet Francis Marte - Trombone Chris Kollar - Trombone John Henry Robinson - Bass Luisito Gomez - Piano Juan Pepin - Congas Luis Montanez - Bongos Sammy Rosa - Vocals Sergio Quijano - Vocals Piro Paris - Vocals Bombazo Dance Co. Milteri Tucker Concepcion - Artistic Director, Dance...
PETE RODRIGUEZ EL REY DE BOOGALOO - TONY PABON - MANNY RODRIGUEZ -LATIN CLASSICS 1967 ALEGRE RECORDS NYC H. FUENTES *
pete el conde rodriguez with the fania all stars, singing azuquita mami. I don't own the rights to this video. If requested I will remove it, though it is bringing lots of happiness to many people. www.jameslamerton.com
Is Julio Rodriguez the key to dominating your 2025 fantasy baseball draft? Uncover why the Seattle Mariners' outfielder is a pivotal pick, as our hosts break down his ranking and potential to elevate your fantasy roster. Explore the fantasy implications of breakout stars like Milwaukee Brewers' Jackson Chourio and Boston Red Sox's Jaren Duran. Dominic Martino and Matthew Ana delve into their stats and potential, alongside Philadelphia Phillies' slugger Kyle Schwarber and Washington Nationals' rising star James Wood. Learn how to strategically pair high-risk, high-reward players with steady performers to craft a winning fantasy team. Tune in for expert insights and strategies to give your fantasy baseball lineup the edge it needs. Get ready to draft with confidence and transform your fant...
Provided to YouTube by Universal Music Group Babaila · Pete "El Conde" Rodríguez · Roberto Torres El Conde ℗ 1973 Craft Recordings, a division of Concord Music Group, Inc. Released on: 1974-12-31 Producer, Recording Producer, Associated Performer, Chorus: Johnny Pacheco Studio Personnel, Engineer: Jon Fausty Producer, Executive Producer: Jerry Masucci Associated Performer, Chorus: Adalberto Santiago Associated Performer, Chorus: Ray Castro Composer Lyricist: Catalino Curet Alonso Auto-generated by YouTube.
Pete Rodriguez (July 25, 1940 – November 30, 2014) was an American football coach of Mexican American descent.
Rodriguez broke into coaching as a graduate assistant at Arizona (1968–69) and later served as defensive coordinator at Western Illinois (1970–73), Florida State (1974–75), Iowa State (1976–78) and Northern Iowa (1986). He served as head coach at Western Illinois from 1979–82.
Rodriguez served as defensive line coach for the Michigan Panthers of the United States Football League from 1983-84. He was part of the USFL's first championship team, helping the Panthers to the title in 1983. He spent the 1985 season as defensive line coach with the Denver Gold.
Rodriguez was the defensive coordinator for the Ottawa Rough Riders of the Canadian Football League in 1987.
Rodriguez entered the National Football League as the Los Angeles Raiders special teams coach (1988–89). He served in a similar capacity with the Phoenix Cardinals (1990–93), Washington Redskins (1994–97), Seattle Seahawks (1998–2003) and, most recently, the Jacksonville Jaguars (2004–2006).