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

Comcast

Comcast Corporation, formerly registered as Comcast Holdings, is an American multinational mass media company and is the largest broadcasting and largest cable company in the world by revenue. It is the second largest pay-TV company after the AT&T-DirecTV acquisition, largest cable TV company and largest home Internet service provider in the United States, and the nation's third largest home telephone service provider. Comcast services U.S. residential and commercial customers in 40 states and the District of Columbia. The company's headquarters are located in Philadelphia, Pennsylvania.

As the owner of the international media company NBCUniversal since 2011, Comcast is a producer of feature films and television programs intended for theatrical exhibition and over-the-air and cable television broadcast.

Comcast operates multiple cable-only channels (including E! Entertainment Television, the Golf Channel, and NBCSN), over-the-air national broadcast network channels (NBC and Telemundo), the film production studio Universal Pictures, and Universal Parks & Resorts, with a global total of nearly 200 family entertainment locations and attractions in the U.S. and several other countries including U.A.E., South Korea, Russia and China, with several new locations reportedly planned and being developed for future operation. Comcast also has significant holding in digital distribution (thePlatform). In February 2014 the company agreed to merge with Time Warner Cable in an equity swap deal worth $45.2 billion. Under the terms of the agreement Comcast was to acquire 100% of Time Warner Cable. However, on April 24, 2015, Comcast terminated the agreement.

Podcasts:

  • Hilarious Comcast Call Center Training Video

    Internal Comcast Call Center Training Video. For production information, licensing / permission to use: Contact - licensing(at): www.jsptv.com / 303-721-6121

    published: 31 May 2013
  • Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?

    Comcast has launching new internet and phone plans that could save you money! These plans are not from Xfinity. Instead, they’re being offered from a new prepaid brand called NOW. I explain in today's video. More details: https://michaelsaves.com/internet/comcast-now-internet-plans/ Shop NOW plans here: https://www.anrdoezrs.net/click-8534498-15800663 Compare internet plans for your area here: https://michaelsaves.com/deals/deal-alerts/ Buy Me a Coffee (Support the Channel): https://buymeacoffee.com/michaelsaves NOTE: This video is NOT sponsored. However, this description box includes affiliate links. If you use my links, I may receive a small commission. Thanks for your support! Need a personal recommendation for streaming TV, phone or internet service? Email michael@michaelsaves.c...

    published: 17 Apr 2024
  • How to Set Up a New Comcast Xfinity TV Cable Box

    This video will show you how to set up a new Xfinity-Comcast X1 (XiD-P) Cable Box.

    published: 10 Oct 2021
  • Comcast - Why They're Hated

    Comcast is a cable and internet provider that happens to be one of the most hated companies out there. This video attempts to explain the reason behind all this hatred. To submit ideas and vote on future topics: https://companymanideas.com Patreon: https://www.patreon.com/companyman Twitter: https://twitter.com/MikeCompany17 A very special thanks to this wonderful group of Patrons: Amy Westacott, Angus Clydesdale, Brett Walton, Castor Poe, Chris Lion-Transler, Christian & Penny Gray, Dominique Dugas, Dustin Van Horn, Emerald Computers – Jason Dragon, Emily Findley, Fortunate Calf, Garrick Kwan, Jimmy1985, Julianne Beach, Marshall Kurtz, Meow Wolf, Michelle Chisholm, Mike Weaver, MyNameIsKir, Nicholas Murphy, Peter Wesselius, R, Sam Bennett, Sirpoptart, Sondre Grimsmo Sinnes, Stewart ...

    published: 05 Feb 2020
  • Realistic job previews in the Comcast India Engineering Center 👀

    Ever wondered what a day at the CIEC looks like? 🌟 Engineers Akshaya and Nirmal are taking us behind the scenes to show us their day-to-day! From innovative projects to collaboration with their talented team, get an exclusive peek into their dynamic roles and the exciting work they do at the CIEC. Don't miss out on this firsthand experience! 🚀 Tap the link to explore what job roles we have for you - bit.ly/4aLQuZE đŸ«”

    published: 01 May 2024
  • How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!

    Find a Roku on Amazon - https://lon.tv/vqo8i (compensated affiliate link) - Comcast / Xfinity was ripping my Mom off with equipment rentals and other unwanted fees. In this video I'll review what we reduced from her bill and how to cut costs by using the Xfinity Stream app. See more cord cutting: http://lon.tv/dvr2017 and subscribe! http://lon.tv/s VIDEO INDEX: 00:00 - Intro 00:35 - Mom's Bill 02:11 - Box Rental Costs 04:07 - Customer Service / Return Process 06:36 - The Free Alternative: Xfinity Stream 08:08 - Xfinity Stream's Missing X1 Features 10:39 - Setup Checklist 11:58 - Family Account Managers 12:34 - Money Saved 13:30 - Mobile App 14:15 - Topic Conclusion 14:48 - Supporter Thank Yous 15:42 - My Other Channels 15:53 - Conclusion Visit my Blog! https://blog.lon.tv Subscribe to m...

    published: 27 Feb 2023
  • How To - Program Your Comcast Remote Control

    Learn how to program your Comcast remote to control your set top box and your television.

    published: 04 Feb 2011
  • My Comcast 2Gbps Internet Upgrade

    On my most recent visit to the Comcast website, I noticed I was eligible to upgrade to the "Gigabit X2" service tier! This service, which is provided over the existing copper wire infrastructure maxes out at 2Gbps download and 100Mbps for uploads. I made this video to share my journey through the installation process and to show off the speeds the upgrade provides.

    published: 15 Dec 2022
  • Xfinity vs Verizon !! Home Internet speed comparison of 5G Internet.

    Verizon vs Xfinity. Speed test comparison of the best 5G Home internet service providers in USA.

    published: 05 Sep 2024
  • How To Get Xfinity Stream App on ANY Smart TV

    This video will show you how to get the Xfinity stream app on any Smart TV. Use one of these to get the Xfinity on your TV: Get a new Fire TV Stick here: (Amazon USA Link) - https://amzn.to/3twChwt (Amazon International Link) - https://geni.us/hKnl2kE Get a Roku Stick Here (Amazon USA Link) - https://amzn.to/3hVANmc (Amazon International Link) - https://geni.us/dXvOPR Get an Apple TV 4K Here: (Amazon USA Link) - https://amzn.to/3pw74WF (Amazon International Link) - https://geni.us/mjBpdL đŸ™ŒđŸ» Please take a moment and Subscribe for more helpful videos: http://bit.ly/SubscribeToJuan đŸ”„Amazon Prime Free 30 Day Trial: https://amzn.to/37nQpup ============================= THE GEAR I USE: ============================= My Camera Kit: https://amzn.to/2DVnpNt My Camera I Use: https://amzn.to/38...

    published: 05 Jul 2022
