'+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; })); }); -->

Guido Kaczka

Guido Kaczka (Spanish pronunciation: [ˈɡiðo]; born February 2, 1978) is an Argentine television show host, actor and producer. His ex-wife was the actress Florencia Bertotti until their separation in 2010. They had been together since 1999. Their first child was born on July 10, 2008.

Show business career

Guido Kaczka began his acting career in 1985. He appeared in the Stage Production of "La Pandilla Adventurera". In 1987, he played "Quique" in Clave de Sol ("treble clef"). He was nine at the time.

After four years off the screen, Guido Kaczka returned, at the age of eleven, to play "Daniel" in El Arbol Azul ("The Blue Tree").

Next for Guido Kaczka was a job in Grande Pa! ("Super Dad"). At "Grande Pa!", he acted alongside Agustina Cherri for the first time. They would eventually act together again in the international hit, "Chiquititas" (Tiny Angels), then they would play a romantic couple in "Verano del '98" ("Summer of '98"), and appear in 2004's Los pensionados).

Guido Kaczka went on to have an important role in the highly successful youth-oriented soap Chiquititas, where he played Felipe Fraga (Piojo), main character Belen's brother. He appeared on the show during the entire first cycle (four seasons, from 1995 to 1998). Chiquititas was a Cris Morena creation produced by Telefe.

Guido

Guido is a given name Latinised from the Old High German name Wido. The given name Guy is the Norman-French version of this name.

In the United States and Canada, guido is sometimes used as a pejorative for certain Italian-Americans deemed to fit a particular ethnic stereotype.

People named Guido

