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

Pat Kenny

Patrick "Pat" Kenny is a veteran Irish broadcaster, who currently hosts The Pat Kenny Show on Newstalk and Pat Kenny in the Round on UTV Ireland.

Prior to this, Kenny had a 41 year high profile career at RTÉ, in which he was their highest paid presenter for several years. He presented radio show Today with Pat Kenny on RTÉ Radio 1 each weekday morning between 10:00 and midday until 2013. He hosted The Late Late Show from September 1999 until May 2009, however returned as a stand-in host in January 2013. He presented the current affairs programme, The Frontline, each Monday night from 2009 until its axing in 2013.

He was the co-host of Eurovision Song Contest 1988, as well as numerous other television shows, including Today Tonight, Saturday Live and Kenny Live, and has worked for both RTÉ Radio 1 and RTÉ 2fm, sometimes simultaneously, in a career that has spanned five decades. He is the holder of a Jacob's Award and was perennially cited as the highest paid employee in RTÉ's possession. He was named 23rd most influential person of 2009 by the magazine Village.

Podcasts:

  • The Frontline: Pat Kenny comes under fire

    RTÉ player http://www.rte.ie/player or http://www.rte.ie/news/thefrontline

    published: 10 Nov 2009
  • The Pat Kenny Show - Newstalk

    The Pat Kenny Show, bringing you a different point of view weekday mornings from 9am.

    published: 06 Jul 2020
  • The Frontline: Pat Kenny reacts to 'trophy house' comment

    Pat Kenny reacts to ICTU President's comment on "trophy houses" http://www.rte.ie/player or http://www.rte.ie/news/thefrontline/

    published: 03 Nov 2009
  • RTÉ's Pat Kenny 1980 interview with Steve Jobs

    For the latest Irish News go to: http://www.rte.ie/newsnow Looking back on an interview with Apple co-founder Steve Jobs who has died at the age of 56.

    published: 06 Oct 2011
  • "This is propaganda, this is not fact." Pat Kenny challenges Stephen Donnelly on antigen testing

    Pat Kenny challenged the Health Minister on his views surrounding antigen testing and their place in Ireland's COVID-19 recovery. It comes as the Health Minister has criticised NPHET's modelling expert Professor Philip Nolan for comparing antigen tests to snake oil. Stephen Donnelly says the comment was unhelpful and antigen testing is a part of Government policy when it comes to reopening. Supermarket Lidl began selling antigen tests late last week, and has been promoting the take-at-home tests across their social media channels. In a tweet over the weekend, Professor Philip Nolan - NPHET's main modeling and forecasting expert - compared them to snake oil. He said antigen tests will not keep people safe. NPHET has long had concerns about the effectiveness of antigen testing, which i...

    published: 13 May 2021
  • Phillip Schofield: Pat Kenny and Terry Prone react to today's interviews

    Chairman of The Communications Clinic Terry Prone chats to Pat Kenny about the recently released interviews between Phillip Schofield and the BBC and The Sun. Phillip admitted his "career is over" after quitting ITV following a brief affair with a much younger male colleague. The former This Morning presenter says he feels "utterly broken and ashamed" - but insists he didn't groom him.

    published: 02 Jun 2023
  • Pat Kenny - Lifetime Achievement Award Recipient, IFTA Gala TV Awards 2016

    CÉLINE DION leads the tributes to PAT KENNY, who received the IFTA Lifetime Achievement Award presented by OLIVIA O'LEARY

    published: 11 Oct 2016
  • Gift Pat Kenny

    The Gift Grub crew on Today FM's Ian Dempsey Breakfast Show react to the news that broadcaster Pat Kenny is leaving RTÉ to join rivals Newstalk.

    published: 01 Aug 2013
  • 'During the troubles in the North, we didn't see anyone coming up from Dublin with flags' | Newstalk

    Kneecap, the Irish hip hop trio from West Belfast, join Pat Kenny in Studio to discuss arse tattoos, promoting the Irish language, and all things sex, drugs, and rap and roll. The trios hotly anticipated new film Kneecap hits cinema screens today. Belfast hip-hop trio Kneecap have criticised the anti-immigration unrest in the city in recent days – comparing it to the persecution Irish people suffered in Britain. Anti-immigration rioters took to the street of Northern Ireland earlier this week – with demonstrators throwing petrol bombs and missiles at police. Around a dozen people wearing balaclavas and masks threw petrol bombs at PSNI vehicles as riot officers formed lines. Rioters also burned a cafe, a supermarket and several cars in the city with around 800 people involved. Speaki...

    published: 09 Aug 2024
  • Pat Kenny does the ice bucket challenge

    Pat Kenny does the ice bucket challenge and gives his nominations in aid of the Irish Motor Neuron Disease Association

    published: 22 Aug 2014