Hilarious Comcast Call Center Training Video
4:07

Hilarious Comcast Call Center Training Video

  • Order:
  • Duration: 4:07
  • Uploaded Date: 31 May 2013
  • views: 524400
Internal Comcast Call Center Training Video. For production information, licensing / permission to use: Contact - licensing(at): www.jsptv.com / 303-721-6121
https://wn.com/Hilarious_Comcast_Call_Center_Training_Video
Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?
4:24

Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?

  • Order:
  • Duration: 4:24
  • Uploaded Date: 17 Apr 2024
  • views: 32966
Comcast has launching new internet and phone plans that could save you money! These plans are not from Xfinity. Instead, they’re being offered from a new prepaid brand called NOW. I explain in today's video. More details: https://michaelsaves.com/internet/comcast-now-internet-plans/ Shop NOW plans here: https://www.anrdoezrs.net/click-8534498-15800663 Compare internet plans for your area here: https://michaelsaves.com/deals/deal-alerts/ Buy Me a Coffee (Support the Channel): https://buymeacoffee.com/michaelsaves NOTE: This video is NOT sponsored. However, this description box includes affiliate links. If you use my links, I may receive a small commission. Thanks for your support! Need a personal recommendation for streaming TV, phone or internet service? Email michael@michaelsaves.com! đŸ“ș More Cutting the Cord Content 9 Ways My Cord-Cutting Advice Has Changed https://www.youtube.com/watch?v=bfiqXJaX11M How Watching Local Channels Without Cable Is Changing in 2024: https://www.youtube.com/watch?v=V-aAgBFZPVc If I Cut the Cord in 2024, I'd Do This! https://www.youtube.com/watch?v=D_gtDWx4MRQ 5 Ways Streaming TV Is Changing for the Worse https://www.youtube.com/watch?v=txj3TteSM8U First to Worst? Live TV Streaming Services Ranked Again! https://www.youtube.com/watch?v=u3-GAJ_PqdU I Compared the Best Internet Options! Which One Should You Choose? https://www.youtube.com/watch?v=Gxv-cNwXEh4 The Ultimate Guide to YouTube TV for Beginners: https://www.youtube.com/watch?v=5sZXxOGP0RU Are Mohu Leaf Indoor Antennas Worth It? What You Need to Know: https://www.youtube.com/watch?v=ah8FdUyuUDo 9 Things to Know Before You Buy Another Streaming Device: https://www.youtube.com/watch?v=P-PsYCHpFEw These Are the 20 Best Free Roku Apps: https://www.youtube.com/watch?v=ZO3Ce19MgBM ✅Money Tips From Michael Saves Start a monthly budget using my step-by-step guide: https://michaelsaves.com/budgeting/google-sheets-budget-template/ Scan your receipts and earn gift cards! Check out my 10 tips for getting started with Fetch: https://michaelsaves.com/make-money/fetch-rewards-review/ Learn about my cheap unlimited wireless plan with Visible (Verizon's network!): https://michaelsaves.com/cell-phones/visible-review/ My strategy to maximize cash back credit card rewards: https://michaelsaves.com/credit-cards/big-3-credit-card-strategy/ DID YOU LIKE THIS VIDEO? THANKS FOR WATCHING AND PLEASE SUBSCRIBE TO MY CHANNEL! FOLLOW MICHAEL SAVES: Website: https://michaelsaves.com/ Deal Alerts: https://michaelsavesdeals.com/ Newsletter: https://michael-saves.ck.page/f5bd405e84 Facebook: https://www.facebook.com/themichaelsaves X (Formerly Twitter): https://twitter.com/michaelsaves
https://wn.com/Comcast_Launched_Cheaper_Internet_And_Phone_Plans_Are_They_Worth_It
How to Set Up a New Comcast Xfinity TV Cable Box
10:55