Given name

  • Guido of Acqui (c. 1004–1070), bishop of Acqui
  • Guido of Cortona (c. 1190–1250), saint and founder of a convent in Cortona (Tuscany) who joined Franciscan friars in 1211
  • Guido of Arezzo (991/992–after 1033), (also Guido Aretinus, Guido da Arezzo, Guido Monaco, or Guido D'Arezzo), music theorist
  • Guido Cagnacci (1601–1663), Italian painter
  • Guido Calabresi (b. 1932), American judge and former Dean of Yale Law School
  • Guido Cavalcanti (c. 1250/1259–1300), Italian (Florentine) poet and friend of Dante
  • Guido Calza (1888–1946) Italian archaeologist
  • Guido de Bres (1522–1567) pastor, theologian, author of Belgic Confession
  • Guido delle Colonne (early 13th century), Italian writer and contemporary of Dante
  • Guido (footballer)

    Guido Alves Pereira Neto (born 9 March 1976 in Ribeirão Preto) is a Brazilian retired professional association football player.

    Playing career

    Guido was signed by MetroStars in 1997. He had trouble acclimating to the American lifestyle while living in Newark's Ironbound district.

    Statistics

    References

    External links

  • Profile on Worldfootball
  • Profile on MetroFanatic
  • Profile on MLSSoccer.com
  • Guido Pisano

    Guido Pisano (died 1149) was a prelate and diplomat from Pisa. He probably belonged to the family of the counts of Caprona, and was promoted to the College of Cardinals and appointed to the deaconry of Santi Cosma e Damiano by Pope Innocent II on 4 March 1132.

    Between 10 and 11 December 1146 he was created Papal chancellor by the Pisan Pope Eugene III. He was widely travelled, intervening in Spain, Portugal, France and Germany, and well-connected, to Wibald, to Anselm of Havelberg and to a succession of popes as well as several emperors and kings.

    Guido served as a Papal legate to the Spains on three occasions. His first visit probably took place in 1133–34, his second in 1135–37 and his third and final in 1143. During the first he went to León (before August 1134), there to either preside over a synod or attend the royal court, to resolve in favour of Bernardo of Compostela a dispute with his archbishop, Diego Gelmírez, and to confirm the election of Berengar as Bishop of Salamanca, also against Diego's wishes. During the second he presided over a synod in Burgos, which granted an indulgence to the Confraternity of Belchite, and on 26 November 1143 during the third he held a council at Girona, where Count Raymond Berengar IV of Barcelona granted of fifth of the territory he had conquered from the Moors to the Knights Templar. On his way through southern France on his first legation, he resolved in favour of the abbey of Saint-Thibéry a dispute over the church of Bessan with the monastery of La Chaise-Dieu.

    Podcasts:

    • Guido Kaczka enojó a un participante cuando le dijo a quién se parecía

      Momento emitido el lunes 15 de noviembre de 2021 en Bienvenidos a bordo.

      published: 15 Nov 2021
    • RECOPILACIÓN - Momentos divertidos de Guido Kaczka - Matias 2411

      En este vídeo podrás ver los mejores momentos de Guido en la televisión, cosas como golpes y caídas. Espero que lo disfrutes!

      published: 28 Jan 2017
    • Ella no quiso chapar y él tuvo una increíble reacción

      Momento emitido en La mejor elección el miércoles 03/02/16. Ni bien los presentó Guido Kaczka, Delfina y Nicolás se encargaron de dar indicios de que el final de la historia podía ser con el tan esperado chape. Así, los participantes fueron sorteando los juegos y, entre desafío y desafío, se cruzaron algunos piropos. Sin embargo, cuando llegó el momento de escribir la decisión definitiva en la pancarta, ella puso "No". "Me comí un balazo, ¿cómo es esto? Me hizo la triple Nelson. Me tiró buena onda y después me dijo que no. Ah, listo. ¿Querés guerra? Olvidate. Me llevo todo. Ya está, se pudre todo", fue la inesperada reacción que tuvo él. "Resentido", le dijo Delfi. "Quiero premios", se justificó Nico, quien finalmente se salió con la suya y ganó todo lo que habían acumulado al superar...

      published: 04 Feb 2016
    • "¡ES TREMENDO!" Guido Kaczka reaccionó al enterarse de la ocupación de un participante

      Momento emitido el martes 5 de noviembre de 2024 en Los 8 escalones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece

      published: 06 Nov 2024
    • ¡Desopilante! Guido Kaczka reconoció en su programa al hombre que le chocó el auto a su esposa

      Momento emitido el jueves 25 de abril de 2019 en Otra noche familiar.

      published: 26 Apr 2019
    • ¡ESTUVO BIEN! Hizo reír a Guido Kaczka con una cita inesperada en el momento justo

      Momento emitido el viernes 2 de agosto de 2024 en Los 8 escalones de los 3 millones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece

      published: 03 Aug 2024
    • Guido Kaczka quedó descolocado cuando la participante contó en qué plataforma sube contenido digital

      Momento emitido el miércoles 19 de junio de 2024 en Los 8 escalones de los 3 millones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece

      published: 20 Jun 2024
    • Un taxista puso en aprietos a Guido Kaczka al contar una anécdota del pasado: “Vos me debés una”

      Momento emitido el lunes 29 de junio de 2020 en Bienvenidos a bordo. El participante conoció al conductor en el pasado y recordó la historia que los unió en un boliche de Flores.

      published: 30 Jun 2020
    • 🔴 FEDERICO D´ELIA con Guido Kaczka y Claudia Fontán: "No tendría a Diego Peretti como psicólogo" 🔴

      ► Suscribite AHORA a La 100: https://bit.ly/SubLa100 🔴 Federico D´Elia pasó por La 100 y habló de todo con Guido Kaczka y Claudia Fontán. 0:00 Inicio 0:22 ¿Existe el poliamor? 1:22 Federico D´Elia en pareja 2:27 El partido con Maradona 4:23 ¿Diego Peretti como psicólogo? 6:32 Su capítulo favorito de "Los simuladores" 7:58 ¿Actor gracias a su padre? 👉 La primera parte de la nota está ACA 👉 https://youtu.be/z-e2L2Noazc ► Instagram oficial de La 100: https://www.instagram.com/la100fm ► Facebook oficial de La 100: https://www.facebook.com/la100 ► X oficial de La 100: https://www.x.com/la100fm ► Visitanos en https://www.la100.com.ar #FedericoDelia #La100 #Simuladores #LosSimuladores #NETD #NoEstaTodoDicho #GuidoKaczkaLa100 #ClaudiaFontanLa100 #UnLeonEnElBosque

      published: 14 Nov 2024
    • A todo o nada 2013 - Quisieron estafar a Guido Kaczka

      Guido Kaczka tuvo un error que -literalmente- pudo costarle muy caro, sin darse cuenta le ofreció $ 9.000 a un participante por una serie de carteras, cinturones y pulseras. Guido Kaczka se convirtió en un experto en el juego de las negociaciones por las veces que ya "discutió" con los participantes para poder bajarle los precios que ellos proponen. Pero esta vez hubo algo que le salió mal y casi lo estafan. Un hombre llegó para venderle una serie de carteras y cinturones, y comenzó pidiéndole $ 2.600. Pero el conductor se confundió y dijo $ 9.000, y el participante no dudó en aceptar ese monto.

      published: 02 Oct 2014
    developed with YouTube
    Guido Kaczka enojó a un participante cuando le dijo a quién se parecía
    1:46

    Guido Kaczka enojó a un participante cuando le dijo a quién se parecía

    • Order:
    • Duration: 1:46
    • Uploaded Date: 15 Nov 2021
    • views: 343206
    Momento emitido el lunes 15 de noviembre de 2021 en Bienvenidos a bordo.
    https://wn.com/Guido_Kaczka_Enojó_A_Un_Participante_Cuando_Le_Dijo_A_Quién_Se_Parecía
    RECOPILACIÓN - Momentos divertidos de Guido Kaczka - Matias 2411
    10:21

    RECOPILACIÓN - Momentos divertidos de Guido Kaczka - Matias 2411

    • Order:
    • Duration: 10:21
    • Uploaded Date: 28 Jan 2017
    • views: 2522810
    En este vídeo podrás ver los mejores momentos de Guido en la televisión, cosas como golpes y caídas. Espero que lo disfrutes!
    https://wn.com/Recopilación_Momentos_Divertidos_De_Guido_Kaczka_Matias_2411
    Ella no quiso chapar y él tuvo una increíble reacción
    5:53

    Ella no quiso chapar y él tuvo una increíble reacción

    • Order:
    • Duration: 5:53
    • Uploaded Date: 04 Feb 2016
    • views: 10091174
    Momento emitido en La mejor elección el miércoles 03/02/16. Ni bien los presentó Guido Kaczka, Delfina y Nicolás se encargaron de dar indicios de que el final de la historia podía ser con el tan esperado chape. Así, los participantes fueron sorteando los juegos y, entre desafío y desafío, se cruzaron algunos piropos. Sin embargo, cuando llegó el momento de escribir la decisión definitiva en la pancarta, ella puso "No". "Me comí un balazo, ¿cómo es esto? Me hizo la triple Nelson. Me tiró buena onda y después me dijo que no. Ah, listo. ¿Querés guerra? Olvidate. Me llevo todo. Ya está, se pudre todo", fue la inesperada reacción que tuvo él. "Resentido", le dijo Delfi. "Quiero premios", se justificó Nico, quien finalmente se salió con la suya y ganó todo lo que habían acumulado al superar diferentes pruebas.
    https://wn.com/Ella_No_Quiso_Chapar_Y_Él_Tuvo_Una_Increíble_Reacción
    "¡ES TREMENDO!" Guido Kaczka reaccionó al enterarse de la ocupación de un participante
    0:47

    "¡ES TREMENDO!" Guido Kaczka reaccionó al enterarse de la ocupación de un participante

    • Order:
    • Duration: 0:47
    • Uploaded Date: 06 Nov 2024
    • views: 5149
    Momento emitido el martes 5 de noviembre de 2024 en Los 8 escalones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece
    https://wn.com/¡Es_Tremendo_Guido_Kaczka_Reaccionó_Al_Enterarse_De_La_Ocupación_De_Un_Participante
    ¡Desopilante! Guido Kaczka reconoció en su programa al hombre que le chocó el auto a su esposa
    2:34

    ¡Desopilante! Guido Kaczka reconoció en su programa al hombre que le chocó el auto a su esposa

    • Order:
    • Duration: 2:34
    • Uploaded Date: 26 Apr 2019
    • views: 751746
    Momento emitido el jueves 25 de abril de 2019 en Otra noche familiar.
    https://wn.com/¡Desopilante_Guido_Kaczka_Reconoció_En_Su_Programa_Al_Hombre_Que_Le_Chocó_El_Auto_A_Su_Esposa
    ¡ESTUVO BIEN! Hizo reír a Guido Kaczka con una cita inesperada en el momento justo
    1:40

    ¡ESTUVO BIEN! Hizo reír a Guido Kaczka con una cita inesperada en el momento justo

    • Order:
    • Duration: 1:40
    • Uploaded Date: 03 Aug 2024
    • views: 3328
    Momento emitido el viernes 2 de agosto de 2024 en Los 8 escalones de los 3 millones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece
    https://wn.com/¡Estuvo_Bien_Hizo_Reír_A_Guido_Kaczka_Con_Una_Cita_Inesperada_En_El_Momento_Justo
    Guido Kaczka quedó descolocado cuando la participante contó en qué plataforma sube contenido digital
    1:03

    Guido Kaczka quedó descolocado cuando la participante contó en qué plataforma sube contenido digital

    • Order:
    • Duration: 1:03
    • Uploaded Date: 20 Jun 2024
    • views: 14630
    Momento emitido el miércoles 19 de junio de 2024 en Los 8 escalones de los 3 millones. ★ Suscribite al canal de #eltrece en YouTube → https://www.youtube.com/eltrece
    https://wn.com/Guido_Kaczka_Quedó_Descolocado_Cuando_La_Participante_Contó_En_Qué_Plataforma_Sube_Contenido_Digital
    Un taxista puso en aprietos a Guido Kaczka al contar una anécdota del pasado: “Vos me debés una”
    4:32

    Un taxista puso en aprietos a Guido Kaczka al contar una anécdota del pasado: “Vos me debés una”

    • Order:
    • Duration: 4:32
    • Uploaded Date: 30 Jun 2020
    • views: 646129
    Momento emitido el lunes 29 de junio de 2020 en Bienvenidos a bordo. El participante conoció al conductor en el pasado y recordó la historia que los unió en un boliche de Flores.
    https://wn.com/Un_Taxista_Puso_En_Aprietos_A_Guido_Kaczka_Al_Contar_Una_Anécdota_Del_Pasado_“Vos_Me_Debés_Una”
    🔴 FEDERICO D´ELIA con Guido Kaczka y Claudia Fontán: "No tendría a Diego Peretti como psicólogo" 🔴
    13:33

    🔴 FEDERICO D´ELIA con Guido Kaczka y Claudia Fontán: "No tendría a Diego Peretti como psicólogo" 🔴

    • Order:
    • Duration: 13:33
    • Uploaded Date: 14 Nov 2024
    • views: 174
    ► Suscribite AHORA a La 100: https://bit.ly/SubLa100 🔴 Federico D´Elia pasó por La 100 y habló de todo con Guido Kaczka y Claudia Fontán. 0:00 Inicio 0:22 ¿Existe el poliamor? 1:22 Federico D´Elia en pareja 2:27 El partido con Maradona 4:23 ¿Diego Peretti como psicólogo? 6:32 Su capítulo favorito de "Los simuladores" 7:58 ¿Actor gracias a su padre? 👉 La primera parte de la nota está ACA 👉 https://youtu.be/z-e2L2Noazc ► Instagram oficial de La 100: https://www.instagram.com/la100fm ► Facebook oficial de La 100: https://www.facebook.com/la100 ► X oficial de La 100: https://www.x.com/la100fm ► Visitanos en https://www.la100.com.ar #FedericoDelia #La100 #Simuladores #LosSimuladores #NETD #NoEstaTodoDicho #GuidoKaczkaLa100 #ClaudiaFontanLa100 #UnLeonEnElBosque
    https://wn.com/🔴_Federico_D´Elia_Con_Guido_Kaczka_Y_Claudia_Fontán_No_Tendría_A_Diego_Peretti_Como_Psicólogo_🔴
    A todo o nada 2013 - Quisieron estafar a Guido Kaczka
    19:13

    A todo o nada 2013 - Quisieron estafar a Guido Kaczka

    • Order:
    • Duration: 19:13
    • Uploaded Date: 02 Oct 2014
    • views: 1359972
    Guido Kaczka tuvo un error que -literalmente- pudo costarle muy caro, sin darse cuenta le ofreció $ 9.000 a un participante por una serie de carteras, cinturones y pulseras. Guido Kaczka se convirtió en un experto en el juego de las negociaciones por las veces que ya "discutió" con los participantes para poder bajarle los precios que ellos proponen. Pero esta vez hubo algo que le salió mal y casi lo estafan. Un hombre llegó para venderle una serie de carteras y cinturones, y comenzó pidiéndole $ 2.600. Pero el conductor se confundió y dijo $ 9.000, y el participante no dudó en aceptar ese monto.
    https://wn.com/A_Todo_O_Nada_2013_Quisieron_Estafar_A_Guido_Kaczka
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Guido Kaczka enojó a un participante cuando le dijo a quién se parecía

    Momento emitido el lunes 15 de noviembre de 2021 en Bienvenidos a bordo.
    1:46
    Guido Kaczka enojó a un participante cuando le dijo a quién se parecía
    Momento emitido el lunes 15 de noviembre de 2021 en Bienvenidos a bordo.
    published: 15 Nov 2021
    Play in Full Screen
    10:21
    RECOPILACIÓN - Momentos divertidos de Guido Kaczka - Matias 2411
    En este vídeo podrás ver los mejores momentos de Guido en la televisión, cosas como golpes...
    published: 28 Jan 2017
    Play in Full Screen
    5:53
    Ella no quiso chapar y él tuvo una increíble reacción
    Momento emitido en La mejor elección el miércoles 03/02/16. Ni bien los presentó Guido Kac...
    published: 04 Feb 2016
    Play in Full Screen
    0:47
    "¡ES TREMENDO!" Guido Kaczka reaccionó al enterarse de la ocupación de un participante
    Momento emitido el martes 5 de noviembre de 2024 en Los 8 escalones. ★ Suscribite al canal...
    published: 06 Nov 2024
    Play in Full Screen
    2:34
    ¡Desopilante! Guido Kaczka reconoció en su programa al hombre que le chocó el auto a su esposa
    Momento emitido el jueves 25 de abril de 2019 en Otra noche familiar.
    published: 26 Apr 2019
    Play in Full Screen
    1:40
    ¡ESTUVO BIEN! Hizo reír a Guido Kaczka con una cita inesperada en el momento justo
    Momento emitido el viernes 2 de agosto de 2024 en Los 8 escalones de los 3 millones. ★ Sus...
    published: 03 Aug 2024
    Play in Full Screen
    1:03
    Guido Kaczka quedó descolocado cuando la participante contó en qué plataforma sube contenido digital
    Momento emitido el miércoles 19 de junio de 2024 en Los 8 escalones de los 3 millones. ★ S...
    published: 20 Jun 2024
    Play in Full Screen
    4:32
    Un taxista puso en aprietos a Guido Kaczka al contar una anécdota del pasado: “Vos me debés una”
    Momento emitido el lunes 29 de junio de 2020 en Bienvenidos a bordo. El participante conoc...
    published: 30 Jun 2020
    Play in Full Screen
    13:33
    🔴 FEDERICO D´ELIA con Guido Kaczka y Claudia Fontán: "No tendría a Diego Peretti como psicólogo" 🔴
    ► Suscribite AHORA a La 100: https://bit.ly/SubLa100 🔴 Federico D´Elia pasó por La 100 y ...
    published: 14 Nov 2024
    Play in Full Screen
    19:13
    A todo o nada 2013 - Quisieron estafar a Guido Kaczka
    Guido Kaczka tuvo un error que -literalmente- pudo costarle muy caro, sin darse cuenta le ...
    published: 02 Oct 2014
    Play in Full Screen

    Guido Kaczka

    Guido Kaczka (Spanish pronunciation: [ˈɡiðo]; born February 2, 1978) is an Argentine television show host, actor and producer. His ex-wife was the actress Florencia Bertotti until their separation in 2010. They had been together since 1999. Their first child was born on July 10, 2008.

    Show business career

    Guido Kaczka began his acting career in 1985. He appeared in the Stage Production of "La Pandilla Adventurera". In 1987, he played "Quique" in Clave de Sol ("treble clef"). He was nine at the time.

    After four years off the screen, Guido Kaczka returned, at the age of eleven, to play "Daniel" in El Arbol Azul ("The Blue Tree").

    Next for Guido Kaczka was a job in Grande Pa! ("Super Dad"). At "Grande Pa!", he acted alongside Agustina Cherri for the first time. They would eventually act together again in the international hit, "Chiquititas" (Tiny Angels), then they would play a romantic couple in "Verano del '98" ("Summer of '98"), and appear in 2004's Los pensionados).

    Guido Kaczka went on to have an important role in the highly successful youth-oriented soap Chiquititas, where he played Felipe Fraga (Piojo), main character Belen's brother. He appeared on the show during the entire first cycle (four seasons, from 1995 to 1998). Chiquititas was a Cris Morena creation produced by Telefe.

    '); } 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)); } }); }); }); // -->

    Most Viewed

    ×