The Frontline: Pat Kenny comes under fire
3:39

The Frontline: Pat Kenny comes under fire

  • Order:
  • Duration: 3:39
  • Uploaded Date: 10 Nov 2009
  • views: 784458
RTÉ player http://www.rte.ie/player or http://www.rte.ie/news/thefrontline
https://wn.com/The_Frontline_Pat_Kenny_Comes_Under_Fire
The Pat Kenny Show - Newstalk
0:30

The Pat Kenny Show - Newstalk

  • Order:
  • Duration: 0:30
  • Uploaded Date: 06 Jul 2020
  • views: 6443
The Pat Kenny Show, bringing you a different point of view weekday mornings from 9am.
https://wn.com/The_Pat_Kenny_Show_Newstalk
The Frontline: Pat Kenny reacts to 'trophy house' comment
1:42

The Frontline: Pat Kenny reacts to 'trophy house' comment

  • Order:
  • Duration: 1:42
  • Uploaded Date: 03 Nov 2009
  • views: 191175
Pat Kenny reacts to ICTU President's comment on "trophy houses" http://www.rte.ie/player or http://www.rte.ie/news/thefrontline/
https://wn.com/The_Frontline_Pat_Kenny_Reacts_To_'Trophy_House'_Comment
RTÉ's Pat Kenny 1980 interview with Steve Jobs
1:56

RTÉ's Pat Kenny 1980 interview with Steve Jobs

  • Order:
  • Duration: 1:56
  • Uploaded Date: 06 Oct 2011
  • views: 54256
For the latest Irish News go to: http://www.rte.ie/newsnow Looking back on an interview with Apple co-founder Steve Jobs who has died at the age of 56.
https://wn.com/Rté's_Pat_Kenny_1980_Interview_With_Steve_Jobs
"This is propaganda, this is not fact." Pat Kenny challenges Stephen Donnelly on antigen testing
6:58

"This is propaganda, this is not fact." Pat Kenny challenges Stephen Donnelly on antigen testing

  • Order:
  • Duration: 6:58
  • Uploaded Date: 13 May 2021
  • views: 54254
Pat Kenny challenged the Health Minister on his views surrounding antigen testing and their place in Ireland's COVID-19 recovery. It comes as the Health Minister has criticised NPHET's modelling expert Professor Philip Nolan for comparing antigen tests to snake oil. Stephen Donnelly says the comment was unhelpful and antigen testing is a part of Government policy when it comes to reopening. Supermarket Lidl began selling antigen tests late last week, and has been promoting the take-at-home tests across their social media channels. In a tweet over the weekend, Professor Philip Nolan - NPHET's main modeling and forecasting expert - compared them to snake oil. He said antigen tests will not keep people safe. NPHET has long had concerns about the effectiveness of antigen testing, which isn't as reliable as PCR tests. However, Health Minister Stephen Donnelly criticised the remarks from Professor Nolan. He said: "I don't think it was a helpful comment, if I'm honest. "I have great respect for Professor Nolan, and I have no doubt that his concern was around people using them in the wrong way." The Government has been promising wider use of antigen testing for months, somewhat held back by the concerns of NPHET. However, the tests will be used in Catherine Martin's trials of big sporting events and gigs. A number of prominent experts have also said the tests have a place in the country's pandemic response. The rapid tests are also expected to be used to allow for the safe return of students to college campuses in September, including in Maynooth - the institution where Professor Nolan is University President.
https://wn.com/This_Is_Propaganda,_This_Is_Not_Fact._Pat_Kenny_Challenges_Stephen_Donnelly_On_Antigen_Testing
Phillip Schofield: Pat Kenny and Terry Prone react to today's interviews
9:38