How to Set Up a New Comcast Xfinity TV Cable Box

  • Order:
  • Duration: 10:55
  • Uploaded Date: 10 Oct 2021
  • views: 520146
This video will show you how to set up a new Xfinity-Comcast X1 (XiD-P) Cable Box.
https://wn.com/How_To_Set_Up_A_New_Comcast_Xfinity_Tv_Cable_Box
Comcast - Why They're Hated
11:31

Comcast - Why They're Hated

  • Order:
  • Duration: 11:31
  • Uploaded Date: 05 Feb 2020
  • views: 1428050
Comcast is a cable and internet provider that happens to be one of the most hated companies out there. This video attempts to explain the reason behind all this hatred. To submit ideas and vote on future topics: https://companymanideas.com Patreon: https://www.patreon.com/companyman Twitter: https://twitter.com/MikeCompany17 A very special thanks to this wonderful group of Patrons: Amy Westacott, Angus Clydesdale, Brett Walton, Castor Poe, Chris Lion-Transler, Christian & Penny Gray, Dominique Dugas, Dustin Van Horn, Emerald Computers – Jason Dragon, Emily Findley, Fortunate Calf, Garrick Kwan, Jimmy1985, Julianne Beach, Marshall Kurtz, Meow Wolf, Michelle Chisholm, Mike Weaver, MyNameIsKir, Nicholas Murphy, Peter Wesselius, R, Sam Bennett, Sirpoptart, Sondre Grimsmo Sinnes, Stewart Tritapoe, Super Duper Paratrooper, Taylor LaBrier, Theodore cooke, Tristan Williams, Vincent Frame. Company Declines: Kmart: https://youtu.be/1__Qg1toSSs Blockbuster: https://youtu.be/5sMXR7rK40U RadioShack: https://youtu.be/JFivtOmXPPM Solo Cups: https://youtu.be/YjzGKc4mynU Toys "R" Us: https://youtu.be/4JYUo9WKkao hhgregg: https://youtu.be/g6j4aoHbWdw Pan Am: https://youtu.be/YInewzLzc78 ESPN: https://youtu.be/bt-4PbhpGYE Gibson: https://youtu.be/apQ9SO7uF60 iHeartMedia: https://youtu.be/BImjay9KfYc Bon-Ton: https://youtu.be/buWiH5_ru2Y Kodak: https://youtu.be/eVrmFgvEnAA General Electric: https://youtu.be/CqF3WUST-fk Woolworth: https://youtu.be/iSEw4wmjuh4 Dell: https://youtu.be/rgDjQLyFXTA Sears: https://youtu.be/Qws713t3HBY Payless: https://youtu.be/GJ35lCrOYC0 Hostess: https://youtu.be/-c26ewfay9Q Redbox: https://youtu.be/sc-lrcYI1uo Nokia: https://youtu.be/QUk6V_fBSPw JCPenney: https://youtu.be/0d6op86y51U Quiznos: https://youtu.be/P3QK-32bxgw GameStop: https://youtu.be/YXEfgFCkv4k NASCAR: https://youtu.be/nSKk6J20SsA Shopko: https://youtu.be/9rHbSGjSsE0 MoviePass: https://youtu.be/QvCkp3rfgOU Reebok: https://youtu.be/RAM8s7lNXtw The Gap: https://youtu.be/HJUKLzG_2uo Pier 1 Imports: https://youtu.be/mUX70ZWbWmc ______________________________ Website created by - https://fullertonmedia.com Intro Made By - https://www.youtube.com/channel/UCqi0-4XRvQLBo8E5r8bvPsA
https://wn.com/Comcast_Why_They're_Hated
Realistic job previews in the Comcast India Engineering Center 👀
1:31

