- published: 21 Jan 2016
- views: 359557148
'+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; })); }); -->
Alexis & Fido, a.k.a. Los Pitbulls,Los Reyes Del Perreo, are a Latin Grammy nominated reggaeton duo from Puerto Rico. They are CEOs and co-founders of Wild Dogz Music. In 2008, "Sobrenatural" was nominated for Album Urbano. In 2012, "Energía" was nominated for Canción Urbana. In 2013, "Rompe La Cintura" was nominated for – Interpretación Urbana. Nominated for the 2014 awards, “Album Urbano” with “La Esencia”.
According to Fido, he and Yandel were close friends as teenagers and helped each other kick-start their careers. Likewise, Alexis was close to Wisin, and also helped him with his career. Eventually the two duos were formed, Alexis & Fido and Wisin & Yandel, and went their separate ways. Alexis & Fido featured on Yandel's solo album Quien Contra Mí, in Wisin's solo album El Sobreviviente and Wisin & Yandel featured on Alexis & Fido's Los Reyes Del Perreo album. These plans include working with artists like Arcángel, Wisin & Yandel again, and many more artists.
Plan B architects is a Colombian architecture firm. The firm designed the towering Orchidiarium at the Medellin Botanical Garden with JPRCR Architects. Plan B also designed the V House in Bogotá The firm also assisted Mazzanti in designing the Medellín Sports Coliseum.
"Plan B" is the 6th episode of the second season of The CW television series, The Vampire Diaries and the 28th episode of the series overall. It originally aired on October 21, 2010. The episode was written by Elizabeth Craft and Sarah Fain and directed by John Behring.
The episode starts with the scenes switching between Elena (Nina Dobrev) and Stefan (Paul Wesley) and Katherine and Mason (Taylor Kinney) waking up together. Elena and Stefan talk about how to keep hiding from Katherine and she keeps feeding Stefan with her blood, while Katherine tries to make Mason tell her where he hid the moonstone but he tells her that it is safe and he will give it to her later that night.
Jeremy (Steven R. McQueen) pays a visit to Damon (Ian Somerhalder) because he wants to help, as he says, and informs Damon what he learn about werewolves from Tyler (Michael Trevino) and that Mason is looking for a moonstone. Alaric (Matt Davis) arrives with more information from Isobel's research that says that moonstones can be used to seal a curse and they wonder if Mason wants it so he can reverse the werewolf curse.
Benjamin Paul Ballance-Drew (born 22 October 1983), primarily known as Plan B or Ben Drew, is an English rapper, singer-songwriter, actor, film director and producer. He first emerged as a hip hop artist, releasing his critically acclaimed debut album Who Needs Actions When You Got Words in 2006. His second studio album, The Defamation of Strickland Banks (2010), was a soul record and went straight to number one on the UK Albums Chart. He has also collaborated with other artists such as Chase & Status, most notably on the 2009 top ten single "End Credits".
Drew has also had a successful film career as an actor, with roles in Adulthood (2008), Harry Brown (2009), 4.3.2.1 (2010), and The Sweeney (2012). In 2012, he released the film Ill Manors, which he wrote and directed, accompanied by a Plan B soundtrack album which became his second number one album.
Drew was born and raised in Forest Gate, London. His mother worked for a local authority and his father, Paul Ballance, played in a punk rock band called the Warm Jets during the 1970s. He was five months old when his father walked out on the family, and six years old when his father "disappeared completely". Growing up, Drew felt outcast from much of society, stating, "We weren't working class but we weren't middle class, we were in the void in-between. I've always felt like a social outcast."
José Alejandro Suárez Martín (born 6 March 1974), known as Alexis, is a Spanish retired footballer who played mainly as a central defender.
He amassed La Liga totals of 195 games and seven goals over the course of eight seasons, representing in the competition Tenerife, Levante and Valladolid.
Born in Las Palmas, Canary Islands, Alexis started playing professionally with hometown's UD Las Palmas, by then in Segunda División B. Subsequently he joined neighbours CD Tenerife, making his La Liga debuts in the 1995–96 season as the Chicharreros finished in fifth position.
After Tenerife's second top level relegation in four years, in 2002, Alexis played a further season with the club before signing for Levante UD, being instrumental in the Valencia side's 2004 promotion.
After another promotion and relegation with Levante he scored a rare goal in 2006–07, in a 1–0 away win against Recreativo de Huelva on 17 September 2006, being an undisputed first-choice throughout the top flight campaign (33 starts in 34 appearances, 2,979 minutes of action).
Willibald Alexis, the pseudonym of Georg Wilhelm Heinrich Häring (29 June 1798 – 16 December 1871), was a German historical novelist, considered part of the Young Germany movement.
Alexis was born in Breslau, Silesia. His father, who came of a French refugee family, named Hareng, held a high position in the war department. He attended the Werdersche Gymnasium in Berlin, and then, serving as a volunteer in the campaign of 1815, took part in the siege of the Ardenne fortresses. On his return, he studied law at the University of Berlin and the University of Breslau and entered the legal profession, but he soon abandoned this career and devoted himself to literature. Settling in Berlin, he edited, from 1827 to 1835, the Berliner Konversationsblatt, in which for the first two years he was assisted by Friedrich Christoph Forster (1791-1868); and in 1828 was created a doctor of philosophy by the University of Halle. In 1852 he retired to Arnstadt in Thuringia, where after many years of broken health he died.
Corydon (from the Greek κόρυδος korudos "lark") is a stock name for a shepherd in ancient Greek pastoral poems and fables, such as the one in Idyll 4 of the Syracusan poet Theocritus (c.310-250 BC). The name was also used by the Latin poets Siculus and, more significantly, Virgil. In the second of Virgil's Eclogues, it is used for a shepherd whose love for the boy Alexis is described therein. Virgil's Corydon gives his name to the modern book Corydon.
Corydon is the name of a character that features heavily in the Eclogues of Calpurnius Siculus. Some scholars believe that Calpurnius represents himself, or at least his "poetic voice" through Corydon,
Corydon is mentioned in Edmund Spenser's The Fairie Queen as a shepherd in Book VI, Canto X. In this section he is portrayed as a coward who fails to come to the aid of Pastorell when she is being pursued by a tiger.
The name also appears in poem number 17 ("My flocks feed not, my ewes breed not") of The Passionate Pilgrim, an anthology of poetry first published in 1599 and attributed on the title page of the collection to Shakespeare. This poem appeared the following year in another collection, England's Helicon, where it was attributed to "Ignoto" (Latin for "Unknown"). Circumstantial evidence points to a possible authorship by Richard Barnfield, whose first published work, The Affectionate Shepherd, though dealing with the unrequited love of Daphnis for Ganymede, was in fact, as Barnfield stated later, an expansion of Virgil's second Eclogue which dealt with the love of Corydon for Alexis.
ALEXISYFIDOVEVO New single from Alexis y Fido. Seven Times Grammy Nominees Alexis y Fido filmed this music video in Colombia. Itunes: http://smarturl.it/unaenunmillon Spotify : http://bit.ly/unaenunmillonspotify Download Alexis y Fido new single "Una En Un Millón" now on: http://www.alexisyfido.com Google Play: smarturl.it/unaenunmillon Amazon: smarturl.it/unaenunmillon Download the App of Alexis y Fido: http://smarturl.it/AlexisyFidoApp https://itunes.apple.com/us/album/una-en-un-millon/id1059066123?i=1059066281 Also Visit: https://youtube.com/alexisyfidovevo https://youtube.com/wilddogzmusic https://instagram.com/alexisyfido https://instagram.com/fidoreal https://instagram.com/mralexispr https://facebook.com/alexisydo https://twitter.com/alexisyfido https://pandora.com/alexis-f...
Best of Alexis y Fido / Lo mejor de Alexis y Fido: https://goo.gl/wL4pXR Subscribe here: https://goo.gl/n5cfVa http://www.alexisyfido.com Download Alexis y Fido new single "Santa De Mi Devoción" now on: iTunes: smarturl.it/worldedition Google Play: smarturl.it/worldedition Amazon: smarturl.it/worldedition Listen to Alexis y Fido on Spotify: http://smarturl.it/worldedition/Spotify Listen to Alexis y Fido on Sound Cloud: http://smarturl.it/worldedition/SoundCloud Download the App of Alexis y Fido: http://smarturl.it/AlexisyFidoApp Also Visit: https://youtube.com/alexisyfidovevo https://youtube.com/wilddogzmusic https://instagram.com/alexisyfido https://instagram.com/fidoreal https://instagram.com/mralexispr https://facebook.com/alexisydo https://twitter.com/alexisyfido https://pandora....
Vídeo oficial de Alexis & Fido de su tema 'Donde Estés Llegaré'. Haz clic aquí para escuchar a Alexis & Fido en Spotify: http://smarturl.it/AFSpot?IQid=AFDEL Incluido en Perreología. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFPEiTunes?IQid=AFDEL Google Play: http://smarturl.it/AFDELPlay?IQid=AFDEL Amazon: http://smarturl.it/AFPAm?IQid=AFDEL Más de Alexis & Fido Contéstame el Teléfono: https://youtu.be/yf9PO6Q7a30 Rompe La Cintura: https://youtu.be/bMCwoHNm_d4 5 Letras: https://youtu.be/OK-yFyj-og8 Pincha aquí http://smarturl.it/FUPlaylist?IQid=AFDEL para escuchar más vídeos de buen Fiesta Urbana. Sigue a Alexis & Fido Website: http://www.alexisyfido.com/ Facebook: https://www.facebook.com/alexisyfido Twitter: https://twitter.com/alexisyfido Instagram...
Vídeo oficial de Alexis & Fido de su tema 'Soy Igual Que Tú'. Haz clic aquí para escuchar a Alexis & Fido en Spotify: http://smarturl.it/AFSpot?IQid=AFSIQT Incluido en Sobrenatural. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFSiTunes?IQid=AFSIQT Google Play: http://smarturl.it/AFSIQTPlay?IQid=AFSIQT Amazon: http://smarturl.it/AFSAm?IQid=AFSIQT Más de Alexis & Fido Contéstame el Teléfono: https://youtu.be/yf9PO6Q7a30 Rompe La Cintura: https://youtu.be/bMCwoHNm_d4 5 Letras: https://youtu.be/OK-yFyj-og8 Pincha aquí http://smarturl.it/FUPlaylist?IQid=AFSIQT para escuchar más vídeos de buen Fiesta Urbana. Sigue a Alexis & Fido Website: http://www.alexisyfido.com/ Facebook: https://www.facebook.com/alexisyfido Twitter: https://twitter.com/alexisyfido Instag...
Vídeo oficial de Alexis & Fido de su tema 'EnergÍa'. Haz clic aquí para escuchar a Alexis & Fido en Spotify: http://smarturl.it/AFSpot?IQid=AFE Incluido en Perreología. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFPEiTunes?IQid=AFE Google Play: http://smarturl.it/AFEPlay?IQid=AFE Amazon: http://smarturl.it/AFPAm?IQid=AFE Más de Alexis & Fido Contéstame el Teléfono: https://youtu.be/yf9PO6Q7a30 Rompe La Cintura: https://youtu.be/bMCwoHNm_d4 5 Letras: https://youtu.be/OK-yFyj-og8 Pincha aquí http://smarturl.it/FUPlaylist?IQid=AFE para escuchar más vídeos de buen Fiesta Urbana. Sigue a Alexis & Fido Website: http://www.alexisyfido.com/ Facebook: https://www.facebook.com/alexisyfido Twitter: https://twitter.com/alexisyfido Instagram: https://instagram.com/...
"Mala Conducta feat. Franco El Gorila" OFFICIAL COVER AUDIO VIDEO MUSIC VIDEO BY ALEXIS & FIDO PERFORMING "Mala Conducta feat. Franco El Gorila". (C) 2015 SONY MUSIC ENTERTAINMENT US LATIN LLC Download Alexis & Fido's album "Camuflaje" on iTunes: http://smarturl.it/AF-Porder Google Play: http://smarturl.it/AF-POrderGP Amazon: http://smarturl.it/AF-POrderAM ALSO VISIT http://alexisyfido.com/ https://www.facebook.com/alexisyfido https://twitter.com/alexisyfido https://www.youtube.com/user/alexisyfidoVEVO
Vídeo oficial de Alexis & Fido de su tema 'Ojos Que No Ven'. Haz clic aquí para escuchar a Alexis & Fido en Spotify: http://smarturl.it/AFSpot?IQid=OQNV Incluido en Down To Earth. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFDTEiTunes?IQid=OQNV Google Play: http://smarturl.it/AFOQNVPlay?IQid=OQNV Amazon: http://smarturl.it/AFDTEAm?IQid=OQNV Más de Alexis & Fido Contéstame el Teléfono: https://youtu.be/yf9PO6Q7a30 Rompe La Cintura: https://youtu.be/bMCwoHNm_d4 5 Letras: https://youtu.be/OK-yFyj-og8 Pincha aquí http://smarturl.it/FUPlaylist?IQid=OQNV para escuchar más vídeos de buen Fiesta Urbana. Sigue a Alexis & Fido Website: http://www.alexisyfido.com/ Facebook: https://www.facebook.com/alexisyfido Twitter: https://twitter.com/alexisyfido Instagram: h...
"Camuflaje" OFFICIAL COVER AUDIO VIDEO MUSIC VIDEO BY ALEXIS & FIDO PERFORMING "Camuflaje". (C) 2015 SONY MUSIC ENTERTAINMENT US LATIN LLC Download Alexis & Fido's album "Camuflaje" on iTunes: http://smarturl.it/AF-Porder Google Play: http://smarturl.it/AF-POrderGP Amazon: http://smarturl.it/AF-POrderAM ALSO VISIT http://alexisyfido.com/ https://www.facebook.com/alexisyfido https://twitter.com/alexisyfido https://www.youtube.com/user/alexisyfidoVEVO
#jereklein #chikamala #chencho #donomar #camuflaje #ayerlavi #ryancastro #myketowers #eljoan #crismj #gataonly #floyymenor #karolg #pesopluma #remix #dj #reggaeton #turreo #rktchill #turreoedit #feid #ferxxo #tiktok #mashuptiktok
Vídeo oficial de Alexis & Fido de su tema 'Bartender'. Haz clic aquí para escuchar a Alexis & Fido en Spotify: http://smarturl.it/AFSpot?IQid=AFB Incluido en Down To Earth. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFDTEiTunes?IQid=AFB Google Play: http://smarturl.it/AFBPlay?IQid=AFB Amazon: http://smarturl.it/AFDTEAm?IQid=AFB Más de Alexis & Fido Contéstame el Teléfono: https://youtu.be/yf9PO6Q7a30 Rompe La Cintura: https://youtu.be/bMCwoHNm_d4 5 Letras: https://youtu.be/OK-yFyj-og8 Pincha aquí http://smarturl.it/FUPlaylist?IQid=AFB para escuchar más vídeos de buen Fiesta Urbana. Sigue a Alexis & Fido Website: http://www.alexisyfido.com/ Facebook: https://www.facebook.com/alexisyfido Twitter: https://twitter.com/alexisyfido Instagram: https://instagr...
Alexis & Fido, a.k.a. Los Pitbulls,Los Reyes Del Perreo, are a Latin Grammy nominated reggaeton duo from Puerto Rico. They are CEOs and co-founders of Wild Dogz Music. In 2008, "Sobrenatural" was nominated for Album Urbano. In 2012, "Energía" was nominated for Canción Urbana. In 2013, "Rompe La Cintura" was nominated for – Interpretación Urbana. Nominated for the 2014 awards, “Album Urbano” with “La Esencia”.
According to Fido, he and Yandel were close friends as teenagers and helped each other kick-start their careers. Likewise, Alexis was close to Wisin, and also helped him with his career. Eventually the two duos were formed, Alexis & Fido and Wisin & Yandel, and went their separate ways. Alexis & Fido featured on Yandel's solo album Quien Contra Mí, in Wisin's solo album El Sobreviviente and Wisin & Yandel featured on Alexis & Fido's Los Reyes Del Perreo album. These plans include working with artists like Arcángel, Wisin & Yandel again, and many more artists.
Yo!
Estos son los pitbulls!
(Nesty!)
GRRRRRRRR HAAAAAAUUUUFFFF!!!!
Hey, ma'...
Tu no digas...shhhh na'...
Que mi novia no sabe na'...
Que esta noche me la paso perriando...
Eso ehh, eso ehh...
(Eso ehh, eso ehh!)
Eso ehh, eso ehh...
Que esta noche me la paso perriando...
Eso ehh, eso ehh...
(Eso ehh, eso ehh!)
Eso ehh, eso ehh...
Esta noche ando camuflajeao
Con las gafas y el do-rag
En la disco buscando a mi nueva aventura
Mi gata paga lo que sea por mi captura
Vente, vamonos pa' la parte oscura
Oye!, de donde salio tanto porte y elegancia
Suave fragancia que aumenta mis ansias
Le gusta Miami, Las Vegas, y Francia
Usa camisa mini, dinero es su importancia
Perfume Paris Hilton y cartera de rhinestones
Tiene cuentas con Cingular, Sprint, y Verizon
Ella te pichea por el strike zone
Y ha noquea'o mas tipos que Mike Tyson
Hey, ma'...
Tu no digas shhh na'...
Que mi novia no sabe na'...
Que esta noche me la paso perriando...
Eso ehh, eso ehh...
(Eso ehh, eso ehh!)
Eso ehh, eso ehh...
Que esta noche me la paso perriando...
Yo loco por conocerte, ehh
Buscando la manera de envolverte
Déjame conocerte, ehh
Por si acaso no vuelvo a verte
Yo loco por conocerte, ehh
Buscando la manera de envolverte
Déjame conocerte, ehh
Por si acaso no vuelvo a verte
Yo se que tu 'tas loca porque yo te coma
Dulce aroma, masticable como goma
Me impresiona con esa cara 'e diablona
Cuando tus ojos se asoman mi mente no razona
Yo se que tu quieres, toma-toma
Un poquito de cortisona, toma
Uh-oh, se te irrito la zona
Toma-toma, cuando tú quieras
Nos montamos a tirar la maroma
Hey, ma'...
Tu no digas..shhh...na'...
Que mi novia no sabe na'...
Que esta noche me la paso perriando...
Eso ehh, eso ehh...
(Eso ehh, eso ehh!)
Eso ehh, eso ehh...
Que esta noche me la paso perriando...
Eso ehh, eso ehh...
(Eso ehh, eso ehh!)
Eso ehh, eso ehh...
Yo!
Nosotros somos los pitbulls!
Los reyes del perreo!
Alexis!
Fi-dooo!
Nesty!
Víctor!
A las nenas les encanta esto!
Ja ja ja!!!