Phillip Schofield: Pat Kenny and Terry Prone react to today's interviews

  • Order:
  • Duration: 9:38
  • Uploaded Date: 02 Jun 2023
  • views: 21649
Chairman of The Communications Clinic Terry Prone chats to Pat Kenny about the recently released interviews between Phillip Schofield and the BBC and The Sun. Phillip admitted his "career is over" after quitting ITV following a brief affair with a much younger male colleague. The former This Morning presenter says he feels "utterly broken and ashamed" - but insists he didn't groom him.
https://wn.com/Phillip_Schofield_Pat_Kenny_And_Terry_Prone_React_To_Today's_Interviews
Pat Kenny - Lifetime Achievement Award Recipient, IFTA Gala TV Awards 2016
11:05

Pat Kenny - Lifetime Achievement Award Recipient, IFTA Gala TV Awards 2016

  • Order:
  • Duration: 11:05
  • Uploaded Date: 11 Oct 2016
  • views: 5806
CÉLINE DION leads the tributes to PAT KENNY, who received the IFTA Lifetime Achievement Award presented by OLIVIA O'LEARY
https://wn.com/Pat_Kenny_Lifetime_Achievement_Award_Recipient,_Ifta_Gala_Tv_Awards_2016
Gift Pat Kenny
5:50

Gift Pat Kenny

  • Order:
  • Duration: 5:50
  • Uploaded Date: 01 Aug 2013
  • views: 17209
The Gift Grub crew on Today FM's Ian Dempsey Breakfast Show react to the news that broadcaster Pat Kenny is leaving RTÉ to join rivals Newstalk.
https://wn.com/Gift_Pat_Kenny
'During the troubles in the North, we didn't see anyone coming up from Dublin with flags' | Newstalk
13:26

'During the troubles in the North, we didn't see anyone coming up from Dublin with flags' | Newstalk

  • Order:
  • Duration: 13:26
  • Uploaded Date: 09 Aug 2024
  • views: 136727
Kneecap, the Irish hip hop trio from West Belfast, join Pat Kenny in Studio to discuss arse tattoos, promoting the Irish language, and all things sex, drugs, and rap and roll. The trios hotly anticipated new film Kneecap hits cinema screens today. Belfast hip-hop trio Kneecap have criticised the anti-immigration unrest in the city in recent days – comparing it to the persecution Irish people suffered in Britain. Anti-immigration rioters took to the street of Northern Ireland earlier this week – with demonstrators throwing petrol bombs and missiles at police. Around a dozen people wearing balaclavas and masks threw petrol bombs at PSNI vehicles as riot officers formed lines. Rioters also burned a cafe, a supermarket and several cars in the city with around 800 people involved. Speaking to Newstalk at the Irish premiere of their award-winning new film last night, Kneecap criticised the rioters. Bandmember DJ Próvaí said people should remember our recent history when it comes to oppression. "It's not representative of who we are as a community; people coming out and f**king harassing people from other countries," he said. "People have short memories - it's not too long ago that we were on the receiving end of it in England and other countries. "So for people to come here for refuge and to be treated like that it's shameful. "People need to look at themselves". Bandmember Mo Chara said immigrants are contributing to society. "Not even just coming for refuge - people just moving here for a better life in general," he said. "These people have f**king shops, they're contributing to society," he added. The trios hotly anticipated new film Kneecap hits cinema screens today. The comedy-drama, which tells the story of the trio, is the first Irish-language movie to win an award at the Sundance Film Festival. Co-starring Michael Fassbender, it has also recently been chosen as IFTA's submission for the Academy Awards. #ireland #kneecap #hiphop ________________________________________________________________________________________________ 📱 Have you downloaded the Newstalk app? - Find the app in the Google Play store: https://play.google.com/store/apps/details?id=com.thisisaim.newstalk&hl=en_IE&gl=US - Find the app via Apple: https://apps.apple.com/ie/app/newstalk-106-108-fm/id372643826 #️⃣ SUBSCRIBE to the Newstalk social channels: - YOUTUBE | youtube.com/@Newstalkfm - TWITTER | twitter.com/newstalkfm - INSTAGRAM | instagram.com/newstalkfm/ - FACEBOOK | facebook.com/newstalkfm - WEBSITE | https://www.newstalk.com/ 🎧 PODCAST - listen at your leisure: newstalk.com/podcasts - iTunes: search for Newstalk in your app! - Spotify: search for Newstalk for our latest pods and news - Or wherever you get your podcasts! 📱GET IN TOUCH WITH NEWSTALK - WhatsApp: get in touch on 0871400106
https://wn.com/'During_The_Troubles_In_The_North,_We_Didn't_See_Anyone_Coming_Up_From_Dublin_With_Flags'_|_Newstalk
Pat Kenny does the ice bucket challenge
0:59