Realistic job previews in the Comcast India Engineering Center 👀

  • Order:
  • Duration: 1:31
  • Uploaded Date: 01 May 2024
  • views: 6139
Ever wondered what a day at the CIEC looks like? 🌟 Engineers Akshaya and Nirmal are taking us behind the scenes to show us their day-to-day! From innovative projects to collaboration with their talented team, get an exclusive peek into their dynamic roles and the exciting work they do at the CIEC. Don't miss out on this firsthand experience! 🚀 Tap the link to explore what job roles we have for you - bit.ly/4aLQuZE đŸ«”
https://wn.com/Realistic_Job_Previews_In_The_Comcast_India_Engineering_Center_👀
How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!
17:31

How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!

  • Order:
  • Duration: 17:31
  • Uploaded Date: 27 Feb 2023
  • views: 228649
Find a Roku on Amazon - https://lon.tv/vqo8i (compensated affiliate link) - Comcast / Xfinity was ripping my Mom off with equipment rentals and other unwanted fees. In this video I'll review what we reduced from her bill and how to cut costs by using the Xfinity Stream app. See more cord cutting: http://lon.tv/dvr2017 and subscribe! http://lon.tv/s VIDEO INDEX: 00:00 - Intro 00:35 - Mom's Bill 02:11 - Box Rental Costs 04:07 - Customer Service / Return Process 06:36 - The Free Alternative: Xfinity Stream 08:08 - Xfinity Stream's Missing X1 Features 10:39 - Setup Checklist 11:58 - Family Account Managers 12:34 - Money Saved 13:30 - Mobile App 14:15 - Topic Conclusion 14:48 - Supporter Thank Yous 15:42 - My Other Channels 15:53 - Conclusion Visit my Blog! https://blog.lon.tv Subscribe to my email lists! Weekly Breakdown of Posted Videos: - https://lon.tv/email Daily Email From My Blog Posts! https://lon.tv/digest See my second channel for supplementary content : http://lon.tv/extras Follow me on Amazon too! http://lon.tv/amazonshop Join the Facebook group to connect with me and other viewers! http://lon.tv/facebookgroup Visit the Lon.TV store to purchase some of my previously reviewed items! http://lon.tv/store Read more about my transparency and disclaimers: http://lon.tv/disclosures Want to chat with other fans of the channel? Visit our Facebook Group! http://lon.tv/facebookgroup, our Discord: http://lon.tv/discord and our Telegram channel at http://lon.tv/telegram ! Want to help the channel? Start a Member subscription or give a one time tip! http://lon.tv/support or contribute via Venmo! lon@lon.tv Follow me on Facebook! http://facebook.com/lonreviewstech Follow me on Twitter! http://twitter.com/lonseidman Catch my longer interviews and wrap-ups in audio form on my podcast! http://lon.tv/itunes http://lon.tv/stitcher or the feed at http://lon.tv/podcast/feed.xml We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
https://wn.com/How_I_Cut_600_From_My_Mom's_Comcast_Xfinity_Cable_Bill_Cable_Box_Rip_Off
How To - Program Your Comcast Remote Control
0:41

How To - Program Your Comcast Remote Control

  • Order:
  • Duration: 0:41
  • Uploaded Date: 04 Feb 2011
  • views: 415540
Learn how to program your Comcast remote to control your set top box and your television.
https://wn.com/How_To_Program_Your_Comcast_Remote_Control
My Comcast 2Gbps Internet Upgrade
5:25

My Comcast 2Gbps Internet Upgrade

  • Order:
  • Duration: 5:25
  • Uploaded Date: 15 Dec 2022
  • views: 32354
On my most recent visit to the Comcast website, I noticed I was eligible to upgrade to the "Gigabit X2" service tier! This service, which is provided over the existing copper wire infrastructure maxes out at 2Gbps download and 100Mbps for uploads. I made this video to share my journey through the installation process and to show off the speeds the upgrade provides.
https://wn.com/My_Comcast_2Gbps_Internet_Upgrade
Xfinity vs Verizon !! Home Internet speed comparison of 5G Internet.
0:57

Xfinity vs Verizon !! Home Internet speed comparison of 5G Internet.

  • Order:
  • Duration: 0:57
  • Uploaded Date: 05 Sep 2024
  • views: 529
Verizon vs Xfinity. Speed test comparison of the best 5G Home internet service providers in USA.
https://wn.com/Xfinity_Vs_Verizon_Home_Internet_Speed_Comparison_Of_5G_Internet.
How To Get Xfinity Stream App on ANY Smart TV
1:46

How To Get Xfinity Stream App on ANY Smart TV

  • Order:
  • Duration: 1:46
  • Uploaded Date: 05 Jul 2022
  • views: 130190
This video will show you how to get the Xfinity stream app on any Smart TV. Use one of these to get the Xfinity on your TV: Get a new Fire TV Stick here: (Amazon USA Link) - https://amzn.to/3twChwt (Amazon International Link) - https://geni.us/hKnl2kE Get a Roku Stick Here (Amazon USA Link) - https://amzn.to/3hVANmc (Amazon International Link) - https://geni.us/dXvOPR Get an Apple TV 4K Here: (Amazon USA Link) - https://amzn.to/3pw74WF (Amazon International Link) - https://geni.us/mjBpdL đŸ™ŒđŸ» Please take a moment and Subscribe for more helpful videos: http://bit.ly/SubscribeToJuan đŸ”„Amazon Prime Free 30 Day Trial: https://amzn.to/37nQpup ============================= THE GEAR I USE: ============================= My Camera Kit: https://amzn.to/2DVnpNt My Camera I Use: https://amzn.to/38jVbd6 My Mic: https://amzn.to/36eGAhg My Wireless Mic: https://amzn.to/2OZpkqt My Smartphone Camera: https://amzn.to/2Pswjq7 My Mic for Smartphone: https://amzn.to/2RwOJd8 My GoPro: https://amzn.to/2Rw6jxy My Tripod: https://geni.us/X2sKY My Bendy Tripod: https://amzn.to/2DYauKM My Small Tripod: https://amzn.to/343jCZ4 My Smartphone Tripod: https://amzn.to/341RV2I My Lighting Kit: https://amzn.to/2s7ggXA My Backpack: https://amzn.to/38jTqwu My Desktop: https://amzn.to/2YrNE7H My Monitor: https://amzn.to/31l5QkS My Laptop: https://amzn.to/2s3SrQA My Small Gaff Tape: https://amzn.to/38kA1LZ My Small Drone: https://amzn.to/2TE4WxX MY VR Headset: https://amzn.to/2R5gRU4 My Drone: https://amzn.to/3cQmsGq ============================= WATCH MORE OF MY VIDEOS: ============================= My Latest Uploads: http://bit.ly/JuansUploads My Tech Videos: http://bit.ly/JuansTechVideos My Popular Videos: http://bit.ly/JuansPopular My Reviews, DIYs, and How To’s: http://bit.ly/JuansReviews ============================= ツ CONNECT WITH ME ツ ============================= Leave a comment on this video and it'll get a response. Or you can connect with me on different social platforms too: ‱ Instagram: https://www.instagram.com/juancamacho21 For business or sponsorship inquiries, please email me at juancamacho21@yahoo.com --- Use this tool to help grow your YouTube channel fast - https://www.tubebuddy.com/JuanCamacho --- #Get #Xfinity #Stream --- DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for your support!
https://wn.com/How_To_Get_Xfinity_Stream_App_On_Any_Smart_Tv
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Hilarious Comcast Call Center Training Video
    4:07
    Hilarious Comcast Call Center Training Videoremove from playlist
  • Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?
    4:24
    Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?remove from playlist
  • How to Set Up a New Comcast Xfinity TV Cable Box
    10:55
    How to Set Up a New Comcast Xfinity TV Cable Boxremove from playlist
  • Comcast - Why They're Hated
    11:31
    Comcast - Why They're Hatedremove from playlist
  • Realistic job previews in the Comcast India Engineering Center 👀
    1:31
    Realistic job previews in the Comcast India Engineering Center 👀remove from playlist
  • How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!
    17:31
    How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!remove from playlist
  • How To - Program Your Comcast Remote Control
    0:41
    How To - Program Your Comcast Remote Controlremove from playlist
  • My Comcast 2Gbps Internet Upgrade
    5:25
    My Comcast 2Gbps Internet Upgraderemove from playlist
  • How To Get Xfinity Stream App on ANY Smart TV
    1:46
    How To Get Xfinity Stream App on ANY Smart TVremove from playlist