Pat Kenny does the ice bucket challenge

  • Order:
  • Duration: 0:59
  • Uploaded Date: 22 Aug 2014
  • views: 16771
Pat Kenny does the ice bucket challenge and gives his nominations in aid of the Irish Motor Neuron Disease Association
https://wn.com/Pat_Kenny_Does_The_Ice_Bucket_Challenge
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 55:43

The Frontline: Pat Kenny comes under fire

RTÉ player http://www.rte.ie/player or http://www.rte.ie/news/thefrontline
3:39
The Frontline: Pat Kenny comes under fire
RTÉ player http://www.rte.ie/player or http://www.rte.ie/news/thefrontline
published: 10 Nov 2009
Play in Full Screen
0:30
The Pat Kenny Show - Newstalk
The Pat Kenny Show, bringing you a different point of view weekday mornings from 9am.
published: 06 Jul 2020
Play in Full Screen
1:42
The Frontline: Pat Kenny reacts to 'trophy house' comment
Pat Kenny reacts to ICTU President's comment on "trophy houses" http://www.rte.ie/player ...
published: 03 Nov 2009
Play in Full Screen
1:56
RTÉ's Pat Kenny 1980 interview with Steve Jobs
For the latest Irish News go to: http://www.rte.ie/newsnow Looking back on an interview wi...
published: 06 Oct 2011
Play in Full Screen
6:58
"This is propaganda, this is not fact." Pat Kenny challenges Stephen Donnelly on antigen testing
Pat Kenny challenged the Health Minister on his views surrounding antigen testing and thei...
published: 13 May 2021
Play in Full Screen
9:38
Phillip Schofield: Pat Kenny and Terry Prone react to today's interviews
Chairman of The Communications Clinic Terry Prone chats to Pat Kenny about the recently re...
published: 02 Jun 2023
Play in Full Screen
11:05
Pat Kenny - Lifetime Achievement Award Recipient, IFTA Gala TV Awards 2016
CÉLINE DION leads the tributes to PAT KENNY, who received the IFTA Lifetime Achievement Aw...
published: 11 Oct 2016
Play in Full Screen
5:50
Gift Pat Kenny
The Gift Grub crew on Today FM's Ian Dempsey Breakfast Show react to the news that broadca...
published: 01 Aug 2013
Play in Full Screen
13:26
'During the troubles in the North, we didn't see anyone coming up from Dublin with flags' | Newstalk
Kneecap, the Irish hip hop trio from West Belfast, join Pat Kenny in Studio to discuss ars...
published: 09 Aug 2024
Play in Full Screen
0:59
Pat Kenny does the ice bucket challenge
Pat Kenny does the ice bucket challenge and gives his nominations in aid of the Irish Moto...
published: 22 Aug 2014
Play in Full Screen

Pat Kenny

Patrick "Pat" Kenny is a veteran Irish broadcaster, who currently hosts The Pat Kenny Show on Newstalk and Pat Kenny in the Round on UTV Ireland.

Prior to this, Kenny had a 41 year high profile career at RTÉ, in which he was their highest paid presenter for several years. He presented radio show Today with Pat Kenny on RTÉ Radio 1 each weekday morning between 10:00 and midday until 2013. He hosted The Late Late Show from September 1999 until May 2009, however returned as a stand-in host in January 2013. He presented the current affairs programme, The Frontline, each Monday night from 2009 until its axing in 2013.

He was the co-host of Eurovision Song Contest 1988, as well as numerous other television shows, including Today Tonight, Saturday Live and Kenny Live, and has worked for both RTÉ Radio 1 and RTÉ 2fm, sometimes simultaneously, in a career that has spanned five decades. He is the holder of a Jacob's Award and was perennially cited as the highest paid employee in RTÉ's possession. He was named 23rd most influential person of 2009 by the magazine Village.

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