PLAYLIST TIME: 0:00 / 58:48

Hilarious Comcast Call Center Training Video

Internal Comcast Call Center Training Video. For production information, licensing / permission to use: Contact - licensing(at): www.jsptv.com / 303-721-6121
4:07
Hilarious Comcast Call Center Training Video
Internal Comcast Call Center Training Video. For production information, licensing / perm...
published: 31 May 2013
Play in Full Screen
4:24
Comcast Launched Cheaper Internet and Phone Plans! Are They Worth It?
Comcast has launching new internet and phone plans that could save you money! These plans ...
published: 17 Apr 2024
Play in Full Screen
10:55
How to Set Up a New Comcast Xfinity TV Cable Box
This video will show you how to set up a new Xfinity-Comcast X1 (XiD-P) Cable Box.
published: 10 Oct 2021
Play in Full Screen
11:31
Comcast - Why They're Hated
Comcast is a cable and internet provider that happens to be one of the most hated companie...
published: 05 Feb 2020
Play in Full Screen
1:31
Realistic job previews in the Comcast India Engineering Center 👀
Ever wondered what a day at the CIEC looks like? 🌟 Engineers Akshaya and Nirmal are taki...
published: 01 May 2024
Play in Full Screen
17:31
How I Cut $600 From My Mom's Comcast / Xfinity Cable Bill - Cable Box Rip Off!
Find a Roku on Amazon - https://lon.tv/vqo8i (compensated affiliate link) - Comcast / Xfin...
published: 27 Feb 2023
Play in Full Screen
0:41
How To - Program Your Comcast Remote Control
Learn how to program your Comcast remote to control your set top box and your television.
published: 04 Feb 2011
Play in Full Screen
5:25
My Comcast 2Gbps Internet Upgrade
On my most recent visit to the Comcast website, I noticed I was eligible to upgrade to the...
published: 15 Dec 2022
Play in Full Screen
0:57
Xfinity vs Verizon !! Home Internet speed comparison of 5G Internet.
Verizon vs Xfinity. Speed test comparison of the best 5G Home internet service providers i...
published: 05 Sep 2024
Play in Full Screen
1:46
How To Get Xfinity Stream App on ANY Smart TV
This video will show you how to get the Xfinity stream app on any Smart TV. Use one of t...
published: 05 Jul 2022
Play in Full Screen

Comcast

Comcast Corporation, formerly registered as Comcast Holdings, is an American multinational mass media company and is the largest broadcasting and largest cable company in the world by revenue. It is the second largest pay-TV company after the AT&T-DirecTV acquisition, largest cable TV company and largest home Internet service provider in the United States, and the nation's third largest home telephone service provider. Comcast services U.S. residential and commercial customers in 40 states and the District of Columbia. The company's headquarters are located in Philadelphia, Pennsylvania.