Latest News for: pat kenny

Edit

Wings, competition and heat: Dynamic Arizona State football transfers embrace it all

Azcentral 21 Apr 2025
ASU football coach Kenny Dillingham discusses significance of Pat's Run. ASU football coach Kenny Dillingham discusses how important Pat's Run is to the ASU community on April 12, 2025.
Edit

Fine Gael’s Red Bull-style new energy fizzled out with a grubby deal and a crushing poll

The Irish Times 21 Apr 2025
The Easter bunny did not come early for Fine Gael this year ... Varadkar’s leadership was electoral kryptonite ... Now he has brought that mode to foreign shores ... “A momentous week starts with an interview with Pat Kenny on Newstalk,” the diary began ... .
Edit

Approval ratings via The Republic's survey: How did Arizona sports leaders do with fans?

Azcentral 20 Apr 2025
ASU football coach Kenny Dillingham discusses significance of Pat's Run. ASU football coach Kenny Dillingham discusses how important Pat's Run is to the ASU community on April 12, 2025.
Edit

Grant House reacts to what proposed NCAA settlement means for future of college sports

Azcentral 17 Apr 2025
ASU football coach Kenny Dillingham discusses significance of Pat's Run. ASU football coach Kenny Dillingham discusses how important Pat's Run is to the ASU community on April 12, 2025.
Edit

Mountain Pointe alum Jayden Davis quickly leaving mark on Arizona State track

Azcentral 17 Apr 2025
I just want to be able to contribute my best for the school.” ... ASU football coach Kenny Dillingham discusses significance of Pat's Run. ASU football coach Kenny Dillingham discusses how important Pat's Run is to the ASU community on April 12, 2025.
Edit

Your vote needed: Arizona sports leaders' approval ratings

Azcentral 14 Apr 2025
ASU football coach Kenny Dillingham discusses significance of Pat's Run. ASU football coach Kenny Dillingham discusses how important Pat's Run is ...
Edit

ASU football players, Kenny Dillingham help at Pat's Run, then hit practice field

Azcentral 13 Apr 2025
It was a long day for Arizona State football coach Kenny Dillingham ... Dillingham served as the race starter for the 21st annual Pat's Run on April 12, which started in the parking ... 42 Pat Tillman jerseys.
Edit

Pat's Run 2025 information: What to know before event at Arizona State University in Tempe

Azcentral 08 Apr 2025
The 21st annual Pat's Run in honor of former Arizona State football player Pat Tillman and benefiting the foundation in his name will take place on Saturday, April 12, in Tempe ... When is Pat's Run 2025? ... Parking for Pat's Run 2025.
Edit

St Pat's missed the chance to make a statement against Shelbourne - Keith Treacy

RTE 07 Apr 2025
"But this is why St Pat's are so exciting to watch because you know Stephen Kenny will set up and he will let his wing backs go, his centre midfielders will go and they will be exposed if they lose the ball.
Edit

Nothing pushes my BS detector into overdrive more than a hotel spa

The Irish Times 06 Apr 2025
After a lot of intense negotiations and multiple changes of mind, we have finally settled on holiday plans for the summer ... It was the foreign holiday that caused the contention ... READ MORE. Pat Kenny unleashes on ‘dictatorial and despotic’ Donald Trump. .
Edit

Pat Kenny unleashes on ‘dictatorial and despotic’ Donald Trump

The Irish Times 04 Apr 2025
As his back catalogue of awkward moments attests, tact has never been one of Pat Kenny’s most prominent traits.
Edit

Damien Duff: Whether good or bad, it's bloody deserved

RTE 04 Apr 2025
St Pat's boss Stephen Kenny said his side were kicking themselves not be ahead at half-time, though he acknowledged that Shelbourne grew into the game strongly in the second half ... St Pat's, after their ...
Edit

St Pat’s and Shelbourne play out entertaining stalemate

The Irish Times 04 Apr 2025
Pat’s boss Stephen Kenny may feel more disappointed than Shels’ Damien Duff seeing his side had more of the chances overall – though it was Shels who nearly snatched the win at the death ...
×