As the owner of the international media company NBCUniversal since 2011, Comcast is a producer of feature films and television programs intended for theatrical exhibition and over-the-air and cable television broadcast.

Comcast operates multiple cable-only channels (including E! Entertainment Television, the Golf Channel, and NBCSN), over-the-air national broadcast network channels (NBC and Telemundo), the film production studio Universal Pictures, and Universal Parks & Resorts, with a global total of nearly 200 family entertainment locations and attractions in the U.S. and several other countries including U.A.E., South Korea, Russia and China, with several new locations reportedly planned and being developed for future operation. Comcast also has significant holding in digital distribution (thePlatform). In February 2014 the company agreed to merge with Time Warner Cable in an equity swap deal worth $45.2 billion. Under the terms of the agreement Comcast was to acquire 100% of Time Warner Cable. However, on April 24, 2015, Comcast terminated the agreement.

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

Edit

How Will Comcast Stock Fare Post Q1 Earnings?

Forbes 21 Apr 2025
We anticipate the company may face some earnings pressure this quarter, driven by intensified competition and sluggish growth in its core broadband segment ... .
Edit

Comcast moves Broward office to another city

Business Journal 18 Apr 2025
Here's why Comcast relocated and downsized its Broward County office ... .
Edit

Comcast Opens Xfinity Retail Store in Moncks Corner

The Berkeley Observer 18 Apr 2025
MONCKS CORNER, S.C. – Comcast has opened a new Xfinity retail store in Moncks Corner, offering residents a dedicated space to explore and access the company’s latest products and services.​ ... Mayor Thomas Hamilton Jr ... ....
Edit

Comcast hopes to win back fleeing customers with generous offer

The Capital Journal 17 Apr 2025
The telecom giant makes a bold attempt to reverse a startling trend ....
Edit

FCC Chairman Threatens Comcast

Political Wire 17 Apr 2025
“Comcast knows that federal law requires its licensed operations to ...
Edit

Trump’s FCC chair threatens Comcast, demands changes to NBC news coverage

Ars Technica 17 Apr 2025
"Comcast knows that federal law requires its licensed operations to serve the public interest.
Edit

Comcast introduces a five-year price guarantee for its Xfinity broadband

Pioneer Press 17 Apr 2025
In a first for nationwide customers of Philadelphia-based Comcast, its Xfinity broadband Internet service is now available with a five-year price guarantee starting at $55 a month ... Related Articles ... Here’s what we know. .
Edit

Brendan Carr threatens Comcast over coverage of Abrego Garcia

The Verge 17 Apr 2025
“Comcast outlets spent days misleading the American public,” Carr wrote in a reply to a post on X, which criticized the Comcast-owned MSNBC and Warner Bros ... The Verge reached out to Comcast with a request for comment but didn’t immediately hear back.
Edit

FCC chief targets Comcast-owned outlets over ‘news distortion’

The Hill 17 Apr 2025
The Federal Communications Commission chief blasted news outlets owned by Comcast over their coverage of a case involving a mistakenly deported man that the Trump administration contends is a gang member who entered the country illegally.
Edit

FCC chair attacks Comcast for not airing White House press conference live

AV Club 17 Apr 2025
“Comcast knows that federal law requires its licensed operations to serve the public interest ... in his crosshairsFCC chair attacks Comcast for not airing White House press conference live.
Edit

FCC Chair Criticizes Comcast for ‘News Distortion’ After White House Complains About MSNBC Coverage

The Wrap 17 Apr 2025
FCC chairman Brendan Carr criticized Comcast for “news distortion” over MSNBC’s decision not to carry the White House’s press briefing on deportations live on Wednesday.
Edit

Trump slams MSNBC, Comcast CEO Brian Roberts: ‘Disgrace to the integrity of broadcasting’

New York Post 17 Apr 2025
President Trump fired a broadside at MSNBC and the CEO of its parent company, Comcast, comparing the left-leaning network to “the broken broadcasting disaster known as CNN.” ... NBC News will remain under the Comcast umbrella.
Edit

Comcast Launches Five-Year Price Guarantee for Xfinity Internet Customers

Business Wire 16 Apr 2025
PHILADELPHIA--(BUSINESS WIRE)--Comcast Launches Five-Year Price Guarantee for Xfinity Internet Customers ... .
×