CINXE.COM

Creator Backlash - TV Tropes

<!DOCTYPE html> <html> <head lang="en"> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=newest_pages" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=most_popular" /> <link rel="alternate" type="application/rss+xml" href="https://tvtropes.org/pmwiki/rss-feed.php?filter=updated_content" /> <link rel="preload" href="/images/loading-graphic.png" as="image"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script> <script> var pbjs = pbjs || {}; // Used for Video players on Tropes var tropes_videos_commands = tropes_videos_commands || []; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XPPLXMRF6Z'); window.googletag = window.googletag || {cmd: []}; </script> <script> function object(objectId) { if (document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } } // JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences var cookies = { create: function (name, value, days2expire, path) { var date = new Date(); date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000)); var expires = date.toUTCString(); document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, createWithExpire: function(name, value, expires, path) { document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';'; }, read: function (name) { var cookie_value = "", current_cookie = "", name_expr = name + "=", all_cookies = document.cookie.split(';'), n = all_cookies.length; for (var i = 0; i < n; i++) { current_cookie = all_cookies[i].trim(); if (current_cookie.indexOf(name_expr) === 0) { cookie_value = current_cookie.substring(name_expr.length, current_cookie.length); break; } } return cookie_value; }, update: function (name, val) { this.create(name, val, 300, "/"); }, remove: function (name) { //delete cookie with and without domain setting document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;"; document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;"; } }; function updateUserPrefs() { //GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element) if( !cookies.read('user-browser') ){ var broswer = ''; if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){ browser = 'iOS'; } else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'opera'; } else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { browser = 'MSIE'; } else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'netscape'; } else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'chrome'; } else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'safari'; /Version[\/\s](\d+\.\d+)/.test(navigator.userAgent); browserVersion = new Number(RegExp.$1); } else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) { browser = 'firefox'; } else { browser = 'internet_explorer'; } cookies.create('user-browser',browser,1,'/'); document.getElementById('user-prefs').classList.add('browser-' + browser); } else { document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser')); } //update user preference settings if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load'); if (cookies.read('mono-font') !== '') document.getElementById('user-prefs').classList.add('mono-font'); if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision'); if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header'); if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers'); if (cookies.read('tvtropes-editor-on') !== '') document.getElementById('user-prefs').classList.add('tvtropes-editor-on'); if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open'); if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar'); if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links'); if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread'); //if the user is logged in, update cookies based on their database settings //updates element if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars'); if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search'); if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video'); //desktop view on mobile if (cookies.read('desktop-on-mobile') !== ''){ document.getElementById('user-prefs').classList.add('desktop-on-mobile'); var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'width=1000'); } } function updateDesktopPrefs() { if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active'); if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active'); } function updateMobilePrefs() { if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active'); if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active'); if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active'); if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active'); } function is_mobile() { if(document.body.clientWidth && document.body.clientWidth<=768) return true; else return false; } </script> <script type="text/javascript"> var country_code_list = ['AT','BE','BG','CH','CY','CZ','DE','DK','EE','ES','FI','FR','GB','GF','GP','GR','HR','HU','IC','IE','IS','IT','LI','LT','LU','LV','MF','MQ','MT','NL','NO','PL','PT','RE','RO','SE','SI','SK','SX','YT']; var site_htl_settings = { "adx" : "yes", // yes/no if we should include adx on page "groupname" : "Main", // track groupname in htl/gam "has_folders" : "yes", // track folder pages in htl/gam "user_type" : "guest", // track member/guest in htl/gam "is_testing" : "no", // yes/no if in testing mode "split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing "send_reports" : "1", // true/false if reports should be sent for logging in DataBricks "report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream) "logging_turned_on": "1", // true/false if console logging should be turned on "site_name" : "tvtropes", // Site name for display in logging "sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot } </script> <script> // Create the ad project var ads_project = (function(sent_in_settings){ //default settings var setting_defaults = { "adx" : "yes", "groupname" : "", "has_folders" : "unknown", "user_type" : "guest", "is_testing" : "no", "split_testing" : "0", "send_reports" : "0", "logging_turned_on": "false", "site_name" : "site_name", "report_url" : "", "page_template" : "", "sticky_slot_names": [] } // Combine defaults with sent in parameters var project_settings = {...setting_defaults, ...sent_in_settings}; /*************************************** --------------- AD CODE --------------- ***************************************/ window.BCLighthouseTag = window.BCLighthouseTag || {}; window.BCLighthouseTag.cmd = window.BCLighthouseTag.cmd || []; // If user type is a member if(project_settings.user_type == "member"){ // Check for UID2 cookie var uid2_cookie = cookies.read('uid2_identity'); var json_cookie = (uid2_cookie) ? JSON.parse(uid2_cookie) : ""; // If UID2 cookie exists and it's not in the banned country list, set UID2 if(!uid2_cookie || (json_cookie && json_cookie.response)){ var request = new XMLHttpRequest(); request.open("post", "/ajax/uid2_creation.php", 1); request.setRequestHeader("Content-Type", "application/json; charset=UTF-8") request.onload = function(){ if(request.status == 200){ var json = JSON.parse(request.responseText); // Create cookie with response from request cookies.create('uid2_identity', json.response, 7, '/'); output_logging("UID2 cookie created"); // Refresh specific modules pbjs.refreshUserIds({ submoduleNames: ['uid2'] }); } else output_logging("Failed to create UID2 cookie"); } request.send(); } } BCLighthouseTag.cmd.push(function() { // Only set these if given in settings if(project_settings.groupname != "") BCLighthouseTag.setTargeting("groupname", project_settings.groupname); if(project_settings.page_template != "") BCLighthouseTag.setTargeting("page_template", project_settings.page_template); BCLighthouseTag.setTargeting("adx", project_settings.adx); BCLighthouseTag.setTargeting('website', project_settings.site_name); BCLighthouseTag.setTargeting('user_type', project_settings.user_type); BCLighthouseTag.setTargeting('has_folders', project_settings.has_folders); }); // Logging function output_logging(content){ if(project_settings.logging_turned_on){ if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content); else console.log(content); } } })(site_htl_settings); </script> <script type="text/javascript"> var tvtropes_config = { asteri_stream_enabled : "1", is_logged_in : "", live_server : "1", bigcrunch_live : "1", handle : "", email_popup : "0", troper_email : "", get_asteri_stream : "", revnum : "34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4", img_domain : "https://static.tvtropes.org", adblock : "1", adblock_url : "propermessage.io", universal_page_type : "Article", pause_editing : "0", pause_editing_msg : "", pause_site_changes : "0", assets_domain : "https://assets.tvtropes.org" }; // This will track the total number of ads inserted over time var globalAdInsertionCount = 0; </script> <script> // Add second script to the head var htl_script = document.createElement('script'); htl_script.async = "async"; // Add the fundingchoices script to the head var script = document.createElement('script'); script.src = "https://fundingchoicesmessages.google.com/i/pub-6608306193529351?ers=1"; script.async = true; script.nonce = "rczD8qB5ececf2fL1Vj9XQ"; // Add second script to the head var script2 = document.createElement('script'); script2.nonce = "rczD8qB5ececf2fL1Vj9XQ"; script2.innerHTML = "(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();"; // Add both scripts to head document.head.appendChild(script); document.head.appendChild(script2); var bigcrunch_url = window.tvtropes_config.bigcrunch_live == 1 ? "https://lh.bigcrunch.com/main.js" : "https://dev-lh.bigcrunch.com/main.js"; htl_script.src = bigcrunch_url; htl_script.id = "bigcrunchtag"; htl_script.setAttribute('data-property-id', '34a5ddec-697b-424e-81d2-e6bb46a1b83e'); // Add both scripts to head document.head.appendChild(htl_script); </script> <script> // Add HTL script to head document.head.appendChild(htl_script); </script> <script>(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null} var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d} function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<< 4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])? G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)}; var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b= function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display= "flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a, e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f, 255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)}; var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this); window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd"); </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Creator Backlash - TV Tropes</title> <meta name="description" content="The Creator Backlash trope as used in popular culture. Creators aren't always proud of their work. Sometimes, a more extreme version occurs &mdash; a creator &hellip;" /> <link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Main/CreatorBacklash" /> <link rel="shortcut icon" href="https://assets.tvtropes.org/img/icons/favicon.ico" type="image/x-icon" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@tvtropes" /> <meta name="twitter:owner" content="@tvtropes" /> <meta name="twitter:title" content="Creator Backlash - TV Tropes" /> <meta name="twitter:description" content="The Creator Backlash trope as used in popular culture. Creators aren't always proud of their work. Sometimes, a more extreme version occurs &mdash; a creator &hellip;" /> <meta name="twitter:image:src" content="https://static.tvtropes.org/pmwiki/pub/images/shhoot.png" /> <meta property="og:site_name" content="TV Tropes" /> <meta property="og:locale" content="en_US" /> <meta property="article:publisher" content="https://www.facebook.com/tvtropes" /> <meta property="og:title" content="Creator Backlash - TV Tropes" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Main/CreatorBacklash" /> <meta property="og:image" content="https://static.tvtropes.org/pmwiki/pub/images/shhoot.png" /> <meta property="og:description" content="Creators aren't always proud of their work. Sometimes, a more extreme version occurs &mdash; a creator ends up despising their past work, whether it's an obscure work that didn't catch on and may not have many redeeming qualities in the first &hellip;" /> <meta name="robots" content="max-image-preview:large"> <link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png"> <link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png"> <link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png"> <link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png"> <link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png"> <link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png"> <link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png"> <link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png"> <link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png"> <link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png"> <link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png"> <link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png"> <link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4" /> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-3821842-1', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '850567933835915'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=850567933835915&ev=PageView&noscript=1" /></noscript> <script> !function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document); rdt('init','a2_fksv8rryv493'); rdt('track', 'PageVisit'); </script> </head> <body class=""> <i id="user-prefs"></i> <script>updateUserPrefs();</script> <div id="fb-root"></div> <div id="modal-box"> <div class="modal-loading-graphic"></div> </div> <style> @keyframes rotate-forever { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #modal-box > .modal-loading-graphic { display: none; /* Hidden by default */ background: no-repeat center url('/images/loading-graphic.png'); background-size: 80px 80px; width: 80px; height: 80px; border-radius: 50%; position: absolute; top: calc(30% - 40px); left: calc(50% - 40px); z-index: 2; animation: rotate-forever 0.34s linear infinite; } #modal-box.active > .modal-loading-graphic { display: block; /* Show only when modal is active */ } </style> <header id="main-header-bar" class="headroom-element "> <div id="main-header-bar-inner"> <span id="header-spacer-left" class="header-spacer"></span> <a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a> <a href="/" id="main-header-logoButton" class="no-dev"></a> <span id="header-spacer-right" class="header-spacer"></span> <nav id="main-header-nav" class="tablet-off"> <a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media">Media</a> <a href="/pmwiki/browse.php" class="nav-browse">Browse</a> <a href="/pmwiki/popular-pages.php">Popular</a> <a href="/pmwiki/topics.php">Forums</a> <a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a> </nav> <div id="main-header-bar-right"> <div id="signup-login-box" class="font-xs mobile-off"> <a href="#" class="hover-underline bold" data-modal-target="signup">Join</a> <a href="#" class="hover-underline bold" data-modal-target="login">Login</a> </div> <div id="signup-login-mobileToggle" class="mobile-on inline"> <a href="#" data-modal-target="login"><i class="fa fa-user"></i></a> </div> <div id="search-box"> <form class="search" action="/pmwiki/search_result.php"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> <a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a> </div> <div id="random-box"> <a href="/pmwiki/pmwiki.php/Main/RedheadsAreUncool" class="button-random-trope" rel="nofollow" onclick="gtag('event', 'trope_random_button_click', {'is_user': 0});"></a> <a href="/pmwiki/pmwiki.php/Music/Ringmaster" class="button-random-media" rel="nofollow" onclick="gtag('event', 'media_random_button_click', {'is_user': 0});"></a> </div> </div> </div> <div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options"> <div class="nav-wrapper"> <a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a> <a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a> <a href="/pmwiki/browse.php" class="xl">Browse</a> <a href="/pmwiki/popular-pages.php" class="xl">Popular</a> <a href="/pmwiki/index_report.php" class="xl">Indexes</a> <a href="/pmwiki/topics.php" class="xl">Forums</a> <a href="/pmwiki/recent_videos.php" class="xl">Videos</a> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a> <a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a> <a href="/pmwiki/changes.php">New Edits</a> <a href="/pmwiki/articles_new.php">New Articles</a> <a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a> <a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a> <a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a> <a href="/pmwiki/crown_activity.php">Crowner Activity</a> <a href="/pmwiki/no_types.php">Un-typed Pages</a> <a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a> <a href="/pmwiki/changelog.php">Changelog</a> </div> <a href="#tips" data-click-toggle="active">Tips <i class="fa fa-chevron-down"></i></a> <div class="tips-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a> <a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a> <a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a> <a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a> <a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary?from=Main.TVTropesGlossary">Glossary</a> <a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a> <a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a> <a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a> <a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a> <a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a> </div> <a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a> <div class="tools-dropdown mobile-dropdown-linkList"> <a href="/pmwiki/about.php">About Us</a> <a href="/pmwiki/contact.php">Contact Us</a> <a href="/pmwiki/dmca.php">DMCA Notice</a> <a href="/pmwiki/privacypolicy.php">Privacy Policy</a> <a href="/pmwiki/query.php?type=bug">Report Bug</a> </div> <a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a> <a href="/pmwiki/changelog.php">Changelog</a></li> <div class="toggle-switches"> <ul class="mobile-menu display-toggles"> <li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li> </ul> <script>updateMobilePrefs();</script> </div> </div> </div> </div> </header> <div id="homepage-introBox-mobile" class="mobile-on"> <a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a> <form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;"> <input type="text" name="q" class="search-box" placeholder="Search" value="" required> <input type="submit" class="submit-button" value="&#xf002;" /> <input type="hidden" name="search_type" value="article"> <input type="hidden" name="page_type" value="all"> <input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v"> <input type="hidden" name="cof" value="FORID:10"> <input type="hidden" name="ie" value="ISO-8859-1"> <input name="siteurl" type="hidden" value=""> <input name="ref" type="hidden" value=""> <input name="ss" type="hidden" value=""> </form> </div> <script> // Get device type function get_device_type(){ var ua = navigator.userAgent.toLowerCase(); var device_type = ""; // This is usually "tablet", but for this case we are going to call it mobile if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(ua)) device_type = "mobile"; // This is mobile else if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(ua)) device_type = "mobile"; // Otherwise desktop else device_type = "desktop"; return device_type; } var show_modal_loaded = false; //// MOBILE MENU TOGGLE FUNCTIONS //// function show_modal(type, message, confirmation_url, call_back, fb_token, groupname, title, video_id) { console.log("showing modal " + type); const modalBox = document.getElementById('modal-box'); const childDivs = modalBox.querySelectorAll(':scope > div'); // Check if there are more than one child divs in the modal box, indicating a modal is already there if (childDivs.length > 1) { kill_modal(); } // Show the modal and the loading graphic modalBox.classList.add('active'); let alert = ''; if (typeof message === 'object' && message !== null) { Object.keys(message).forEach(function(key) { alert += '&' + key + '=' + encodeURIComponent(message[key]); }); } else { alert = '&message=' + encodeURIComponent(message); } // Construct the URL with parameters const url = '/design/parts/component-modalBox.php?window=' + type + alert + (confirmation_url ? '&curl=' + encodeURIComponent(confirmation_url) : "") + (fb_token ? '&fb_token=' + encodeURIComponent(fb_token) : "") + (groupname ? '&groupname=' + groupname : "") + (video_id ? '&video_id=' + encodeURIComponent(video_id) : ""); fetch(url) .then(response => response.text()) .then(html => { modalBox.innerHTML = html; // Find and execute scripts const scripts = modalBox.querySelectorAll('script'); scripts.forEach(script => { const newScript = document.createElement('script'); newScript.type = 'text/javascript'; if (script.src) { newScript.src = script.src; // Wait for Dropzone.js to load before adding the imguploader.js if(newScript.src.includes('/design/js/dropzone.js')) { newScript.onload = function() { // Now load the imguploader.js script const img_uploader_script = document.createElement('script'); img_uploader_script.type = 'text/javascript'; img_uploader_script.src = "/design/js/imguploader.js"; img_uploader_script.onload = function (){ myAwesomeDropzone = new Dropzone("#myAwesomeDropzone", { url: "/ajax/uploadImg.php" }); } document.body.appendChild(img_uploader_script); } } } else { newScript.textContent = script.textContent; } // Remove the old script and add the new one script.parentNode.removeChild(script); modalBox.appendChild(newScript); }); if(call_back) { call_back(); } }); if(show_modal_loaded == false){ // Kill modal if blackout is clicked modalBox.addEventListener('click', function(e) { if (e.target === e.currentTarget) { kill_modal(); } }); } show_modal_loaded = true; } // Modal kill function function kill_modal() { console.log("killing modal"); const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('active'); // Replace the content directly with the new loading graphic modalBox.innerHTML = '<div class="modal-loading-graphic"></div>'; } // Modal "loading" mode, without killing function pause_modal() { var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.add('hidden'); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('paused'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } function unpause_modal() { const modalBox = document.getElementById('modal-box'); modalBox.classList.remove('paused'); var modal = document.querySelector('#modal-box > div.modal'); if(!modal) modal = document.querySelector('#modal-box'); modal.classList.remove('hidden'); const loadingGraphic = document.querySelector('#modal-box > div.modal-loading-graphic'); if (loadingGraphic) { modalBox.removeChild(loadingGraphic); } } // COMPONENT: LOAD GRAPHIC function show_loader() { console.log("Displaying loading graphic"); kill_modal(); const modalBox = document.getElementById('modal-box'); modalBox.classList.add('active'); const loadingGraphic = document.createElement('div'); loadingGraphic.className = 'modal-loading-graphic'; modalBox.appendChild(loadingGraphic); } // TOGGLE NOTES function togglenote(id){ var ele=object(id); var state = ele.style.display; if(state=='none') ele.style.display='inline'; if(state=='inline')ele.style.display='none'; } // Toggle more menu function toggle_more_menu(position){ var more_menu = document.getElementById(position+"_more_list"); more_menu.classList.toggle("hidden_more_list"); more_menu.classList.toggle("display"); var menu_button = document.getElementById(position+"_more_button"); menu_button.classList.toggle("is-open"); } // scroll to top of page function scroll_to_top(duration) { var start = window.pageYOffset; var start_time = performance.now(); if ('requestAnimationFrame' in window === false) { window.scrollTo(0, 0); return; } function scroll() { var current_time = performance.now(); var elapsed_time = current_time - start_time; var progress = elapsed_time / duration; var ease_in_out_quad = progress < 0.5 ? 2 * progress * progress : -1 + (4 - 2 * progress) * progress; window.scrollTo(0, start * (1 - ease_in_out_quad)); if (elapsed_time < duration) { requestAnimationFrame(scroll); } else { window.scrollTo(0, 0); } } scroll(); } // FOLDER BUTTONS (unused) - declared to prevent console errors. function toggleAllFolders() {} function togglefolder(id) {} var device_type = get_device_type(); const mobile_menu_button = document.querySelector('.mobile-menu-toggle-button'); if (mobile_menu_button) { mobile_menu_button.addEventListener('click', function(e) { e.preventDefault(); const header = document.querySelector('header#main-header-bar'); if (header.classList.contains('mobile-menu-active')) { header.classList.remove('mobile-menu-active'); } else { header.classList.add('mobile-menu-active'); } }); } // tracking height for multiple folders to insert ads var global_pHeight = 0; // MODAL - FOLDER - SPOILER BUTTONS document.body.addEventListener('click', function(e) { // WATCH / FOLLOW BUTTONS const target = e.target.closest('.watch-button'); const loggedInElement = document.getElementById('logged_in'); const loggedIn = loggedInElement ? loggedInElement.value : null; //special code for the desktop-on-mobile-toggle cookie link if (e.target.closest('#desktop-on-mobile-toggle > a')) { e.preventDefault(); var body_class = "desktop-on-mobile"; var userPrefs = document.getElementById('user-prefs'); if (userPrefs.classList.contains(body_class)) { cookies.remove(body_class); } else { cookies.create(body_class, 'true', 300, '/'); } location.reload(); } // Display toggle buttons for user preferences if (e.target.closest('.display-toggles > li')) { var toggle = e.target; if(toggle.tagName.toLowerCase() === 'li') toggle = toggle.children[0]; var body_class = ''; var pref = ''; var val = 0; // SIDEBAR AND MOBILE MENU OPTIONS if (toggle.classList.contains('wide-load')) { body_class = "wide-load"; } else if (toggle.classList.contains('sticky-header')) { body_class = "sticky-header"; } else if (toggle.classList.contains('night-vision')) { body_class = "night-vision"; } else if (toggle.classList.contains('show-spoilers')) { body_class = "show-spoilers"; } else if (toggle.classList.contains('tvtropes-editor-on')) { body_class = "tvtropes-editor-on"; } // PROFILE PAGE OPTIONS else if (toggle.classList.contains('folders-open')) { body_class = "folders-open"; } else if (toggle.classList.contains('wysiwyg-toggle')) { body_class = "wysiwyg-toggle"; } else if (toggle.classList.contains('mono-font')) { body_class = "mono-font"; } else if (toggle.classList.contains('lefthand-sidebar')) { body_class = "lefthand-sidebar"; } else if (toggle.classList.contains('highlight-links')) { body_class = "highlight-links"; } else if (toggle.classList.contains('forum-gingerbread')) { body_class = "forum-gingerbread"; } else if (toggle.classList.contains('shared-avatars')) { body_class = "shared-avatars"; pref = 'accept_share'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('new-search')) { body_class = "new-search"; pref = 'new_search'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('stop-auto-play-video')) { body_class = "stop-auto-play-video"; pref = 'stop_auto_play_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-pm')) { body_class = 'notification-pm'; pref = 'toggle_notification_pm'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-video')) { body_class = 'notification-video'; pref = 'toggle_notification_video'; val = toggle.classList.contains('active') ? 0 : 1; } else if (toggle.classList.contains('notification-query')) { body_class = 'notification-query'; pref = 'toggle_notification_query'; val = toggle.classList.contains('active') ? 0 : 1; } if (pref === 'accept_share' || pref === 'new_search' || pref === 'stop_auto_play_video' || pref === 'toggle_notification_query' || pref === 'toggle_notification_pm' || pref === 'toggle_notification_video') { if (pref === 'new_search' && document.querySelector('#new-search-toggle')) show_loader(); fetch('/ajax/toggle_user_prefs.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'pref=' + encodeURIComponent(pref) + '&value=' + encodeURIComponent(val) }) .then(response => response.json()) .then(json => { if (pref === 'new_search') { const newSearchToggle = document.querySelector('#new-search-toggle'); const searchInput = document.getElementById('srch-term').value; const pageType = document.getElementsByName('page_type')[0].value; if (newSearchToggle && newSearchToggle.classList.contains('active')) { kill_modal(); window.location.href = '/pmwiki/elastic_search_result.php?new_search=true&q=' + encodeURIComponent(searchInput) + '&page_type=' + encodeURIComponent(pageType); } else if (newSearchToggle) { kill_modal(); window.location.href = '/pmwiki/search_result.php?new_search=false&q=' + encodeURIComponent(searchInput); } } }) .catch(error => { console.error('Error:', error); }); document.querySelector('form.search').addEventListener('submit', function(e) { if (cookies.read('new-search') === 'true') { e.preventDefault(); this.setAttribute('action', "/pmwiki/elastic_search_result.php"); } }); } // Toggle 'active' class based on body_class var displayToggles = document.querySelectorAll('.display-toggle.' + body_class); displayToggles.forEach(item_to_toggle => { item_to_toggle.classList.toggle('active'); }); var userPrefs = document.getElementById('user-prefs'); userPrefs.classList.toggle(body_class); console.log('BODY CLASS:',body_class); if (userPrefs.classList.contains(body_class)) { cookies.create(body_class, 'true', 300, '/'); } else { cookies.remove(body_class); // Specific logic for 'show-spoilers' class if (body_class === "show-spoilers") { document.querySelectorAll('.spoiler').forEach(spoiler => { spoiler.classList.remove('off'); }); } } } if (target && loggedIn !== null) { e.preventDefault(); if (loggedIn === 'true') { target.classList.add('processing'); } // Article if (target.getAttribute('data-watch-info')) { var data = target.dataset.watchInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; handleWatchItem(addOrDrop, data[0], data[1], target); // Discussion page } else if (target.getAttribute('data-watch-discussion-info')) { var data = target.dataset.watchDiscussionInfo.split(','); if (!data.length) return; var addOrDrop = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? 'drop' : 'add'; var pageType = 'Discussion'; handleWatchItem(addOrDrop, data[0], data[1], target, pageType); // Forum thread } else if (target.getAttribute('data-watch-thread-id')) { var threadId = target.getAttribute('data-watch-thread-id'); var url = target.classList.contains('watching') || target.parentElement.classList.contains('watching') ? '/pmwiki/thread_watch_drop.php?thread=' : '/pmwiki/setthreadwatch.php?d_id='; url += threadId; handleWatchThread(url, target); } } // Check for kill modal button click if (e.target.classList.contains('kill-modal-button')) { e.preventDefault(); kill_modal(); } // Check for data-click-toggle without data-click-toggle-target const targetWithoutToggleTarget = e.target.closest('*[data-click-toggle]:not([data-click-toggle-target])'); if (targetWithoutToggleTarget) { e.preventDefault(); const toggleClass = targetWithoutToggleTarget.getAttribute('data-click-toggle'); targetWithoutToggleTarget.classList.toggle(toggleClass); } // Check for data-click-toggle with data-click-toggle-target const targetWithToggleTarget = e.target.closest('*[data-click-toggle][data-click-toggle-target]'); if (targetWithToggleTarget) { e.preventDefault(); // Check if the target contains fetch_articles in the onclick attribute const hasFetchArticles = targetWithToggleTarget.getAttribute('onclick') && targetWithToggleTarget.getAttribute('onclick').includes('fetch_articles'); // If fetch_articles is not in the onclick attribute, stop propagation if (!hasFetchArticles) { e.stopPropagation(); } const toggleTarget = targetWithToggleTarget.getAttribute('data-click-toggle-target'); const toggleClass = targetWithToggleTarget.getAttribute('data-click-toggle'); if (toggleTarget.indexOf(',') > -1) { const targets = toggleTarget.split(","); targets.forEach(t => { document.querySelectorAll('#' + t).forEach(el => { el.classList.toggle(toggleClass); }); }); } else { document.querySelectorAll('#' + toggleTarget).forEach(el => { el.classList.toggle(toggleClass); }); } } // initiate all modals const modalTarget = e.target.closest('*[data-modal-target]'); if(modalTarget) { if (!modalTarget) { return; // Skip, if no target found with the specified attribute } // Get modal details let modal = modalTarget.getAttribute('data-modal-target'); let msg = modalTarget.getAttribute('data-modal-vars') ? modalTarget.getAttribute('data-modal-vars') : modalTarget.getAttribute('data-modal-confirmation-message'); let url = modalTarget.getAttribute('data-modal-confirmation-url'); // convert to json if possible try { var obj = JSON.parse(msg); if (obj && typeof obj === "object") { msg = obj; } } catch (e) { } // Skip modal and go straight to the link if (modal === "allow") return; // Don't allow link since we are showing a modal instead e.preventDefault(); // Add support for alert tags if (modal.substring(0, 6) === "alert-") { // Message array const msgArr = { "alert-banned": "Your permissions for this area have been suspended. Please visit <a href='/pmwiki/pmwiki.php/Administrivia/WhatToDoIfYouAreSuspended'>this page</a> for more details.", "alert-bounced": "This account has committed severe or repeated violations of our rules and is permanently denied access to many of the account features of the site. If you feel that this may be an error, please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-denied": "Your account was denied by a moderator. If you believe this was done in error please <a href=\"/pmwiki/contact.php\">contact the mods</a>.", "alert-verify": "You must verify your email address before doing this. Check your email for a link.", "alert-approval": "Your account must be approved by a moderator before you can do this. If you still have this problem in a couple hours try <a href=\"/pmwiki/contact.php\">contacting the mods</a>.", "alert-age": "Your account is not old enough. Give it a little more time.", "alert-mod": "This page is only for moderators. Try something else.", "alert-db": "We are currently updating our database systems to UTF-8MB4. Please try again in 10-12 hours." }; if (modal in msgArr) { msg = msgArr[modal]; } else { msg = "Unknown error. Please <a href=\"/pmwiki/contact.php\">Contact us</a> if the problem persists."; } modal = "alert"; } // Bring up modal now show_modal(modal, msg, url); } // SPOILERS const spoilers = e.target.closest('.spoiler'); if (spoilers) { spoilers.classList.toggle('off'); } // OPEN INDIVIDUAL FOLDERS const folders = e.target.closest('.folderlabel'); if (folders && e.target.getAttribute('onclick') !== "toggleAllFolders();") { e.preventDefault(); folders.classList.toggle('is-open'); let folder = folders.nextElementSibling; if (folders.classList.contains('is-open')) { gtag('event', 'folder_click', {'device_type': device_type}); } if (folder && folders.classList.contains('is-open') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { if (folder.querySelectorAll('.tvtropes-ad-unit').length === 0) { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } } } // OPEN ALL FOLDERS const allFolders = e.target.closest('div[onclick*="toggleAllFolders()"]'); if (allFolders) { let parentElement = allFolders.parentNode; // If the button is inside an H2, select the parent div of it if (parentElement.tagName === 'H2') parentElement = parentElement.parentNode; let isCurrentlyOpen = e.target.classList.contains('is-open'); // Select only folder labels that are inside the same parent div as the clicked button let foldersAndButtons = parentElement.querySelectorAll('.folderlabel, .toggle-all-folders-button'); foldersAndButtons.forEach(function(element) { if (isCurrentlyOpen) { element.classList.remove('is-open'); } else { element.classList.add('is-open'); } }); if (!isCurrentlyOpen) { gtag('event', 'all_folders_click', {'device_type': device_type}); // Also target only .folder elements within the same parent div parentElement.querySelectorAll('.folder').forEach(function(folder) { if (!folder.querySelector('.tvtropes-ad-unit') && live_ads == 1 && (document.body.clientWidth && document.body.clientWidth<=768) && tvtropes_config.universal_page_type == 'Article') { global_pHeight = insert_ads_in_content(folder, globalAdInsertionCount, global_pHeight); } }); } } }, true); // Add/remove watched article var handleWatchItem = function(addOrDrop, groupname, title, obj, pageType = '') { fetch("/ajax/watchlist.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }, body: `groupname=${encodeURIComponent(groupname)}&title=${encodeURIComponent(title)}&type=${encodeURIComponent(addOrDrop)}&json=1&pageType=${encodeURIComponent(pageType)}` }) .then(response => response.json()) .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } // add/remove watched forum thread var handleWatchThread = function(url, obj) { fetch(url) .then(response => response.text()) // assuming the server responds with plain text .then(data => { obj.classList.remove('processing'); if (obj.classList.contains('tile-watch-button')) { obj.parentNode.classList.toggle('watching'); } else { obj.classList.toggle('watching'); } }) .catch(error => { obj.classList.remove('processing'); show_modal('alert-red', 'Whoops, something went wrong. Please try adding again.'); }); } </script> <script> if(is_mobile()) { document.write("<div class=\"htlad-tvtropes_m_sticky\"></div>"); } else { document.write("<div class=\"htlad-tvtropes_dt_sticky\"></div>"); } </script> <div id="tvtropes_oop_ad_slot" style="display: none;"></div> <div id="top_container_spacing"></div> <div id="main-container"> <div id="action-bar-top" class="action-bar mobile-off"> <div class="action-bar-right"> <p>Follow TV Tropes</p> <a href="https://www.facebook.com/TVTropes" class="button-fb"> <i class="fa fa-facebook"></i></a> <a href="https://www.twitter.com/TVTropes" class="button-tw"> <i class="fa fa-twitter"></i></a> </div> <nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul id="top_main_list" class="page-actions"> <li class="link-edit"> <a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Main/CreatorBacklash?action=edit"> <i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Main/CreatorBacklash"> <i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Main.CreatorBacklash" data-modal-target="login" rel="nofollow"> <i class="fa fa-history"></i> History</a></li><li class="link-discussion"><a href="/pmwiki/remarks.php?trope=Main.CreatorBacklash" data-modal-target="login" rel="nofollow"> <i class="fa fa-comment"></i> Discussion</a></li><li class="link-todo tuck-always"><a href="#todo" data-modal-target="login" rel="nofollow"><i class="fa fa-check-circle"></i> To Do</a></li> </ul> <button id="top_more_button" onclick="toggle_more_menu('top');" type="button" class="nav__dropdown-toggle">More</button> <ul id="top_more_list" class="more_menu hidden_more_list"> <li class="link-pageSource tuck-always more_list_item"><a href="/pmwiki/pmwiki.php/Main/CreatorBacklash?action=source" target="_blank" rel="nofollow"data-modal-target= "login"><i class="fa fa-code"></i> Page Source</a></li> </ul> </nav> <div class="WikiWordModalStub"></div> <div class="ImgUploadModalStub" data-page-type="Article"></div> <div class="login-alert" style="display: none;"> You need to <a href="/pmwiki/login.php" style="color:#21A0E8">login</a> to do this. <a href="/pmwiki/login.php?tab=register_account" style="color:#21A0E8">Get Known</a> if you don't have an account </div> </div> <div id="main-content" class="page-Article "> <article id="main-entry" class="with-sidebar"> <!-- HIDDEN INPUTS FOR JS --> <input type="hidden" id="groupname-hidden" value="Main"/> <input type="hidden" id="title-hidden" value="CreatorBacklash"/> <input type="hidden" id="article_id" value="13068" /> <input type="hidden" id="logged_in" value="false" /> <p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Main/CreatorBacklash</p> <meta itemprop="datePublished" content=""/> <meta itemprop="articleSection" content="" /> <meta itemprop="image" content=""> <div class="article-banner trivia"> <p>This entry is trivia, which is cool and all, but not a trope. On a work, it goes on the Trivia tab.</p> </div> <div class="watch_rank_wrap"> <a href="#watch" class="watch-button " data-modal-target="login" >Follow<span>ing</span></a> </div> <h1 itemprop="headline" class="entry-title"> Creator Backlash </h1> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "TV Tropes", "item": "https://tvtropes.org/" },{ "@type": "ListItem", "position": 2, "name": "Tropes", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/Tropes" },{ "@type": "ListItem", "position": 3, "name": "Creator Backlash", "item": "https://tvtropes.org/pmwiki/pmwiki.php/Main/CreatorBacklash" }] } </script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "name": "Creator Backlash", "headline": "Creator Backlash", "url": "https://tvtropes.org/pmwiki/pmwiki.php/Main/CreatorBacklash", "image": "https://static.tvtropes.org/pmwiki/pub/images/shhoot.png", "author": { "@type": "Organization", "name": "Contributors to TV Tropes (aka Tropers)" }, "datePublished": "2008-05-01T00:00:00-07:00", "dateModified": "2024-11-28T15:28:06-08:00" } </script> <a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" > <p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a> <nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav> <script> //duplicate action bar to the mobile-action-bar holder if (document.getElementById("mobile-actions-bar")) { // Clone the main list var top_main_list = document.getElementById('top_main_list'); var top_main_list_cln = top_main_list.cloneNode(true); // Clone the more list var top_more_list = document.getElementById('top_more_list'); var top_more_list_cln = top_more_list.cloneNode(true); top_more_list_cln.querySelectorAll("li").forEach(function(child){ top_main_list_cln.appendChild(child); }); document.getElementById("mobile-actions-bar").appendChild(top_main_list_cln); } </script> <nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="subpage-links"> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorBacklash" class="subpage-link curr-subpage" title="The Main page"> <span class="wrapper"><span class="spi main-page"></span>Main</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Laconic/CreatorBacklash" class="subpage-link " title="The Laconic page"> <span class="wrapper"><span class="spi laconic-icon"></span>Laconic</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/Quotes/CreatorBacklash" class="subpage-link " title="The Quotes page"> <span class="wrapper"><span class="spi quotes"></span>Quotes</span></a> </li> <li> <a href="/pmwiki/pmwiki.php/VideoExamples/CreatorBacklash" class="subpage-link video-examples-tab " title="Video Examples"> <img src="/images/play-button-logo.png" alt="play" class=""> <span class="wrapper">VideoExamples</span> </a> </li> <li class="create-subpage dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> <span class="wrapper">Create Subpage <i class="fa fa-plus-circle"></i></span> </a> <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">- Create New -</option> <option value="/pmwiki/pmwiki.php/Analysis/CreatorBacklash?action=edit">Analysis</option> <option value="/pmwiki/pmwiki.php/Archive/CreatorBacklash?action=edit">Archive</option> <option value="/pmwiki/pmwiki.php/Awesome/CreatorBacklash?action=edit">Awesome</option> <option value="/pmwiki/pmwiki.php/Characters/CreatorBacklash?action=edit">Characters</option> <option value="/pmwiki/pmwiki.php/DerivativeWorks/CreatorBacklash?action=edit">DerivativeWork&#8230;</option> <option value="/pmwiki/pmwiki.php/FanWorks/CreatorBacklash?action=edit">FanWorks</option> <option value="/pmwiki/pmwiki.php/FanficRecs/CreatorBacklash?action=edit">FanficRecs</option> <option value="/pmwiki/pmwiki.php/Fridge/CreatorBacklash?action=edit">Fridge</option> <option value="/pmwiki/pmwiki.php/Funny/CreatorBacklash?action=edit">Funny</option> <option value="/pmwiki/pmwiki.php/Haiku/CreatorBacklash?action=edit">Haiku</option> <option value="/pmwiki/pmwiki.php/Headscratchers/CreatorBacklash?action=edit">Headscratchers</option> <option value="/pmwiki/pmwiki.php/Heartwarming/CreatorBacklash?action=edit">Heartwarming</option> <option value="/pmwiki/pmwiki.php/ImageLinks/CreatorBacklash?action=edit">ImageLinks</option> <option value="/pmwiki/pmwiki.php/ImageSource/CreatorBacklash?action=edit">ImageSource</option> <option value="/pmwiki/pmwiki.php/MediaNotes/CreatorBacklash?action=edit">MediaNotes</option> <option value="/pmwiki/pmwiki.php/Newsletter/CreatorBacklash?action=edit">Newsletter</option> <option value="/pmwiki/pmwiki.php/NightmareFuel/CreatorBacklash?action=edit">NightmareFuel</option> <option value="/pmwiki/pmwiki.php/PlayingWith/CreatorBacklash?action=edit">PlayingWith</option> <option value="/pmwiki/pmwiki.php/QuoteSource/CreatorBacklash?action=edit">QuoteSource</option> <option value="/pmwiki/pmwiki.php/Recap/CreatorBacklash?action=edit">Recap</option> <option value="/pmwiki/pmwiki.php/ReferencedBy/CreatorBacklash?action=edit">ReferencedBy</option> <option value="/pmwiki/pmwiki.php/Shocking/CreatorBacklash?action=edit">Shocking</option> <option value="/pmwiki/pmwiki.php/TearJerker/CreatorBacklash?action=edit">TearJerker</option> <option value="/pmwiki/pmwiki.php/Timeline/CreatorBacklash?action=edit">Timeline</option> <option value="/pmwiki/pmwiki.php/Trivia/CreatorBacklash?action=edit">Trivia</option> <option value="/pmwiki/pmwiki.php/WMG/CreatorBacklash?action=edit">WMG</option> <option value="/pmwiki/pmwiki.php/YMMV/CreatorBacklash?action=edit">YMMV</option> </select> </li> </ul> </nav> <div id="main-article" class="article-content retro-folders"> <p><!--Image chosen via crowner in the Image Suggestion thread: https://tvtropes.org/pmwiki/crowner.php/ImagePickin/ImageSuggestions105--> <!--https://tvtropes.org/pmwiki/posts.php?discussion=1452266899092104700--> <!--Please do not change or remove without starting a new thread.--> </p><p><div class="quoteright" style="width:300px;" ><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BooksOfAdam' title='/pmwiki/pmwiki.php/Webcomic/BooksOfAdam' data-format='W1tXZWJjb21pYy9Cb29rc09mQWRhbSBodHRwczovL3N0YXRpYy50dnRyb3Blcy5vcmcvcG13aWtpL3B1Yi9pbWFnZXMvc2hob290LnBuZ11d'><div class="lazy_load_img_box" style="padding-top:124.33%"><img src='https://static.tvtropes.org/pmwiki/pub/images/shhoot.png' class='embeddedimage' border='0' alt='Creator Backlash (trope)' width=300 height=373></div></a></div> <div class="acaptionright" style="width:300px;" ><a class='urllink' href='https://www.facebook.com/adamcomix/photos/a.160195804031634/2816842808366907/?type=3'>It's over.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a></div> </p><p><div class='indent'><em>"Ah, yes, I wrote the 'Purple Cow,'<br data-format="\\" />I'm Sorry, now, I wrote it;<br data-format="\\" />But I can tell you, Anyhow<br data-format="\\" />I'll Kill you if you Quote it!"</em> <div class='indent'>&#8212; <strong>Gelett Burgess</strong>, <em>Confession: and a Portrait Too, Upon a Background that I Rue</em> </div></div></p><p>Creators aren't always proud of their work. Sometimes, a more extreme version occurs &#8212; a creator ends up despising their past work, whether it's an obscure work that didn't catch on and may not have many redeeming qualities in the first place, or a popular work that is loved by fans, much to the creator's dismay. </p><p>Fandom is an interesting entity. Nobody can quite tell how people will react to anything, making the creation of a popular work a crapshoot. However, it's assumed that most creators hold an equal or greater amount of affection for their work than their fans. After all, they had to actually make it in the first place. So obviously, anything that's popular must be something the creator likes, right? </p><p>Not quite. See, the creators are people too, and even if they're the origin of a particular work, that doesn't stop them from holding such a strong negative opinion about it. This is what is referred to as creator backlash. It's the most high profile form of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hatedom' title='/pmwiki/pmwiki.php/Main/Hatedom' data-format='e3toYXRlZG9tfX0='>hatedom</a> possible, since it's the very creator(s) of the work denouncing it. As they bring up their feelings of hatred for their work in interviews, public forums, and their other creations, it brings a certain amount of discord into being a fan when the very source has denounced it. It might even trigger feelings of betrayal, or resentment that the author has (apparently) become a holier-than-thou hypocrite. </p><p>It can take on many forms and for many reasons. Perhaps an obscure work they made before becoming famous left a bad taste in their mouth. In addition, creators may feel their work has been ruined by <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' title='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' data-format='RXhlY3V0aXZlTWVkZGxpbmc='>Executive Meddling</a>. Another reason could be that the creator didn't really intend for it to become so popular, only making it to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MoneyDearBoy' title='/pmwiki/pmwiki.php/Main/MoneyDearBoy' data-format='W1tNb25leURlYXJCb3kgcGF5IHRoZSBiaWxsc11d'>pay the bills</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneForTheMoneyOneForTheArt' title='/pmwiki/pmwiki.php/Main/OneForTheMoneyOneForTheArt' data-format='W1tPbmVGb3JUaGVNb25leU9uZUZvclRoZUFydCBmdW5kIHRoZWlyIG1vcmUgc2VyaW91cyB3b3JrXV0='>fund their more serious work</a> (perhaps even <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FranchiseZombie' title='/pmwiki/pmwiki.php/Main/FranchiseZombie' data-format='W1tGcmFuY2hpc2Vab21iaWUgZ2V0dGluZyBmb3JjZWQgaW50byBjb250aW51aW5nIGl0XV0='>getting forced into continuing it</a>). Perhaps people <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MisaimedFandom' title='/pmwiki/pmwiki.php/Main/MisaimedFandom' data-format='W1tNaXNhaW1lZEZhbmRvbSBjb21wbGV0ZWx5IG1pc3MgdGhlIHBvaW50XV0='>completely miss the point</a>. Perhaps <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IAmNotSpock' title='/pmwiki/pmwiki.php/Main/IAmNotSpock' data-format='W1tJQW1Ob3RTcG9jayBpdCBoYXMgdGhlbSB0eXBlY2FzdCB0byBhIHNpY2tlbmluZyBsZXZlbF1d'>it has them typecast to a sickening level</a>. Perhaps the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagnumOpusDissonance' title='/pmwiki/pmwiki.php/Main/MagnumOpusDissonance' data-format='W1tNYWdudW1PcHVzRGlzc29uYW5jZSBwcm9qZWN0IHRoYXQgdGhleSBwdXQgYSBsb3Qgb2YgZWZmb3J0IGluIGdldHMgcGF0aGV0aWMgcmVhY3Rpb25zIGZyb20gZmFuc11d'>project that they put a lot of effort in gets pathetic reactions from fans</a>. Perhaps they <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorBreakdown' title='/pmwiki/pmwiki.php/Main/CreatorBreakdown' data-format='W1tDcmVhdG9yQnJlYWtkb3duIHdlcmUgZ29pbmcgdGhyb3VnaCBhIHJvdWdoIHRpbWUgd2hpbGUgbWFraW5nIGl0XV0='>were going through a rough time while making it</a>. Perhaps they thought it was great at the time but, in hindsight and with a more "mature" perspective, think otherwise. Perhaps it has become their only work that is generally known, casting them as a "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/OneHitWonder' title='/pmwiki/pmwiki.php/Main/OneHitWonder' data-format='T25lSGl0V29uZGVy'>One-Hit Wonder</a>" in the eyes of the majority. Maybe they thought they could have done better. Maybe they begin to think <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheWorldIsNotReady' title='/pmwiki/pmwiki.php/Main/TheWorldIsNotReady' data-format='VGhlV29ybGRJc05vdFJlYWR5'>The World Is Not Ready</a>. </p><p>It is quite common for creators who start early to simply grow out of their early work. Added to which is the common artistic trait of always wanting to move on: the criticism is just an expression of boredom; been there, done that. </p><p>Or perhaps they just really do hate the work they created after all this time; maybe their personality <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ValuesDissonance' title='/pmwiki/pmwiki.php/Main/ValuesDissonance' data-format='W1tWYWx1ZXNEaXNzb25hbmNlIChvciB0aGUgZWZmZWN0IHRoZSB3b3JrIGhhcyBvbiB0b2RheSYjMDM5O3Mgc29jaWV0eSldXQ=='>(or the effect the work has on today's society)</a> really has changed that much. The reasons are as myriad as the reasons a fan might choose to like their work in the first place. </p><p>Not all creator backlash is permanent, though. They can just as easily choose to later embrace their work when they get over whatever was troubling them in the first place. This seems to be quite rare, however. When it does happen, it usually seems to occur after a lengthy period of time has passed between appearing on the show and the present. </p><p>And, of course, no matter how bad the backlash is, the artists rarely return any of the cash they've made from a work. </p><p>Compare <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OldShame' title='/pmwiki/pmwiki.php/Main/OldShame' data-format='T2xkU2hhbWU='>Old Shame</a>, for when a character in a work of fiction regrets something they did in their past, which may include an in-universe case of Creator Backlash. Compare and contrast <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SelfCensoredRelease' title='/pmwiki/pmwiki.php/Main/SelfCensoredRelease' data-format='U2VsZkNlbnNvcmVkUmVsZWFzZQ=='>Self-Censored Release</a> (where the work in question has <em><a class='twikilink' href='/pmwiki/pmwiki.php/Main/NSFW' title='/pmwiki/pmwiki.php/Main/NSFW' data-format='W1t7e05TRld9fSBxdWVzdGlvbmFibGVdXQ=='>questionable</a></em> history which its creators would like to dispose of) and see also <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagnumOpusDissonance' title='/pmwiki/pmwiki.php/Main/MagnumOpusDissonance' data-format='TWFnbnVtT3B1c0Rpc3NvbmFuY2U='>Magnum Opus Dissonance</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DisownedAdaptation' title='/pmwiki/pmwiki.php/Main/DisownedAdaptation' data-format='RGlzb3duZWRBZGFwdGF0aW9u'>Disowned Adaptation</a>. Overlaps with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CanonDiscontinuity' title='/pmwiki/pmwiki.php/Main/CanonDiscontinuity' data-format='Q2Fub25EaXNjb250aW51aXR5'>Canon Discontinuity</a> if the creator removes a disliked work from the series canon entirely. In the most extreme cases, the creator will attempt to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BuryYourArt' title='/pmwiki/pmwiki.php/Main/BuryYourArt' data-format='QnVyeVlvdXJBcnQ='>Bury Your Art</a>, in which they hate a work so much that they go the lengths to make sure it isn’t publicly available. Also see <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorsPest' title='/pmwiki/pmwiki.php/Main/CreatorsPest' data-format='Q3JlYXRvcnNQZXN0'>Creator's Pest</a>, a character their creator personally dislikes. </p><p>The closest actual opposite of this trope is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ApprovalOfGod' title='/pmwiki/pmwiki.php/Main/ApprovalOfGod' data-format='QXBwcm92YWxPZkdvZA=='>Approval of God</a>. </p><p>Not be confused with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CreatorBreakdown' title='/pmwiki/pmwiki.php/Main/CreatorBreakdown' data-format='Q3JlYXRvckJyZWFrZG93bg=='>Creator Breakdown</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtistDisillusionment' title='/pmwiki/pmwiki.php/Main/ArtistDisillusionment' data-format='QXJ0aXN0RGlzaWxsdXNpb25tZW50'>Artist Disillusionment</a>, though they can definitely overlap with this. Artist disillusionment is against fans while this is against works. And definitely <em>not</em> to be confused with <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Pun' title='/pmwiki/pmwiki.php/Main/Pun' data-format='W1t7e1B1bn19IGNyZWF0b3JzIGdldHRpbmcgdGhlaXIgYmFja3MgbGFzaGVkLl1d'>creators getting their backs lashed.</a> </p><p>This can sometimes result in creators <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UncreditedRole' title='/pmwiki/pmwiki.php/Main/UncreditedRole' data-format='W1tVbmNyZWRpdGVkUm9sZSBnb2luZyB1bmNyZWRpdGVkXV0='>going uncredited</a> for their part in the work, with some going as far as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AlanSmithee' title='/pmwiki/pmwiki.php/Main/AlanSmithee' data-format='W1tBbGFuU21pdGhlZSByZW1vdmluZyB0aGVpciBuYW1lIGZyb20gdGhlIGNyZWRpdHNdXQ=='>removing their name from the credits</a>. </p><p><hr data-format='&#8212;&#8212;' /> <h2>Example subpages:</h2> </p><p><!&#8212;index&#8212;> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/AnimeAndManga' title='/pmwiki/pmwiki.php/CreatorBacklash/AnimeAndManga' data-format='Q3JlYXRvckJhY2tsYXNoL0FuaW1lQW5kTWFuZ2E='>Anime & Manga</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/ComicBooks' title='/pmwiki/pmwiki.php/CreatorBacklash/ComicBooks' data-format='Q3JlYXRvckJhY2tsYXNoL0NvbWljQm9va3M='>Comic Books</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/FanWorks' title='/pmwiki/pmwiki.php/CreatorBacklash/FanWorks' data-format='Q3JlYXRvckJhY2tsYXNoL0Zhbldvcmtz'>Fan Works</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/AnimatedFilm' title='/pmwiki/pmwiki.php/CreatorBacklash/AnimatedFilm' data-format='W1tDcmVhdG9yQmFja2xhc2gvQW5pbWF0ZWRGaWxtIEZpbG1zIOKAlCBBbmltYXRpb25dXQ=='>Films — Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/LiveActionFilm' title='/pmwiki/pmwiki.php/CreatorBacklash/LiveActionFilm' data-format='W1tDcmVhdG9yQmFja2xhc2gvTGl2ZUFjdGlvbkZpbG0gRmlsbXMg4oCUIExpdmUtQWN0aW9uXV0='>Films — Live-Action</a> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/DCExtendedUniverse' title='/pmwiki/pmwiki.php/CreatorBacklash/DCExtendedUniverse' data-format='Q3JlYXRvckJhY2tsYXNoL0RDRXh0ZW5kZWRVbml2ZXJzZQ=='>DC Extended Universe</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/JusticeLeague2017' title='/pmwiki/pmwiki.php/CreatorBacklash/JusticeLeague2017' data-format='Q3JlYXRvckJhY2tsYXNoL0p1c3RpY2VMZWFndWUyMDE3'>Justice League (2017)</a></em> </li></ul></li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/Literature' title='/pmwiki/pmwiki.php/CreatorBacklash/Literature' data-format='Q3JlYXRvckJhY2tsYXNoL3t7TGl0ZXJhdHVyZX19'>Literature</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/LiveActionTV' title='/pmwiki/pmwiki.php/CreatorBacklash/LiveActionTV' data-format='Q3JlYXRvckJhY2tsYXNoL0xpdmVBY3Rpb25UVg=='>Live-Action TV</a> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/Charmed1998' title='/pmwiki/pmwiki.php/CreatorBacklash/Charmed1998' data-format='Q3JlYXRvckJhY2tsYXNoL0NoYXJtZWQxOTk4'>Charmed (1998)</a></em> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/Music' title='/pmwiki/pmwiki.php/CreatorBacklash/Music' data-format='Q3JlYXRvckJhY2tsYXNoL3t7TXVzaWN9fQ=='>Music</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/ProfessionalWrestling' title='/pmwiki/pmwiki.php/CreatorBacklash/ProfessionalWrestling' data-format='Q3JlYXRvckJhY2tsYXNoL1Byb2Zlc3Npb25hbFdyZXN0bGluZw=='>Professional Wrestling</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/VideoGames' title='/pmwiki/pmwiki.php/CreatorBacklash/VideoGames' data-format='Q3JlYXRvckJhY2tsYXNoL1ZpZGVvR2FtZXM='>Video Games</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/Webcomics' title='/pmwiki/pmwiki.php/CreatorBacklash/Webcomics' data-format='Q3JlYXRvckJhY2tsYXNoL3t7V2ViY29taWNzfX0='>Webcomics</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/WebOriginal' title='/pmwiki/pmwiki.php/CreatorBacklash/WebOriginal' data-format='Q3JlYXRvckJhY2tsYXNoL1dlYk9yaWdpbmFs'>Web Original</a> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/ChannelAwesome' title='/pmwiki/pmwiki.php/CreatorBacklash/ChannelAwesome' data-format='Q3JlYXRvckJhY2tsYXNoL0NoYW5uZWxBd2Vzb21l'>Channel Awesome</a> </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/WesternAnimation' title='/pmwiki/pmwiki.php/CreatorBacklash/WesternAnimation' data-format='Q3JlYXRvckJhY2tsYXNoL1dlc3Rlcm5BbmltYXRpb24='>Western Animation</a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/CreatorBacklash/RealLife' title='/pmwiki/pmwiki.php/CreatorBacklash/RealLife' data-format='Q3JlYXRvckJhY2tsYXNoL1JlYWxMaWZl'>Real Life</a> </li></ul><!&#8212;/index&#8212;> </p><p><h2>Other examples:</h2> </p><p><div class="folderlabel" onclick="toggleAllFolders();">&nbsp;&nbsp;&nbsp;&nbsp;open/close all folders&nbsp; </div> </p><p><div class="folderlabel" onclick="togglefolder('folder0');">&nbsp;&nbsp;&nbsp;&nbsp;Arts&nbsp;</div><div id="folder0" class="folder" isfolder="true" style="display:block;"> <ul ><li> While on his death bed, British illustrator Aubrey Beardsley begged friends to destroy his large oeuvre of pornographic line drawings (presumably the ones he did for an edition of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Lysistrata' title='/pmwiki/pmwiki.php/Theatre/Lysistrata' data-format='VGhlYXRyZS97e0x5c2lzdHJhdGF9fQ=='>Lysistrata</a></em>). They did not comply. </li><li> Despite being one of his most famous paintings, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/VincentVanGogh' title='/pmwiki/pmwiki.php/Creator/VincentVanGogh' data-format='Q3JlYXRvci9WaW5jZW50VmFuR29naA=='>Vincent van Gogh</a> considered "The Starry Night" to be a failure. Some of his critiques can be found in his letters to his brother, Theo, and to contemporary artist Émile Bernard. </li><li> Surrealist artist <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ReneMagritte' title='/pmwiki/pmwiki.php/Creator/ReneMagritte' data-format='Q3JlYXRvci9SZW5lTWFncml0dGU='>René Magritte</a> once titled a painting of a <a class='urllink' href='http://www.royal-painting.com/images/Magritte,%20Rene/26745-Magritte,%20Rene.jpg'>pretty blue sky with clouds<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a><small>&#9674;</small> "The Curse". Scholars have debated what kind of "curse" may have prompted that title, but some believe that it refers to Magritte being thoroughly sick of how his other works featuring pretty blue skies with clouds were the ones that were most popular. </li><li> After the 1937 <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Paris' title='/pmwiki/pmwiki.php/UsefulNotes/Paris' data-format='VXNlZnVsTm90ZXMve3tQYXJpc319'>Paris</a> World's Fair pavilion of the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/SovietRussiaUkraineAndSoOn' title='/pmwiki/pmwiki.php/UsefulNotes/SovietRussiaUkraineAndSoOn' data-format='W1tVc2VmdWxOb3Rlcy9Tb3ZpZXRSdXNzaWFVa3JhaW5lQW5kU29PbiBTb3ZpZXQgVW5pb25dXQ=='>Soviet Union</a>, the sculpture <em><a class='twikilink' href='/pmwiki/pmwiki.php/Art/WorkerAndKolkhozWoman' title='/pmwiki/pmwiki.php/Art/WorkerAndKolkhozWoman' data-format='QXJ0L1dvcmtlckFuZEtvbGtob3pXb21hbg=='>Worker and Kolkhoz Woman</a></em> was installed in <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Moscow' title='/pmwiki/pmwiki.php/UsefulNotes/Moscow' data-format='VXNlZnVsTm90ZXMve3tNb3Njb3d9fQ=='>Moscow</a> in its present location, but without the original building-pedestal, which artist Vera Mukhina considered integral to the monument. She even described the new pedestal as a 'stump'. It stood here until it was dismantled in 2003 for restoration work. It was then fully restored in 2009, with a new pedestal more resembling the original World's Fair pavilion. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder1');">&nbsp;&nbsp;&nbsp;&nbsp;Automobiles&nbsp;</div><div id="folder1" class="folder" isfolder="true" style="display:block;"> <ul ><li> Charles Spencer "Spen" King, the chief engineer of the Range Rover sport-utility vehicle, designed it as a genuine off-road vehicle with more amenities than a regular Land Rover, and was deeply dismayed to see it and <span class='esc-seq' title='non-wikiword'>SUVs</span> like it <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HummerDinger' title='/pmwiki/pmwiki.php/Main/HummerDinger' data-format='W1tIdW1tZXJEaW5nZXIgZHJpdmVuIG1haW5seSBieSByaWNoIHBlb3BsZSB3aG8gbmV2ZXIgdG9vayBpdCBvZmYtcm9hZF1d'>driven mainly by rich people who never took it off-road</a>. <div class='indent'>"The 4x4 was never intended as a status symbol, but later incarnations of my design seem to be intended for that purpose. I find the people who use it as such deeply unattractive. Sadly, the 4x4 has become an alternative to a Mercedes or BMW for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UpperClassTwit' title='/pmwiki/pmwiki.php/Main/UpperClassTwit' data-format='W1tVcHBlckNsYXNzVHdpdCBwb21wb3VzLCBzZWxmLWltcG9ydGFudCBkcml2ZXJdXQ=='>pompous, self-important driver</a>. To use the 4x4 for the school run, or even in cities or towns at all, is completely stupid." </div></li><li> AC Cars, while still producing the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UpdatedRerelease' title='/pmwiki/pmwiki.php/Main/UpdatedRerelease' data-format='VXBkYXRlZFJlcmVsZWFzZQ=='>Updated Re-release</a> Cobra sports cars today, has removed mentions of their involvement in invalid carriages sponsored by Ministry of Health in the 1970s, partly <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheAllegedCar' title='/pmwiki/pmwiki.php/Main/TheAllegedCar' data-format='W1tUaGVBbGxlZ2VkQ2FyIGR1ZSB0byB0aGUgdW5yZWxpYWJpbGl0eSBvZiB0aGUgbWljcm9jYXJdXQ=='>due to the unreliability of the microcar</a> and the program ended in 2003. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder2');">&nbsp;&nbsp;&nbsp;&nbsp;Comic Strips&nbsp;</div><div id="folder2" class="folder" isfolder="true" style="display:block;"> <ul ><li> Berke Breathed: <ul ><li> He kept a great deal of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/BloomCounty' title='/pmwiki/pmwiki.php/ComicStrip/BloomCounty' data-format='Q29taWNTdHJpcC9CbG9vbUNvdW50eQ=='>Bloom County</a></em><span class='esc-seq' title='non-wikiword'>'</span>s first two years out of publication for years because he thought the strips were dated, unfunny, poorly drawn, derivative of <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Doonesbury' title='/pmwiki/pmwiki.php/ComicStrip/Doonesbury' data-format='Q29taWNTdHJpcC97e0Rvb25lc2J1cnl9fQ=='>Doonesbury</a></em>, or some combination thereof. Finally, in the late 2000s, he began releasing complete anthologies of the strip, complete with running commentary. Even in the commentary, he is highly critical of his own work, saying that he had no idea which direction the strip would take until around 1981, when Opus the penguin became a permanent cast member. </li><li> Berke's first strip, printed in his college paper, was such a great source of shame to him that he allowed only about thirty strips from it to be printed in the <em>Bloom County</em> libraries&#8212;the vast majority of which were to show the origin point of gags reused in <em>Bloom</em>. <em>The Academia Waltz</em> was collected in two volumes, and according to Breathed's bibliography on his site: "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/LostEpisode' title='/pmwiki/pmwiki.php/Main/LostEpisode' data-format='W1tMb3N0RXBpc29kZSBlQmF5IGlzIHlvdXIgb25seSBob3BlLl1d'>eBay is your only hope.</a>" When IDW (who published the other collections of Breathed's work) finally got the rights to republish <em>The Academia Waltz</em>, the cover consisted of Opus opening a box labeled "Don't <strong>EVER</strong> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SymbolSwearing' title='/pmwiki/pmwiki.php/Main/SymbolSwearing' data-format='W1tTeW1ib2xTd2VhcmluZyBAIz8hKl1d'>@#?!*</a> open this -BB", and the collection itself is titled <em>Academia Waltz and Other Profound Transgressions</em>. </li><li> In a crossover with this, literature, and animation, Berke does not like <em><a class='twikilink' href='/pmwiki/pmwiki.php/WesternAnimation/AWishForWingsThatWork' title='/pmwiki/pmwiki.php/WesternAnimation/AWishForWingsThatWork' data-format='V2VzdGVybkFuaW1hdGlvbi9BV2lzaEZvcldpbmdzVGhhdFdvcms='>A Wish for Wings that Work</a></em>, an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AnimatedAdaptation' title='/pmwiki/pmwiki.php/Main/AnimatedAdaptation' data-format='QW5pbWF0ZWRBZGFwdGF0aW9u'>Animated Adaptation</a> of his 1991 Christmas book of the same name (which in turn uses the Opus character from <em>Bloom County</em> and <em>Outland</em>). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/CalvinAndHobbes' title='/pmwiki/pmwiki.php/ComicStrip/CalvinAndHobbes' data-format='Q29taWNTdHJpcC9DYWx2aW5BbmRIb2JiZXM='>Calvin and Hobbes</a></em>: <ul ><li> One of the primary reasons <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/BillWatterson' title='/pmwiki/pmwiki.php/Creator/BillWatterson' data-format='Q3JlYXRvci9CaWxsV2F0dGVyc29u'>Bill Watterson</a> decided to stop drawing the strip in 1995 was pressure from Universal Press Syndicate to commercialize his work, with Watterson noting that if Universal wanted to, they could have licensed his characters without his permission or continue drawing the strip with a new artist, so he decided to discontinue it because he had achieved all he could in the comic strip business. Nevertheless, in spite of his efforts, numerous unauthorized products have made their way into the market, with window decals depicting Calvin praying before a cross, and taking a whizz on various automobiles' and sports teams' logos. </li><li> Within the strip itself, Watterson came to dislike the title arc of <em>Weirdos From Another Planet!</em>. He considered the Martian backgrounds too cartoony and the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GreenAesop' title='/pmwiki/pmwiki.php/Main/GreenAesop' data-format='R3JlZW5BZXNvcA=='>Green Aesop</a> too <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Anvilicious' title='/pmwiki/pmwiki.php/Main/Anvilicious' data-format='e3tBbnZpbGljaW91c319'>Anvilicious</a>. He also disliked the strip where Calvin pretended to be a god that smote his creations, since the restrictive Sunday format ruined what he planned. He even had mixed feelings about being able to design his own Sunday layouts when he realized how hard it was to come up with ideas and layouts that were easy to follow, and how the new Sunday strips took two or three times as long to draw as the old ones. </li><li> Watterson claims he regrets introducing Calvin's Uncle Max. His reasons are that Max didn't have much of an identity, he didn't bring out anything new in Calvin, and the awkwardness of Max not being able to address Calvin's parents by their first names (which Watterson, as a matter of principle, didn't want them to have). </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Dilbert' title='/pmwiki/pmwiki.php/ComicStrip/Dilbert' data-format='Q29taWNTdHJpcC97e0RpbGJlcnR9fQ=='>Dilbert</a></em>: <ul ><li> Scott Adams released a series of <em>Dilbert</em> strips that are really contrived to give Dogbert an arch-nemesis named Bingo the Cow Herding Dog in order to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' title='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' data-format='W1tFeGVjdXRpdmVNZWRkbGluZyBnaXZlIEhvbGx5d29vZCBzb21lIG1hdGVyaWFsIHRvIHdvcmsgd2l0aF1d'>give Hollywood some material to work with</a>. It would have turned the strip into something only other cartoonists like. This was during the strip's early years that focus more on Dilbert's antics at home than at work. You can read them <a class='urllink' href='http://web.archive.org/web/20030205175909/http://www.unitedmedia.com/comics/dilbert/news_and_history/html/dogbert_origin_strips.html'>here<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> In a twentieth anniversary collection, Adams included some comics he wrote for <em>Dilbert</em> as practice before trying to find a syndicate. Before listing the examples, Adams wrote "At the time, I thought puns were the highest form of humor. Forgive me." </li><li> His seventh anniversary collection ("Seven Years of Highly Defective People") includes a meandering Sunday strip captioned with the annotation "I hate this comic. I was tired." </li></ul></li><li> Despite his prolific reprinting of past <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/TheFarSide' title='/pmwiki/pmwiki.php/ComicStrip/TheFarSide' data-format='Q29taWNTdHJpcC9UaGVGYXJTaWRl'>The Far Side</a></em> strips in books, calendars, etc. there are a rather high number of <em>Far Side</em> comics, mostly from the early years, that Gary Larson doesn't like and are almost never reprinted. The epic every-strip-ever collection released in 2014 remains the only place to see them. </li><li> Before <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Garfield' title='/pmwiki/pmwiki.php/ComicStrip/Garfield' data-format='Q29taWNTdHJpcC97e0dhcmZpZWxkfX0='>Garfield</a></em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JimDavis' title='/pmwiki/pmwiki.php/Creator/JimDavis' data-format='Q3JlYXRvci9KaW1EYXZpcw=='>Jim Davis</a> did a short-lived comic called <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/GnormGnat' title='/pmwiki/pmwiki.php/ComicStrip/GnormGnat' data-format='Q29taWNTdHJpcC9Hbm9ybUduYXQ='>Gnorm Gnat</a></em>. Davis thought it was funny. Not a lot of other people did. After one editor told Davis that "no one can relate to bugs", he gave up. The only times Davis brings the comic up now is when he's mocking it as "one of his biggest mistakes". This was lampshaded in one of the <em>Garfield</em> book collections. A gag comic at the end of one book was titled "Top 10 Comic Strips Jim Davis tried before Garfield" where Number 2 on the list was... Gnorm Gnat. The number one comic strip "tried" was Garfield being a living toaster. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/JumpStart' title='/pmwiki/pmwiki.php/ComicStrip/JumpStart' data-format='Q29taWNTdHJpcC9KdW1wU3RhcnQ='>Jump Start</a></em> creator Robb Armstrong had Scott Adams, creator of <em>Dilbert</em>, provide a positive blurb for his 2016 book <em>Fearless: A Cartoonist's Guide to Life</em>, as he had long considered Adams a friend going back to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheEighties' title='/pmwiki/pmwiki.php/Main/TheEighties' data-format='VGhlRWlnaHRpZXM='>The '80s</a>. That changed in 2023 after Adams went on a racist rant on his <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/YouTube' title='/pmwiki/pmwiki.php/Platform/YouTube' data-format='UGxhdGZvcm0vWW91VHViZQ=='>YouTube</a> show that was seen by many as calling for the return of segregation. Upon hearing Adams' comments, Armstrong <a class='urllink' href='https://www.washingtonpost.com/comics/2023/02/27/scott-adams-dilbert-reactions/'>urged<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> any fans who owned his book to take a black marker and use it to cross out Adams' blurb, declaring that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ThatManIsDead' title='/pmwiki/pmwiki.php/Main/ThatManIsDead' data-format='VGhhdE1hbklzRGVhZA=='>That Man Is Dead</a> when asked to describe his former friend. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/Peanuts' title='/pmwiki/pmwiki.php/ComicStrip/Peanuts' data-format='Q29taWNTdHJpcC97e1BlYW51dHN9fQ=='>Peanuts</a></em>: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/CharlesMSchulz' title='/pmwiki/pmwiki.php/Creator/CharlesMSchulz' data-format='Q3JlYXRvci9DaGFybGVzTVNjaHVseg=='>Charles M. Schulz</a> frequently said he was somewhat embarrassed by the first few years of <em>Peanuts</em>. As a result, several hundred strips from the early 1950s were never reprinted in book form during his lifetime, only seeing the light of day via Fantagraphics' <em>Complete Peanuts</em> series. </li><li> Schulz also hated the title "Peanuts" which the syndicate imposed on him, and to the end of his life never missed an opportunity to call it "the worst title ever thought up for a comic strip." This is why the animated specials and other adaptations released in his lifetime never have "Peanuts" in the title. </li><li> Schulz grew to dislike the character Pig-Pen over the years, due to his one-joke nature and his difficult character design. What prevented the character from being written out of <em>Peanuts</em> like so many other characters that Schulz had grown bored with was the huge amount of fan-mail that he consistently received for him. It's telling that Pig-Pen's final appearance in the strip shortly before it ended had the usually proud character <a class='urllink' href='http://www.gocomics.com/peanuts/1999/09/08'>show embarrassment for his dirty nature.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li></ul></li><li> Early on, <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/PearlsBeforeSwine' title='/pmwiki/pmwiki.php/ComicStrip/PearlsBeforeSwine' data-format='Q29taWNTdHJpcC9QZWFybHNCZWZvcmVTd2luZQ=='>Pearls Before Swine</a></em> was a webcomic. Most of it was re-drawn/re-written and published to newspapers, but quite a few were also left out. Stephan Pastis republished some of those webcomic strips that were left out in a book, and spent most of the time pointing out how <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OutOfCharacter' title='/pmwiki/pmwiki.php/Main/OutOfCharacter' data-format='T3V0T2ZDaGFyYWN0ZXI='>Out of Character</a> everyone was and how bad the art was (even for his minimalist stick-figure style). </li><li> The various rights-holders for the various <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicStrip/RupertBear' title='/pmwiki/pmwiki.php/ComicStrip/RupertBear' data-format='Q29taWNTdHJpcC9SdXBlcnRCZWFy'>Rupert Bear</a></em> media pretend <em>Rupert and the Diamond Leaf</em> never existed due to a certain plot point involving racial stereotypes, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrokenAesop' title='/pmwiki/pmwiki.php/Main/BrokenAesop' data-format='W1tCcm9rZW5BZXNvcCBhcyBpdCB1bmZvcnR1bmF0ZWx5IGNvbXByb21pc2VzIHRoZSByYWNpYWwgaGFybW9ueV1d'>as it unfortunately compromises the racial harmony</a> that has always featured in the <em>Rupert</em> stories (even the characters considered <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FairForItsDay' title='/pmwiki/pmwiki.php/Main/FairForItsDay' data-format='RmFpckZvckl0c0RheQ=='>Fair for Its Day</a> have aged much better, such as Tiger Lily). This didn't stop <em>The Daily Express</em> from reprinting the story in April 2020, but with the offending plot points excised. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder3');">&nbsp;&nbsp;&nbsp;&nbsp;Music&nbsp;</div><div id="folder3" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/PhilCollins' title='/pmwiki/pmwiki.php/Music/PhilCollins' data-format='TXVzaWMvUGhpbENvbGxpbnM='>Phil Collins</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WordOfGod' title='/pmwiki/pmwiki.php/Main/WordOfGod' data-format='W1tXb3JkT2ZHb2QgcmVwb3J0ZWRseV1d'>reportedly</a> finds the <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GenesisBand' title='/pmwiki/pmwiki.php/Music/GenesisBand' data-format='TXVzaWMve3tHZW5lc2lzfEJhbmR9fQ=='>Genesis</a> video for the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TitleTrack' title='/pmwiki/pmwiki.php/Main/TitleTrack' data-format='VGl0bGVUcmFjaw=='>Title Track</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/ATrickOfTheTail' title='/pmwiki/pmwiki.php/Music/ATrickOfTheTail' data-format='TXVzaWMvQVRyaWNrT2ZUaGVUYWls'>A Trick of the Tail</a></em>, featuring a miniature Phil dancing on an upright piano while <a class='twikilink' href='/pmwiki/pmwiki.php/Music/TonyBanks' title='/pmwiki/pmwiki.php/Music/TonyBanks' data-format='TXVzaWMvVG9ueUJhbmtz'>Tony Banks</a> plays the song and the other members of the band gather around, to be the most embarrassing one of his career. A bit of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpecialEffectsFailure' title='/pmwiki/pmwiki.php/Main/SpecialEffectsFailure' data-format='U3BlY2lhbEVmZmVjdHNGYWlsdXJl'>Special Effects Failure</a> (this was 1976) didn't help matters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/JourneyBand' title='/pmwiki/pmwiki.php/Music/JourneyBand' data-format='TXVzaWMve3tKb3VybmV5fEJhbmR9fQ=='>Journey</a> was highly dissatisfied with their music video for "Separate Ways (Worlds Apart)", to the point that they refused to do any videos for their next album, <em>Raised On Radio</em>. </li><li> Fred Durst was so embarrassed by the video for <a class='twikilink' href='/pmwiki/pmwiki.php/Music/LimpBizkit' title='/pmwiki/pmwiki.php/Music/LimpBizkit' data-format='TXVzaWMvTGltcEJpemtpdA=='>Limp Bizkit</a>'s "Take A Look Around" that he banned it in the US. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/NoDoubt' title='/pmwiki/pmwiki.php/Music/NoDoubt' data-format='TXVzaWMvTm9Eb3VidA=='>No Doubt</a> have made a official statement apologizing for their questionable video to "Looking Hot" for its politically incorrect undertones. It's actually been deleted from their VEVO channel and all subsequent videos of it deleted for a rather stereotypical portrayal of Native Americans. </li><li> To this day, Sammy Hagar is practically alone in disliking <a class='twikilink' href='/pmwiki/pmwiki.php/Music/VanHalen' title='/pmwiki/pmwiki.php/Music/VanHalen' data-format='TXVzaWMvVmFuSGFsZW4='>Van Halen</a>'s <a class='urllink' href='https://www.youtube.com/watch?v=rMV-fenGP1g'>video<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for "Right Now". He wanted it to be less of a concept and more of a straightforward interpretation of the lyrics, since he had worked hard on them and wanted listeners to hear them. In fact, he was so angry that he refused to sing most of the lyrics in the video, even when the titles say "right now, we should pay attention to the lyrics." The director liked that take anyway and kept it. </li><li> Billy Squier has forever blamed the music video for his hit song "Rock Me Tonite" for bringing about the downfall of his music career, as the then-questionable and erotic content within did much to destroy his public image. Squier was so disgusted with the final product that he and his colleagues attempted to prevent the video's release, but it was too little, too late and Squier has since blamed the director for allegedly tampering with his original concept. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/GeorgeStrait' title='/pmwiki/pmwiki.php/Music/GeorgeStrait' data-format='TXVzaWMvR2VvcmdlU3RyYWl0'>George Strait</a> hated his first music video, for "You Look So Good in Love", so much that he had it withdrawn from rotation. He also largely refused to do music videos at all, to the point that only about 15 of his 100+ singles have videos, and most of the ones that do are live performances. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Music/InformationSociety' title='/pmwiki/pmwiki.php/Music/InformationSociety' data-format='TXVzaWMvSW5mb3JtYXRpb25Tb2NpZXR5'>Information Society</a>'s vocalist Kurt Harland says this about the video for "How Long": <div class='indent'> There WAS a video made for this song, with <a class='twikilink' href='/pmwiki/pmwiki.php/Music/AdamAnt' title='/pmwiki/pmwiki.php/Music/AdamAnt' data-format='TXVzaWMvQWRhbUFudA=='>Adam Ant</a> directing, but <a class='urllink' href='https://www.youtube.com/watch?v=Y4Rncz39qKY'>I really hope you never see it.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </div></li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder4');">&nbsp;&nbsp;&nbsp;&nbsp;Mythology &amp; Religion&nbsp;</div><div id="folder4" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheGreatFlood' title='/pmwiki/pmwiki.php/Main/TheGreatFlood' data-format='VGhlR3JlYXRGbG9vZA=='>The Great Flood</a> in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Literature/TheBible' title='/pmwiki/pmwiki.php/Literature/TheBible' data-format='TGl0ZXJhdHVyZS9UaGVCaWJsZQ=='>The Bible</a></em> is essentially <a class='twikilink' href='/pmwiki/pmwiki.php/Main/God' title='/pmwiki/pmwiki.php/Main/God' data-format='e3tHb2R9fQ=='>God</a> invoking this trope in regard to humanity: <div class='indent'>"<em>The LORD saw how great was man’s wickedness on earth, and how every plan devised by his mind was nothing but evil all the time. And the LORD regretted that He had made man on earth, and His heart was saddened. The LORD said, "I will blot out from the earth the men whom I created—men together with beasts, creeping things, and birds of the sky; for I regret that I made them."</em>" (Genesis 6:5-7) </div></li><li> As far as Bible translations in general, Eugene Peterson, the main translator behind the paraphrase edition called The Message, isn't very fond of that translation being used and read aloud by pastors in the pulpits during sermons. He intended for his translation to be the first translation for beginners of the Christian faith to read and then be weaned away from to other translations. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder5');">&nbsp;&nbsp;&nbsp;&nbsp;Podcasts&nbsp;</div><div id="folder5" class="folder" isfolder="true" style="display:block;"> <ul ><li> The <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/McElroyBrothers' title='/pmwiki/pmwiki.php/Creator/McElroyBrothers' data-format='Q3JlYXRvci9NY0Vscm95QnJvdGhlcnM='>McElroy Brothers</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Podcast/MyBrotherMyBrotherAndMe' title='/pmwiki/pmwiki.php/Podcast/MyBrotherMyBrotherAndMe' data-format='UG9kY2FzdC9NeUJyb3RoZXJNeUJyb3RoZXJBbmRNZQ=='>My Brother, My Brother and Me</a></em> have expressed some vitriolic distaste for the earlier episodes of their own podcast, at times suggesting that new listeners skip the first hundred or so. Aside from the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EarlyInstallmentWeirdness' title='/pmwiki/pmwiki.php/Main/EarlyInstallmentWeirdness' data-format='W1tFYXJseUluc3RhbGxtZW50V2VpcmRuZXNzIG5hdHVyYWwgYXdrd2FyZG5lc3MsIGxvd2VyIHF1YWxpdHkgYW5kIHVuZGVyZGV0ZXJtaW5lZCBkaXJlY3Rpb24gdGhhdCBhbnkgaW1wcm92aXNlZCBtZWRpYSBzdWZmZXJzIHN0YXJ0aW5nIG91dF1d'>natural awkwardness, lower quality and underdetermined direction that any improvised media suffers starting out</a>, the brothers believe they were more ignorant then, which resulted in what they consider some offensive or even meanspirited humor. They blame this partly on their limited worldviews at the time and partly on not having yet realized the audience they would reach and the impact their words would have. Their earnest efforts to communicate with listeners and willingness to apologize and do better have made up for past mistakes in their fans' eyes, but the brothers themselves are still quick to denounce their earlier work. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder6');">&nbsp;&nbsp;&nbsp;&nbsp;Puppet Films&nbsp;</div><div id="folder6" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/ChuckECheeseInTheGalaxy5000' title='/pmwiki/pmwiki.php/Film/ChuckECheeseInTheGalaxy5000' data-format='RmlsbS9DaHVja0VDaGVlc2VJblRoZUdhbGF4eTUwMDA='>Chuck E. Cheese in the Galaxy 5000</a></em>: <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Funimation' title='/pmwiki/pmwiki.php/Creator/Funimation' data-format='Q3JlYXRvci97e0Z1bmltYXRpb259fQ=='>Funimation</a> produced this video, years before they found footing as a famous anime dubbing studio (although they were dubbing <em><a class='twikilink' href='/pmwiki/pmwiki.php/Anime/DragonballZ' title='/pmwiki/pmwiki.php/Anime/DragonballZ' data-format='QW5pbWUvRHJhZ29uYmFsbFo='>Dragon Ball Z</a></em> at the time). Outside of <a class='urllink' href='http://www.animenewsnetwork.com/advertorial/2015-01-28/5-things-you-might-not-know-about-funimation/.83754'>this<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PhonyArticle' title='/pmwiki/pmwiki.php/Main/PhonyArticle' data-format='W1tQaG9ueUFydGljbGUgYWR2ZXJ0b3JpYWxdXQ=='>advertorial</a> Funimation ran on Anime News Network, they almost never bring it up. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder7');">&nbsp;&nbsp;&nbsp;&nbsp;Puppet Shows&nbsp;</div><div id="folder7" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/SesameStreet' title='/pmwiki/pmwiki.php/Series/SesameStreet' data-format='U2VyaWVzL1Nlc2FtZVN0cmVldA=='>Sesame Street</a></em>: <ul ><li> Longtime writer and puppeteer <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MuppetPerformers' title='/pmwiki/pmwiki.php/Creator/MuppetPerformers' data-format='W1tDcmVhdG9yL011cHBldFBlcmZvcm1lcnMgSm9leSBNYXp6YXJpbm9dXQ=='>Joey Mazzarino</a> (most famous for performing Murray Monster) left the show after its 46th season, unsatisfied with the changes that the show was going through. </li><li> While neither <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JimHenson' title='/pmwiki/pmwiki.php/Creator/JimHenson' data-format='Q3JlYXRvci9KaW1IZW5zb24='>Jim Henson</a> nor <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrankOz' title='/pmwiki/pmwiki.php/Creator/FrankOz' data-format='Q3JlYXRvci9GcmFua096'>Frank Oz</a> dislike <em>Sesame Street</em> (both devoted at least a few weeks a year, Jim until he died and Frank until the late 1990s, to shooting new material with their respective characters), Henson disliked how <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IAmNotSpock' title='/pmwiki/pmwiki.php/Main/IAmNotSpock' data-format='W1tJQW1Ob3RTcG9jayBpdCB0eXBlY2FzdCBoaW0gYXMgYSBjaGlsZHJlbiYjMDM5O3MgcGVyZm9ybWVyXV0='>it typecast him as a children's performer</a>, even telling creator Joan Ganz Cooney over the phone that "[she] ruined [his] life." Similarly, Oz was very hesitant to discuss it or his <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheMuppets' title='/pmwiki/pmwiki.php/Franchise/TheMuppets' data-format='W1tGcmFuY2hpc2UvVGhlTXVwcGV0cyBNdXBwZXRdXQ=='>Muppet</a> projects until recently, as he was worried that it would overshadow the work he has done as a director. </li></ul></li><li> Some longtime puppeteers (including some no longer affiliated with the chief group of <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TheMuppets' title='/pmwiki/pmwiki.php/Franchise/TheMuppets' data-format='W1tGcmFuY2hpc2UvVGhlTXVwcGV0cyBNdXBwZXRzXV0='>Muppets</a>, such as <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrankOz' title='/pmwiki/pmwiki.php/Creator/FrankOz' data-format='Q3JlYXRvci9GcmFua096'>Frank Oz</a>) supposedly expressed dissatisfaction during the production of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Film/TheMuppets2011' title='/pmwiki/pmwiki.php/Film/TheMuppets2011' data-format='RmlsbS9UaGVNdXBwZXRzMjAxMQ=='>The Muppets (2011)</a></em>, feeling that it was too serious for the Muppets. Rumor has it that former Kermit the Frog performer <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MuppetPerformers' title='/pmwiki/pmwiki.php/Creator/MuppetPerformers' data-format='W1tDcmVhdG9yL011cHBldFBlcmZvcm1lcnMgU3RldmUgV2hpdG1pcmVdXQ=='>Steve Whitmire</a> threatened to have his name taken off the film if the original ending (Tex Richman being revealed to be Kermit in disguise the whole time, as a way to bring the crew back together) had been used. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/FrankOz' title='/pmwiki/pmwiki.php/Creator/FrankOz' data-format='Q3JlYXRvci9GcmFua096'>Frank Oz</a> also expressed dissatisfaction with <a class='twikilink' href='/pmwiki/pmwiki.php/Series/TheMuppets2015' title='/pmwiki/pmwiki.php/Series/TheMuppets2015' data-format='W1tTZXJpZXMvVGhlTXVwcGV0czIwMTUgdGhlIDIwMTUgTXVwcGV0cyBUViBzZXJpZXNdXQ=='>the 2015 Muppets TV series</a>, thinking that it wasn't true to the characters. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MuppetPerformers' title='/pmwiki/pmwiki.php/Creator/MuppetPerformers' data-format='W1tDcmVhdG9yL011cHBldFBlcmZvcm1lcnMgS2V2aW4gQ2xhc2hdXQ=='>Kevin Clash</a> had some major problems with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/MuppetsTonight' title='/pmwiki/pmwiki.php/Series/MuppetsTonight' data-format='U2VyaWVzL011cHBldHNUb25pZ2h0'>Muppets Tonight</a></em>. When his character, Clifford became the host, he went through some big changes. The most particular thing he hated was that Clifford's sunglasses were removed and replaced with regular Muppet eyes. He hated it so much, that he refused to perform as Clifford again unless he had his sunglasses on. Unlike other examples, the producers <strong>did</strong> listen to this and returned Clifford to his old look after the show ended. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder8');">&nbsp;&nbsp;&nbsp;&nbsp;Radio&nbsp;</div><div id="folder8" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/HancocksHalfHour' title='/pmwiki/pmwiki.php/Radio/HancocksHalfHour' data-format='UmFkaW8vSGFuY29ja3NIYWxmSG91cg=='>Hancock's Half Hour</a></em>: <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TonyHancock' title='/pmwiki/pmwiki.php/Creator/TonyHancock' data-format='Q3JlYXRvci9Ub255SGFuY29jaw=='>Tony Hancock</a> didn't like the character of Coatsleeve Charlie from "The First Night Party", thinking the constantly sniffing character was a ghastly idea and couldn't imagine how they ever thought he was acceptable or funny. </li><li> Ray Galton and Alan Simpson had <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AndreeMelly' title='/pmwiki/pmwiki.php/Creator/AndreeMelly' data-format='Q3JlYXRvci9BbmRyZWVNZWxseQ=='>Andrée Melly</a> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FakeNationality' title='/pmwiki/pmwiki.php/Main/FakeNationality' data-format='W1tGYWtlTmF0aW9uYWxpdHkgcHV0IG9uIGEgRnJlbmNoIGFjY2VudF1d'>put on a French accent</a> in Series 2 due to the belief that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/EverythingSoundsSexierInFrench' title='/pmwiki/pmwiki.php/Main/EverythingSoundsSexierInFrench' data-format='RXZlcnl0aGluZ1NvdW5kc1NleGllckluRnJlbmNo'>Everything Sounds Sexier in French</a>, only to realise that the accent didn't work and made her hard to listen to &#8212; it was eventually dropped in Series 3. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/KennethWilliams' title='/pmwiki/pmwiki.php/Creator/KennethWilliams' data-format='Q3JlYXRvci9LZW5uZXRoV2lsbGlhbXM='>Kenneth Williams</a> often complained about the scripts in his diaries and didn't care for <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JamesRobertsonJustice' title='/pmwiki/pmwiki.php/Creator/JamesRobertsonJustice' data-format='Q3JlYXRvci9KYW1lc1JvYmVydHNvbkp1c3RpY2U='>James Robertson Justice</a>'s guest shot in "The Last of the <span class='esc-seq' title='non-wikiword'>McHancocks</span>". </li><li> After Series 4, Hancock grew tired of Galton and Simpson "writing down" &#8212; complaining that Series 4 was too sleazy as he ended up in a doss house in "Back From Holiday", in gaol four times, and that the labour exchange was too prominent. </li><li> Hancock grew to dislike the characters Williams played because he felt that audiences were simply laughing at the funny voices Williams used rather than the script itself. Williams could take a hint, he never worked with Hancock again after getting snubbed during the TV series. </li></ul></li><li> In-universe example in a sketch on <em><a class='twikilink' href='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' title='/pmwiki/pmwiki.php/Radio/JohnFinnemoresSouvenirProgramme' data-format='UmFkaW8vSm9obkZpbm5lbW9yZXNTb3V2ZW5pclByb2dyYW1tZQ=='>John Finnemore's Souvenir Programme</a></em>, which portrays Johann Pachelbel as utterly sick of his <em><a class='twikilink' href='/pmwiki/pmwiki.php/Music/PachelbelsCanon' title='/pmwiki/pmwiki.php/Music/PachelbelsCanon' data-format='W1tNdXNpYy9QYWNoZWxiZWxzQ2Fub24gQ2Fub24gaW4gRF1d'>Canon in D</a></em>, and constantly protesting that he <em>has</em> written other works. (This is <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RuleOfFunny' title='/pmwiki/pmwiki.php/Main/RuleOfFunny' data-format='UnVsZU9mRnVubnk='>Rule of Funny</a>; in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RealLife' title='/pmwiki/pmwiki.php/Main/RealLife' data-format='UmVhbExpZmU='>Real Life</a>, Pachelbel's opinion of the <em>Canon</em> is unknown, and it only achieved its current popularity in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheSeventies' title='/pmwiki/pmwiki.php/Main/TheSeventies' data-format='VGhlU2V2ZW50aWVz'>The '70s</a>, some 270 years after his death, following a 1968 recording by the Jean-François Paillard Chamber Orchestra.)<span class="notelabel" onclick="togglenote('note0bo00');"><sup>note&nbsp;</sup></span><span id="note0bo00" class="inlinefolder" isnote="true" onclick="togglenote('note0bo00');" style="cursor:pointer;font-size:smaller;display:none;">The piece was also used a lot as background music in <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/CarlSagan' title='/pmwiki/pmwiki.php/Creator/CarlSagan' data-format='Q3JlYXRvci9DYXJsU2FnYW4='>Carl Sagan</a>'s pop-astronomy hit <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/Cosmos' title='/pmwiki/pmwiki.php/Series/Cosmos' data-format='U2VyaWVzL3t7Q29zbW9zfX0='>Cosmos</a></em>, which helped it climb out of relative obscurity to become one of the half-dozen or so classical themes that <em>everybody</em> knows how to hum</span> </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder9');">&nbsp;&nbsp;&nbsp;&nbsp;Stand-up Comedy&nbsp;</div><div id="folder9" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/EddieMurphy' title='/pmwiki/pmwiki.php/Creator/EddieMurphy' data-format='Q3JlYXRvci9FZGRpZU11cnBoeQ=='>Eddie Murphy</a> came to regret his 1987 standup special <em>Raw</em> due to the misogynist and homophobic jokes throughout the set (as well as other stand-up sets his did during the 80s). He chalked up the misogyny to relationship woes, and he admitted that the homophobia and AIDS jokes were pure ignorance. To his credit, he apologized for those jokes as early as 1996 and has donated to the Elton John AIDS Foundation. <div class='indent'>"Just like the rest of the world, I am more educated about AIDS in 1996 than I was in 1981. I think it is unfair to take the words of a misinformed 21-year-old and apply them to an informed 35-year-old man. I know how serious an issue AIDS is the world over. I know that AIDS isn’t funny. It’s 1996 and I’m a lot smarter about AIDS now." </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ChrisRock' title='/pmwiki/pmwiki.php/Creator/ChrisRock' data-format='Q3JlYXRvci9DaHJpc1JvY2s='>Chris Rock</a> came to regret his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NWordPrivileges' title='/pmwiki/pmwiki.php/Main/NWordPrivileges' data-format='W1tOV29yZFByaXZpbGVnZXMgIkJsYWNrIFBlb3BsZSB2cy4gTmlnZ2FzIl1d'>"Black People vs. Niggas"</a> rant due to the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StopBeingStereotypical' title='/pmwiki/pmwiki.php/Main/StopBeingStereotypical' data-format='U3RvcEJlaW5nU3RlcmVvdHlwaWNhbA=='>Stop Being Stereotypical</a> implications, as well as the fact that a lot of actual racists were using his words to justify their bigotry, claiming to only hate <em>those</em> black people and not the "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAreACreditToYourRace' title='/pmwiki/pmwiki.php/Main/YouAreACreditToYourRace' data-format='W1tZb3VBcmVBQ3JlZGl0VG9Zb3VyUmFjZSBnb29kIG9uZXNdXQ=='>good ones</a>." </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder10');">&nbsp;&nbsp;&nbsp;&nbsp;Tabletop Games&nbsp;</div><div id="folder10" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em>: <ul ><li> Gary Gygax said that he regretted a number of rules that he felt pressured to put in various versions of <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em>, singling out psionics, the monk class and weapon speeds and effects versus armor as <a class='twikilink' href='/pmwiki/pmwiki.php/JustForFun/Egregious' title='/pmwiki/pmwiki.php/JustForFun/Egregious' data-format='SnVzdEZvckZ1bi97e2VncmVnaW91c319'>egregious</a> examples. </li><li> The sexism of 1st Edition AD&amp;D (the most infamously memetic being the lower strength caps for women rule) is likewise something which later editions' designers would like everyone to forget. </li><li> Colin <span class='esc-seq' title='non-wikiword'>McComb</span> has said as much of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OurElvesAreDifferent' title='/pmwiki/pmwiki.php/Main/OurElvesAreDifferent' data-format='W1tPdXJFbHZlc0FyZURpZmZlcmVudCBUaGUgQ29tcGxldGUgQm9vayBvZiBFbHZlc11d'>The Complete Book of Elves</a>, and <a class='urllink' href='http://forum.rpg.net/showthread.php?626446-Let-s-Read-The-Complete-Book-of-Elves/page32&amp;p=16158533#post16158533'>personally apologized for it on RPGNet<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. Though, for the record, he says the elves coming off as racist jerks <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DeliberateValuesDissonance' title='/pmwiki/pmwiki.php/Main/DeliberateValuesDissonance' data-format='W1tEZWxpYmVyYXRlVmFsdWVzRGlzc29uYW5jZSB3YXMgaW50ZW50aW9uYWwuXV0='>was intentional.</a> </li><li> When <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TSR' title='/pmwiki/pmwiki.php/Creator/TSR' data-format='Q3JlYXRvci97e1RTUn19'>TSR</a> began expanding the <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/ForgottenRealms' title='/pmwiki/pmwiki.php/TabletopGame/ForgottenRealms' data-format='VGFibGV0b3BHYW1lL0ZvcmdvdHRlblJlYWxtcw=='>Forgotten Realms</a></em> setting, one of their major pushes for doing so were "Ethnic Fantasy" focused&#8212;taking <a class='twikilink' href='/pmwiki/pmwiki.php/Main/FantasyCounterpartCulture' title='/pmwiki/pmwiki.php/Main/FantasyCounterpartCulture' data-format='e3tGYW50YXN5IENvdW50ZXJwYXJ0IEN1bHR1cmV9fQ=='>Fantasy Counterpart Culture</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HistoricalFantasy' title='/pmwiki/pmwiki.php/Main/HistoricalFantasy' data-format='SGlzdG9yaWNhbEZhbnRhc3k='>Historical Fantasy</a> to the level of using them as the basis for entire new continents on the planet. This gave players the settings of <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/KaraTur' title='/pmwiki/pmwiki.php/TabletopGame/KaraTur' data-format='VGFibGV0b3BHYW1lL0thcmFUdXI='>Kara-tur</a></em>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/TheHordelands' title='/pmwiki/pmwiki.php/TabletopGame/TheHordelands' data-format='VGFibGV0b3BHYW1lL1RoZUhvcmRlbGFuZHM='>The Hordelands</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Maztica' title='/pmwiki/pmwiki.php/TabletopGame/Maztica' data-format='VGFibGV0b3BHYW1lL3t7TWF6dGljYX19'>Maztica</a></em>. Ed Greenwood was a very vocal opponent of this decision, and his players have gone on record noting that he felt such additions were entirely missing the point of the Realms in general. He likewise opposed the general push of the Realms towards a more <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HistoricalFantasy' title='/pmwiki/pmwiki.php/Main/HistoricalFantasy' data-format='SGlzdG9yaWNhbEZhbnRhc3k='>Historical Fantasy</a> or <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SwordsAndSorcery' title='/pmwiki/pmwiki.php/Main/SwordsAndSorcery' data-format='U3dvcmRzQW5kU29yY2VyeQ=='>Swords and Sorcery</a> flavor, similar to that of <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Greyhawk' title='/pmwiki/pmwiki.php/TabletopGame/Greyhawk' data-format='VGFibGV0b3BHYW1lL3t7R3JleWhhd2t9fQ=='>Greyhawk</a></em>. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrokenBase' title='/pmwiki/pmwiki.php/Main/BrokenBase' data-format='W1tCcm9rZW5CYXNlIEZhbnMgYXJlIHNwbGl0XV0='>Fans are split</a> on whether or not they agree with him, and not helping is the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ValuesDissonance' title='/pmwiki/pmwiki.php/Main/ValuesDissonance' data-format='VmFsdWVzRGlzc29uYW5jZQ=='>Values Dissonance</a> behind such settings. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/Warhammer' title='/pmwiki/pmwiki.php/Franchise/Warhammer' data-format='RnJhbmNoaXNlL3t7V2FyaGFtbWVyfX0='>Warhammer</a></em>: <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer40000' data-format='VGFibGV0b3BHYW1lL3t7V2FyaGFtbWVyIDQwMDAwfX0='>Warhammer 40,000</a></em>: <ul ><li> In the now-defunct official Games Workshop webboard, posting anything about the Squats would typicaly result in the thread being deleted, and the thread-starter banhammered. It's a common joke that there is a special clock in GW's office counting down to a Squats re-release, but anytime someone asks the GW team to bring back Squats, <a class='urllink' href='https://www.youtube.com/watch?v=Oc0-8BBkkq4'>they have to reset the clock.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> Predictably, a segment of the fanbase has decided that Squats and Zoats were the bestest thing since sliced squig, and mourn their disappearance as further evidence of GW having lost their soul. </li><li> Games Workshop has tried to covertly resurrect the Squats in the form of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MeaningfulName' title='/pmwiki/pmwiki.php/Main/MeaningfulName' data-format='W1tNZWFuaW5nZnVsTmFtZSBEZW1pdXJnXV0='>Demiurg</a>, a race of Space Dwarves under the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScaryDogmaticAliens' title='/pmwiki/pmwiki.php/Main/ScaryDogmaticAliens' data-format='W1tTY2FyeURvZ21hdGljQWxpZW5zIFRhdSBFbXBpcmVdXQ=='>Tau Empire</a>. </li><li> The Zoats have returned in Warhammer's Storm of Magic supplement, as <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SummonMagic' title='/pmwiki/pmwiki.php/Main/SummonMagic' data-format='W1tTdW1tb25NYWdpYyBzdW1tb25hYmxlIG1vbnN0ZXIgYWxsaWVzXV0='>summonable monster allies</a>. </li><li> A number of third-party manufacturers have even begun making Warhammer-compatible "Space Dwarfs," such as the Forge Fathers by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/ManticGames' title='/pmwiki/pmwiki.php/Creator/ManticGames' data-format='Q3JlYXRvci9NYW50aWNHYW1lcw=='>Mantic Games</a>, and numerous fan-made codexes exist to make Squats compatible with the current version of the game. Games Workshop does not allow third-party figurines and fan-made codexes in official events, however they do allow vintage Squat figurines to be used as long as they are drafted and played under different, "acceptable" army's official rules (typically making Squat units into a reskin for the Imperials). </li><li> In 2022, what was pitched as an April Fool's joke turned out to be real - the Squats were announced as coming back as a full faction, called the Leagues of Votann. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Warhammer' title='/pmwiki/pmwiki.php/TabletopGame/Warhammer' data-format='VGFibGV0b3BHYW1lL3t7V2FyaGFtbWVyfX0='>Warhammer</a></em>: <ul ><li> The Firmir, a race of Cyclopean monsters that were essentially entirely excised from the fluff and had their army discontinued. Much of this might have to do with the questionable way they <a class='twikilink' href='/pmwiki/pmwiki.php/Main/RapeAsDrama' title='/pmwiki/pmwiki.php/Main/RapeAsDrama' data-format='W1tSYXBlQXNEcmFtYSByZXByb2R1Y2VdXQ=='>reproduce</a>. Recently they've gotten little minor references in the rulebook, a summoned monster in Storm of Magic and a few Forge World models, but a new book is highly unlikely. Chaos Dwarves also seemed to be going that way, but they recently started get large amounts of reference in the fluff, mostly due to their proximity to the Ogre Kingdoms and their popularity with older players. Every time there's even a hint of something new coming, everyone will declare it's the Chaos Dwarves. </li><li> The biggest example from Fantasy is doubtlessly the Pygmies (the name itself being inherently iffy not helping...), who were a faction starting in second edition. By third edition, their appearance and culture would just seem like shockingly racist caricatures of the people of the African Congo these days and they unsurprisingly ended up entirely unmentioned within the game's fluff or crunch as the years went on. A <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/BloodBowl' title='/pmwiki/pmwiki.php/TabletopGame/BloodBowl' data-format='e3tUYWJsZXRvcEdhbWUvQmxvb2QgQm93bH19'>Blood Bowl</a></em> comic mentioned them having a team that was beaten and eaten by the Amazons team who took their spot at the tournament as if to say "No, the Pygmies will never be brought back". The team being eaten in the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GaidenGame' title='/pmwiki/pmwiki.php/Main/GaidenGame' data-format='R2FpZGVuR2FtZQ=='>Gaiden Game</a> is the last mention of them. </li></ul></li></ul></li><li> Being a product of its times, there are more than a few examples of this stemming from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/OldWorldOfDarkness' title='/pmwiki/pmwiki.php/TabletopGame/OldWorldOfDarkness' data-format='VGFibGV0b3BHYW1lL09sZFdvcmxkT2ZEYXJrbmVzcw=='>Old World of Darkness</a></em>: <ul ><li> Later editions of <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/VampireTheMasquerade' title='/pmwiki/pmwiki.php/TabletopGame/VampireTheMasquerade' data-format='VGFibGV0b3BHYW1lL1ZhbXBpcmVUaGVNYXNxdWVyYWRl'>Vampire: The Masquerade</a></em> did their damnedest to sweep everything from the <em>Dirty Secrets of the Black Hand</em> supplement under the carpet. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheApocalypse' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlQXBvY2FseXBzZQ=='>Werewolf: The Apocalypse</a></em>: <ul ><li> It's probably easier to list the various Tribes who <em>weren't</em> this at some point, to the fans if not the producers, given how much of them tended to rely on ethnic or subculture stereotypes. In fact, more than one fan has suggested that this is precisely <em>why</em> the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' title='/pmwiki/pmwiki.php/Main/SpiritualSuccessor' data-format='U3Bpcml0dWFsU3VjY2Vzc29y'>Spiritual Successor</a>, <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' title='/pmwiki/pmwiki.php/TabletopGame/WerewolfTheForsaken' data-format='VGFibGV0b3BHYW1lL1dlcmV3b2xmVGhlRm9yc2FrZW4='>Werewolf: The Forsaken</a></em>, cast out all ideas of using ethnicity or subculture (feminists, the homeless, etc) as a basis for werewolf tribal cultures. </li><li> One of the most infamous would probably be the Fianna, a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Oireland' title='/pmwiki/pmwiki.php/Main/Oireland' data-format='W1t7e09pcmVsYW5kfX0gdmVyeSBzdGVyZW90eXBpY2FsbHkgQ2VsdGljIHdlcmV3b2xmIHRyaWJlXV0='>very stereotypically Celtic werewolf tribe</a> whose history in Ireland had some significant ties to the IRA. Come 9/11, terrorism didn't look so daring and dashing anymore, and the Revised edition of their tribebook <em>severely</em> downplayed the connection between the IRA to the tribe, if not condemning the group outright. </li><li> Before the Fianna's IRA connections were comparable to 9/11, the Black Furies were amongst the most embarrassing of the Tribes, being essentially a faction based on being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StrawFeminist' title='/pmwiki/pmwiki.php/Main/StrawFeminist' data-format='e3tTdHJhdyBGZW1pbmlzdH19cw=='>Straw Feminists</a> &#8212; and <em>huge</em> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hypocrite' title='/pmwiki/pmwiki.php/Main/Hypocrite' data-format='e3toeXBvY3JpdGV9fXM='>hypocrites</a> to boot. Their second edition tribal book drastically altered its flavor from its predecessor, although unlike the Fianna there was never any formal authorial apology. </li></ul></li><li> <em>World of Darkness: Gypsies</em> was embarrassing for its racist stereotypes and reliance on the whole <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MagicalRomani' title='/pmwiki/pmwiki.php/Main/MagicalRomani' data-format='TWFnaWNhbFJvbWFuaQ=='>Magical Romani</a> concept. Later sourcebooks that dealt with the Roma pointed out the book's stereotypes, and explored how actual Roma would likely deal with the supernatural. </li></ul></li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' title='/pmwiki/pmwiki.php/TabletopGame/MagicTheGathering' data-format='VGFibGV0b3BHYW1lL01hZ2ljVGhlR2F0aGVyaW5n'>Magic: The Gathering</a></em> has its share of old shames, specifically: <ul ><li> <em>Urza's Saga</em> block, which was massively overpowered and created the most unfun standard environment in history, according to Mark Rosewater the only block where "The entire team got called into the boss's office and got yelled at." To a lesser extent, any other overly format-dominating cards/archetypes. </li><li> On the other end of the spectrum there are <em>Fallen Empires</em>, <em>The Dark</em>, and especially <em>Homelands</em>, widely considered the weakest sets. The game, at the time, had been having problems with overly powerful cards, and had corrected too far in the opposite direction. <em>Fallen Empires</em> also has the distinction of being overprinted as well, making cards and packs next to worthless. </li><li> Magic originally was supposed to be played for "ante": Each player, after shuffling but before drawing their hand, took the top card of their deck and set it aside; the winner of the game got both cards. This made the game a target of anti-gambling laws, and Wizards would eventually do away with the ante rule (and ban cards that dealt with ante). Wizards tries very hard to keep that link between its game and gambling under the table (although it could be theorized that the game's strategic elements make it the perfect "gateway game" to poker, as evidenced by David Williams et al.) </li><li> A number of older cards were <em>very blatantly</em> racist, like Invoke Prejudice, which depicted a knockoff Ku Klux Klan (sheer random chance also meant that Invoke Prejudice received a database number of 1488, which would later become a neo-Nazi dogwhistle). While updated production standards ensured such cards wouldn't be created in future, they hung around as uncomfortable background facts of the game <a class='urllink' href='https://magic.wizards.com/en/articles/archive/news/depictions-racism-magic-2020-06-10'>until 2020<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, when they were banned from all official tournament play and had their art <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Unperson' title='/pmwiki/pmwiki.php/Main/Unperson' data-format='e3t1bnBlcnNvbn19ZWQ='>unpersoned</a> from Gatherer. </li><li> The banding mechanic isn't <em>as</em> hated by the design team as ante, in that cards with banding can be played in some formats, but the mechanic itself is pretty clearly never returning due to being needlessly complex and obtuse. Mark Rosewater's scale of how likely a mechanic is to return to a standard set, the Storm Scale, puts banding at 10, a level which pretty much requires divine intervention to be believable, and its even more obtuse sibling "bands with other" <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BrokeTheRatingScale' title='/pmwiki/pmwiki.php/Main/BrokeTheRatingScale' data-format='W1tCcm9rZVRoZVJhdGluZ1NjYWxlIGF0IDExXV0='>at 11</a>. </li><li> <a class='urllink' href='https://scryfall.com/card/scg/138/karona-false-god'>Karona, False God<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> was once described as "an embarrassment to card design" by head of design Mark Rosewater. </li></ul></li><li> <strong>Every</strong> trading card game gets hit with this. You have this one card that quickly becomes <a class='twikilink' href='/pmwiki/pmwiki.php/Main/GameBreaker' title='/pmwiki/pmwiki.php/Main/GameBreaker' data-format='W1tHYW1lQnJlYWtlciBleHBsb2l0ZWQgdG8gZGVhdGhdXQ=='>exploited to death</a> by the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StopHavingFunGuy' title='/pmwiki/pmwiki.php/Main/StopHavingFunGuy' data-format='W1tTdG9wSGF2aW5nRnVuR3V5IGhhcmRjb3JlIHBsYXllcnNdXQ=='>hardcore players</a>. As a result, the card deemed responsible is placed onto the banlist, never to return to normal play. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/Exalted' title='/pmwiki/pmwiki.php/TabletopGame/Exalted' data-format='VGFibGV0b3BHYW1lL3t7RXhhbHRlZH19'>Exalted</a></em> <ul ><li> The much-reviled <em>Scroll of the Monk</em>, for writer Dean Shomshak. The first thing he did upon becoming an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PromotedFanboy' title='/pmwiki/pmwiki.php/Main/PromotedFanboy' data-format='W1tQcm9tb3RlZEZhbmJveSBJbmsgTW9ua2V5XV0='>Ink Monkey</a> was apologize for writing it. </li><li> A number of the third edition's original writers, like Holden Shearer and John Mørke, have stated that in hindsight, they really wish they hadn't done about half the things that went into late second edition, because they felt the focus on high-Essence play and the spectacular and cosmic stuff papered over the pulp fantasy the game was actually supposed to be about. </li></ul></li><li> The Senet cards from <em>Cyberdark Impact</em> set from the <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/YuGiOh' title='/pmwiki/pmwiki.php/TabletopGame/YuGiOh' data-format='VGFibGV0b3BHYW1lL1l1R2lPaA=='>Yu-Gi-Oh!</a> TCG</em> for having an obscure rule created to accomodate mostly weak cards, namely that cards cannot be moved from the position they were played at on the game mat. <a class='urllink' href='https://yugiohblog.konami.com/articles/?p=4270'>Konami later admitted that the mechanic was a disaster because no one cares about card position or moving cards around, especially for convenience with the latter.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> Card-position-matters mechanics were, however, brought back with a vengeance with the introduction of Link monsters; presumably, Konami figured that making the mechanics much more central would bypass the issue. </li><li> <em><span class='esc-seq' title='non-wikiword'>deadEarth</span></em> is popular on <span class='esc-seq' title='non-wikiword'>RPGnet</span> for its hilariously <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SoBadItsGood' title='/pmwiki/pmwiki.php/Main/SoBadItsGood' data-format='U29CYWRJdHNHb29k'>So Bad, It's Good</a> "radiation manipulations". Its reputation has prompted its original author <a class='urllink' href='https://forum.rpg.net/index.php?posts/17464854'>make a post<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, where he reflects on how his 19-year-old self took his first venture into tabletop gaming too seriously where he went afterwards. </li><li> Derrick Dishaw, author of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Tabletopgame/EmpireOfSatanis' title='/pmwiki/pmwiki.php/Tabletopgame/EmpireOfSatanis' data-format='VGFibGV0b3BnYW1lL0VtcGlyZU9mU2F0YW5pcw=='>Empire of Satanis</a></em> denounced the game on his blog in 2018, calling it "an amateurish mess of cliches and something even worse- running in the opposite direction of cliche- only to hit a brick wall at top speed." </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DogsInTheVineyard' title='/pmwiki/pmwiki.php/TabletopGame/DogsInTheVineyard' data-format='VGFibGV0b3BHYW1lL0RvZ3NJblRoZVZpbmV5YXJk'>Dogs in the Vineyard</a></em> forms a fascinating example, in that it was well received by critics on launch and retains a generally positive reputation as a thoughtful examination of religion in RPG form with interesting mechanics. Its author, Vincent K. Baker, <a class='urllink' href='https://www.reddit.com/r/rpg/comments/8cattt/what_is_your_favorite_rpg_which_youve_never_played/dxksvts/'>now seems to despise it and wants to let it die<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, as he feels it doesn't clearly condemn the religious targets he was aiming at. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder11');">&nbsp;&nbsp;&nbsp;&nbsp;Theater&nbsp;</div><div id="folder11" class="folder" isfolder="true" style="display:block;"> <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/HenrikIbsen' title='/pmwiki/pmwiki.php/Creator/HenrikIbsen' data-format='Q3JlYXRvci9IZW5yaWtJYnNlbg=='>Henrik Ibsen</a> was <em>not</em> happy about having to change the ending of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/ADollsHouse' title='/pmwiki/pmwiki.php/Theatre/ADollsHouse' data-format='VGhlYXRyZS9BRG9sbHNIb3VzZQ=='>A Doll's House</a></em> for the German Production <span class="notelabel" onclick="togglenote('note1hsr3');"><sup>note&nbsp;</sup></span><span id="note1hsr3" class="inlinefolder" isnote="true" onclick="togglenote('note1hsr3');" style="cursor:pointer;font-size:smaller;display:none;">In the original ending Nora leaves her husband and children, but the actress playing Nora was against the idea of leaving her children and there was no Copyright in Germany</span>. The term he used was "barbaric atrocity". The redo is something of a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WriterCopOut' title='/pmwiki/pmwiki.php/Main/WriterCopOut' data-format='V3JpdGVyQ29wT3V0'>Writer Cop Out</a>. He also did not react well when feminists began lauding him for the play's support of their movement, which <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MisaimedFandom' title='/pmwiki/pmwiki.php/Main/MisaimedFandom' data-format='W1tNaXNhaW1lZEZhbmRvbSBoZSBkZW5pZWRdXQ=='>he denied</a>. </li><li> A similar thing happened with <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Pygmalion' title='/pmwiki/pmwiki.php/Theatre/Pygmalion' data-format='VGhlYXRyZS97e1B5Z21hbGlvbn19'>Pygmalion</a></em> - higher-ups wanted to change the ending to one in which Eliza and Higgins got married, so it could have a standard happy ending, rather than letting Eliza leave Higgins to marry Freddy. <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GeorgeBernardShaw' title='/pmwiki/pmwiki.php/Creator/GeorgeBernardShaw' data-format='Q3JlYXRvci9HZW9yZ2VCZXJuYXJkU2hhdw=='>George Bernard Shaw</a> would not be happy about <a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/MyFairLady' title='/pmwiki/pmwiki.php/Theatre/MyFairLady' data-format='W1tUaGVhdHJlL015RmFpckxhZHkgdGhlIG11c2ljYWwgYWRhcHRhdGlvbl1d'>the musical adaptation</a>. </li><li> The Broadway flop <em>1600 Pennsylvania Avenue</em> by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/LeonardBernstein' title='/pmwiki/pmwiki.php/Music/LeonardBernstein' data-format='TXVzaWMvTGVvbmFyZEJlcm5zdGVpbg=='>Leonard Bernstein</a> and <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Creator/AlanJayLerner' title='/pmwiki/pmwiki.php/Creator/AlanJayLerner' data-format='Q3JlYXRvci9BbGFuSmF5TGVybmVy'>Alan Jay Lerner</a> was Bernstein's last and least successful musical; he was so ashamed of it that he didn't let it be recorded in his lifetime. As with Saint-Saëns and "Carnival of the Animals," one number escaped the ban: "Take Care of This House." Years after Bernstein's death, a concert version was issued titled <em>A White House <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Cantata' title='/pmwiki/pmwiki.php/Main/Cantata' data-format='e3tDYW50YXRhfX0='>Cantata</a></em>. </li><li> <em>Love Life</em>, a vaguely similar (and somewhat more successful) musical <a class='createlink' rel='nofollow' href='/pmwiki/pmwiki.php/Creator/AlanJayLerner' title='/pmwiki/pmwiki.php/Creator/AlanJayLerner' data-format='Q3JlYXRvci9BbGFuSmF5TGVybmVy'>Alan Jay Lerner</a> wrote with Kurt Weill, could not be revived in Lerner's lifetime because of his personal disdain for it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OlderThanRadio' title='/pmwiki/pmwiki.php/Main/OlderThanRadio' data-format='T2xkZXJUaGFuUmFkaW8='>Older Than Radio</a>: <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/WilliamGilbert' title='/pmwiki/pmwiki.php/Creator/WilliamGilbert' data-format='Q3JlYXRvci9XaWxsaWFtR2lsYmVydA=='>William Gilbert</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Music/ArthurSullivan' title='/pmwiki/pmwiki.php/Music/ArthurSullivan' data-format='TXVzaWMvQXJ0aHVyU3VsbGl2YW4='>Arthur Sullivan</a> really came to resent their trademark comic operettas, claiming they would have liked to have been remembered for their serious works, too. </li><li> A despairing outburst by <a class='twikilink' href='/pmwiki/pmwiki.php/Music/RichardWagner' title='/pmwiki/pmwiki.php/Music/RichardWagner' data-format='TXVzaWMvUmljaGFyZFdhZ25lcg=='>Richard Wagner</a> from 1878 (while he was working on <em>Parsifal</em>), as recorded by his wife Cosima in her diary: <div class='indent'><em>Oh! I shudder at all this ado of costumes and make-up; when I reflect how characters like Kundry shall be mummed now, I'm put in mind of these disgusting artists' parties, and after creating the invisible orchestra I want to invent the invisible theatre! And the inaudible orchestra.</em> </div></li><li> An <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InUniverse' title='/pmwiki/pmwiki.php/Main/InUniverse' data-format='SW5Vbml2ZXJzZQ=='>In-Universe</a> example occurs in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/LongDaysJourneyIntoNight' title='/pmwiki/pmwiki.php/Theatre/LongDaysJourneyIntoNight' data-format='VGhlYXRyZS9Mb25nRGF5c0pvdXJuZXlJbnRvTmlnaHQ='>Long Day's Journey Into Night</a></em>. James Tyrone, the patriarch of the Tyrone family, remembers his days as a classical actor in his youth who Edwin Booth (the greatest Shakespearean actor of his day) praised as having remarkable talent. However, rather than pursue an artistic career, James instead purchased the rights to a "vehicle play" that allowed him great financial success by simply playing the same role repeatedly. While it made him and his family rich, it also stripped him of his genuine acting ability and rendered him a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JadedWashout' title='/pmwiki/pmwiki.php/Main/JadedWashout' data-format='SmFkZWRXYXNob3V0'>Jaded Washout</a> who bitterly regrets the choice he made. </li><li> In-universe in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/FlyByNightMusical' title='/pmwiki/pmwiki.php/Theatre/FlyByNightMusical' data-format='VGhlYXRyZS9GbHlCeU5pZ2h0TXVzaWNhbA=='>Fly by Night</a></em>. Joey Storms has so little confidence in his writing ability that his producers banned him from his own shows for distracting the audience with loud yawns and groans of despair. He's also frustrated by the fact that nobody dares criticize his work due to how many successful playwrights are in his family. </li><li> <em>What's Up?</em>, a 1943 Broadway musical starring Jimmy Savo as a rajah forced to quarter in a girls' school, was the second musical written by <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/LernerAndLoewe' title='/pmwiki/pmwiki.php/Creator/LernerAndLoewe' data-format='Q3JlYXRvci9MZXJuZXJBbmRMb2V3ZQ=='>Lerner and Loewe</a>, and their first full collaboration. Unlike their previous musical <em>Life of the Party</em> (whose lyrics were not by Lerner), the production made it into New York, though for only eight weeks. Lerner later called it "ill-advised," and Loewe quipped, "<em>What's Up?</em> Obviously, nothing was. It was awful." <em>The Lerner &amp; Loewe Songbook</em> includes no songs from this show. </li><li> <em>Prettybelle</em>, a musical in 1971 based on a black comic novel by Jean Arnold it's about a sex crazed wife of a bigoted sheriff in the south who after his death sleeps around and donates to the NAACP. It was so badly received that it closed before Broadway, it was a shame for <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AngelaLansbury' title='/pmwiki/pmwiki.php/Creator/AngelaLansbury' data-format='Q3JlYXRvci9BbmdlbGFMYW5zYnVyeQ=='>Angela Lansbury</a> as she wanted to work with 'Gower Champion'. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AndrewRannells' title='/pmwiki/pmwiki.php/Creator/AndrewRannells' data-format='W1tDcmVhdG9yL0FuZHJld1Jhbm5lbGxzIEFuZHJldyBSYW5uZWxsc11d'>Andrew Rannells</a> <a class='urllink' href='http://www.lazarusrising.com/post/79991304801/these-days-ucb-upright-citizens-brigade-theater'>has said (at 6:26)<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that appearing in a porn or a snuff film would have been less traumatic than playing James in <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/PokemonLive' title='/pmwiki/pmwiki.php/Theatre/PokemonLive' data-format='W1tUaGVhdHJlL1Bva2Vtb25MaXZlIFBva8OpbW9uIExpdmVdXQ=='>Pokémon Live</a></em>. <div class='indent'> And you know what’s weird? Even at 21, when I was like cast in Pokémon Live, I was like 'I'm going to fucking regret this every day of my life.' <a class='twikilink' href='/pmwiki/pmwiki.php/Main/IWasYoungAndNeededTheMoney' title='/pmwiki/pmwiki.php/Main/IWasYoungAndNeededTheMoney' data-format='W1tJV2FzWW91bmdBbmROZWVkZWRUaGVNb25leSBCdXQgSSB3YXMgc28gcG9vciB0aGF0IEkgd2FzIGxpa2UgJiMwMzk7ZWgsIGZ1Y2sgaXQuJiMwMzk7XV0='>But I was so poor that I was like 'eh, fuck it.'</a> </div></li><li> In the book <em>Nothing Like a Dame</em>, <a class='twikilink' href='/pmwiki/pmwiki.php/Music/AudraMcDonald' title='/pmwiki/pmwiki.php/Music/AudraMcDonald' data-format='TXVzaWMvQXVkcmFNY0RvbmFsZA=='>Audra McDonald</a> is shown to not necessarily be <em>embarrassed</em> by <em><a class='twikilink' href='/pmwiki/pmwiki.php/Theatre/Ragtime' title='/pmwiki/pmwiki.php/Theatre/Ragtime' data-format='VGhlYXRyZS97e1JhZ3RpbWV9fQ=='>Ragtime</a></em> (it did win her her third Tony), but that the experience was so emotionally draining she can't even watch other productions of it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/PeterSallis' title='/pmwiki/pmwiki.php/Creator/PeterSallis' data-format='Q3JlYXRvci9QZXRlclNhbGxpcw=='>Peter Sallis</a>, Jane Freeman, and Alan J. W. Bell all didn't like the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ScreenToStageAdaptation' title='/pmwiki/pmwiki.php/Main/ScreenToStageAdaptation' data-format='U2NyZWVuVG9TdGFnZUFkYXB0YXRpb24='>Screen-to-Stage Adaptation</a> of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Series/LastOfTheSummerWine' title='/pmwiki/pmwiki.php/Series/LastOfTheSummerWine' data-format='U2VyaWVzL0xhc3RPZlRoZVN1bW1lcldpbmU='>Last of the Summer Wine</a></em>. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder12');">&nbsp;&nbsp;&nbsp;&nbsp;Theme Parks&nbsp;</div><div id="folder12" class="folder" isfolder="true" style="display:block;"> <ul ><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Ride/FastAndFuriousSupercharged' title='/pmwiki/pmwiki.php/Ride/FastAndFuriousSupercharged' data-format='UmlkZS9GYXN0QW5kRnVyaW91c1N1cGVyY2hhcmdlZA=='>Fast & Furious: Supercharged</a></em>, upon opening in 2018, was widely lambasted as one of the worst rides that <a class='twikilink' href='/pmwiki/pmwiki.php/Ride/UniversalStudios' title='/pmwiki/pmwiki.php/Ride/UniversalStudios' data-format='UmlkZS9Vbml2ZXJzYWxTdHVkaW9z'>Universal Studios</a> Orlando had ever built, earning an acidic reception from not just theme park enthusiasts but even from casual guests that was enough to <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TrendKiller' title='/pmwiki/pmwiki.php/Main/TrendKiller' data-format='W1tUcmVuZEtpbGxlciBzdG9wIFVuaXZlcnNhbCBmcm9tIGJ1aWxkaW5nIG1vcmUgbW90aW9uIHNpbXVsYXRvciByaWRlc11d'>stop Universal from building more motion simulator rides</a> and start relying more on tangible props and dynamic ride vehicles again. Thierry Coup, the senior vice president and chief creative officer of Universal Creative, has gone on record stating that he considers not stopping senior management from building <em>Supercharged</em> as the biggest mistake of his career. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder13');">&nbsp;&nbsp;&nbsp;&nbsp;Toys&nbsp;</div><div id="folder13" class="folder" isfolder="true" style="display:block;"> <ul ><li> As reported by the book <em>Brick by Brick</em>, certain unnamed higher-ups at <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/LEGO' title='/pmwiki/pmwiki.php/Franchise/LEGO' data-format='RnJhbmNoaXNlL3t7TEVHT319'>LEGO</a> felt this way about their non-traditional series like <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Bionicle' title='/pmwiki/pmwiki.php/Toys/Bionicle' data-format='VG95cy97e0Jpb25pY2xlfX0='>BIONICLE</a></em>, feeling its story-driven nature, ball joint-based building system, and at times overly dark and violent story stood against everything the company represented (some of these were also major concerns regarding their <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarWars' title='/pmwiki/pmwiki.php/Franchise/StarWars' data-format='RnJhbmNoaXNlL1N0YXJXYXJz'>Star Wars</a></em> sets). Within the <em>BIONICLE</em> franchise itself, writer Greg Farshtey hated Vakama's forced betrayal-arc in the 2005 plot, which was pushed by the team producing that year's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DirectToVideo' title='/pmwiki/pmwiki.php/Main/DirectToVideo' data-format='RGlyZWN0VG9WaWRlbw=='>Direct to Video</a> movie <em>Web of Shadows</em>. Greg allegedly yelled at them but his arguments were ignored, and when he had to fit the arc into his book series, he rewrote Vakama's motives significantly. Concept artist and story consultant Christian Faber also felt that the franchise had been getting stale by 2005 and proposed a radical new direction. And as revealed by internal documentation acquired by fans in 2024, some of the creators allegedly had harsh comments regarding aspects of the 2009 film <em>The Legend Reborn</em> during its development, though exact details were considered too sensitive to share publicly. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/LaurenFaust' title='/pmwiki/pmwiki.php/Creator/LaurenFaust' data-format='Q3JlYXRvci9MYXVyZW5GYXVzdA=='>Lauren Faust</a> doesn't hate <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/MilkyWayAndTheGalaxyGirls' title='/pmwiki/pmwiki.php/Toys/MilkyWayAndTheGalaxyGirls' data-format='VG95cy9NaWxreVdheUFuZFRoZUdhbGF4eUdpcmxz'>Milky Way and the Galaxy Girls</a></em> (far from it, actually), but she dislikes their designs and has expressed a desire to redesign them (they were created in the early 2000s, and she's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtEvolution' title='/pmwiki/pmwiki.php/Main/ArtEvolution' data-format='W1tBcnRFdm9sdXRpb24gZGV2ZWxvcGVkIGFzIGFuIGFydGlzdF1d'>developed as an artist</a> since then). </li><li> A lot of the creative teams behind the various entries of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/TransformersAlignedUniverse' title='/pmwiki/pmwiki.php/Franchise/TransformersAlignedUniverse' data-format='RnJhbmNoaXNlL1RyYW5zZm9ybWVyc0FsaWduZWRVbml2ZXJzZQ=='>Transformers Aligned Universe</a></em> didn't want their work in the Aligned continuity in the first place, which goes to explain a lot of the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BroadStrokes' title='/pmwiki/pmwiki.php/Main/BroadStrokes' data-format='W1tCcm9hZFN0cm9rZXMgY3JlYXRpdmUgbGljZW5zZV1d'>creative license</a> and <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuitySnarl' title='/pmwiki/pmwiki.php/Main/ContinuitySnarl' data-format='W1tDb250aW51aXR5U25hcmwgdmFyaW91cyBjb250aW51aXR5IGlzc3Vlc11d'>various continuity issues</a> between each entry. By the time <em>Prime</em> ended, the Binder of Revelation, the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/UniverseBible' title='/pmwiki/pmwiki.php/Main/UniverseBible' data-format='VW5pdmVyc2VCaWJsZQ=='>Universe Bible</a>, had ended up completely ignored (and even before then, the IDW comics had already established too many character backstories for it to have been feasible to use anyway). </li><li> In spite of the brief success of the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Poopsie' title='/pmwiki/pmwiki.php/Toys/Poopsie' data-format='VG95cy97e1Bvb3BzaWV9fQ=='>Poopsie</a></em> toyline, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MGAEntertainment' title='/pmwiki/pmwiki.php/Creator/MGAEntertainment' data-format='Q3JlYXRvci9NR0FFbnRlcnRhaW5tZW50'>MGA Entertainment</a> is all but outright stated to have regretted making the franchise. As of 2022, the MGA website no longer makes any mention of <em>Poopsie</em> and the official <span class='esc-seq' title='non-wikiword'>YouTube</span> channel is private (so far the only MGA <span class='esc-seq' title='non-wikiword'>YouTube</span> channel to be so as official videos from other discontinued toylines such as <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/Bratzillaz' title='/pmwiki/pmwiki.php/Toys/Bratzillaz' data-format='VG95cy97e0JyYXR6aWxsYXp9fQ=='>Bratzillaz</a></em> and <em><a class='twikilink' href='/pmwiki/pmwiki.php/Toys/NoviStars' title='/pmwiki/pmwiki.php/Toys/NoviStars' data-format='VG95cy9Ob3ZpU3RhcnM='>Novi Stars</a></em> are still up). </li><li> Just about all the creatives involved in the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/MastersOfTheUniverse' title='/pmwiki/pmwiki.php/Franchise/MastersOfTheUniverse' data-format='RnJhbmNoaXNlL01hc3RlcnNPZlRoZVVuaXZlcnNl'>Masters of the Universe</a></em> toyline despised the name "Masters of the Universe." They initially wanted a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ProtagonistTitle' title='/pmwiki/pmwiki.php/Main/ProtagonistTitle' data-format='UHJvdGFnb25pc3RUaXRsZQ=='>Protagonist Title</a>, but switched to the name "Lords of Power" due to believing they needed to sell the other characters. Then <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' title='/pmwiki/pmwiki.php/Main/ExecutiveMeddling' data-format='RXhlY3V0aXZlTWVkZGxpbmc='>Executive Meddling</a> demanded a switch away from that name, due to believing it sounded "religious." "Masters of the Universe" was a name they came up basically last-minute, and they felt it sounded terrible. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder14');">&nbsp;&nbsp;&nbsp;&nbsp;Web Animation&nbsp;</div><div id="folder14" class="folder" isfolder="true" style="display:block;"> <ul ><li> Jon Graham, creator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/ArbyNTheChief' title='/pmwiki/pmwiki.php/WebVideo/ArbyNTheChief' data-format='V2ViVmlkZW8vQXJieU5UaGVDaGllZg=='>Arby 'n' the Chief</a></em>, stated on his blog while working on Season 6 that since learning some things in film school, he now looks back on the first 3 seasons of the series with regret due to how unrealistic and overly-silly they are in comparison to his work on the more drama-based series it became towards its end. As a result, he implored fans to simply disregard the events of the earlier season for said reason. This however made the series's abundant plotholes <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuitySnarl' title='/pmwiki/pmwiki.php/Main/ContinuitySnarl' data-format='W1tDb250aW51aXR5U25hcmwgdGhhdCBtdWNoIG1vcmUgY29uZnVzaW5nIGFuZCB1bmV4cGxhaW5hYmxlXV0='>that much more confusing and unexplainable</a>. </li><li> Misteroo of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Arfenhouse' title='/pmwiki/pmwiki.php/WebAnimation/Arfenhouse' data-format='V2ViQW5pbWF0aW9uL3t7QXJmZW5ob3VzZX19'>Arfenhouse</a></em> fame had the message "I despise my creations" plastered all over the Disaster Labs website. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Benthelooney' title='/pmwiki/pmwiki.php/WebAnimation/Benthelooney' data-format='V2ViQW5pbWF0aW9uL3t7QmVudGhlbG9vbmV5fX0='>Benthelooney</a> disowns every video that he has made during the first season of his Rant series. Before he started using a script, and also disowns a fair amount of his pre-cancellation rants. </li><li> Matt Wilson, creator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/BonusStage' title='/pmwiki/pmwiki.php/WebAnimation/BonusStage' data-format='V2ViQW5pbWF0aW9uL0JvbnVzU3RhZ2U='>Bonus Stage</a></em>, seems to hate his most famous creation, or at least, all of the fans. He had stated after the end of the series that he hardly, if ever, plays video games any more. Also, he is embarassed by the poor animation quality of many of the episodes, and doesn't find a lot of the jokes funny anymore. </li><li> Not the straightest example, but Brian Kendall has apparently a love/hate relationship with that one flash movie he made, <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheDementedCartoonMovie' title='/pmwiki/pmwiki.php/WebAnimation/TheDementedCartoonMovie' data-format='V2ViQW5pbWF0aW9uL1RoZURlbWVudGVkQ2FydG9vbk1vdmll'>The Demented Cartoon Movie</a></em>. Much of the "hate" part comes from the amount of effort he thought he could put more into this movie. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/Platform/GoAnimate' title='/pmwiki/pmwiki.php/Platform/GoAnimate' data-format='UGxhdGZvcm0ve3tHb0FuaW1hdGV9fQ=='>GoAnimate</a></em>: <span class='esc-seq' title='non-wikiword'>SchinkiD</span> made a <a class='urllink' href='https://www.youtube.com/watch?v=czykLWNQKb8'>video<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> apology for making his (now-deleted) NSFW Childish Dad video where <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Manchild' title='/pmwiki/pmwiki.php/Main/Manchild' data-format='W1t7e01hbmNoaWxkfX0gRGF2ZV1d'>Dave</a> rapes Emma, who is a minor. However, after discovering the video on the Internet, peoples started harassing <span class='esc-seq' title='non-wikiword'>SchinkiD</span> over it, and he was banned from various Discord servers due to that video. Because of that video, <span class='esc-seq' title='non-wikiword'>SchinkiD</span> has sworn that he'll never make a video like that again, and has had to retire from the <span class='esc-seq' title='non-wikiword'>GoAnimate</span> community to try to move on from the video incident. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' title='/pmwiki/pmwiki.php/WebAnimation/HomestarRunner' data-format='V2ViQW5pbWF0aW9uL0hvbWVzdGFyUnVubmVy'>Homestar Runner</a></em> parodies it with this comment: <div class='indent'><strong>Strong Bad:</strong> You internet types ruined Trogdor! Just like you did zombies, pirates, ninjas, and Strong Bad! Er, wait, no. Yeah! </div></li><li> Robert Benfer seems to have grown into this as his <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/KlayWorld' title='/pmwiki/pmwiki.php/WebAnimation/KlayWorld' data-format='V2ViQW5pbWF0aW9uL3t7S2xheVdvcmxkfX0='>KlayWorld</a></em> series drew to a close. While it was clear he enjoyed doing it for a number of years, he eventually changed the name of his <span class='esc-seq' title='non-wikiword'>YouTube</span> channel and stopped producing these videos completely, despite their popularity. In a video he released explaining that the series was going to end, he sounds exhausted with the Klay World series and mentions that the only reason he kept making them was to fund his other projects. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/FreezeFlame' title='/pmwiki/pmwiki.php/WebAnimation/FreezeFlame' data-format='V2ViQW5pbWF0aW9uL3t7RnJlZXplRmxhbWV9fTIy'>FreezeFlame22</a> has gone on to state how much he regrets <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheKoopaKids' title='/pmwiki/pmwiki.php/WebAnimation/TheKoopaKids' data-format='V2ViQW5pbWF0aW9uL1RoZUtvb3BhS2lkcw=='>The Koopa Kids</a></em>, the first series he ever made when he was very young (13 when it started and 16 by the time it ended). The series ran for three seasons from 2013 to 2016, and while it amassed a decent fanbase, <span class='esc-seq' title='non-wikiword'>FreezeFlame22</span> came to dislike his own creation, regarding it is a poorly written embarrassment and regretting many of the decisions he took with it, such as the terrible writing for the characters (especially <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DesignatedHero' title='/pmwiki/pmwiki.php/Main/DesignatedHero' data-format='W1tEZXNpZ25hdGVkSGVybyB0aGUgS29vcGEgZmFtaWx5IGJlaW5nIHBvcnRyYXllZCBhcyB0aGUgZ29vZCBndXlzIGV2ZW4gdGhvdWdoIHRoZXkgYWxsIGNvbWUgb2ZmIGFzIHRlcnJpYmxlIHBlb3BsZSBtb3N0IG9mIHRoZSB0aW1lc11d'>the Koopa family being portrayed as the good guys even though they all come off as terrible people most of the times</a>), the crude visuals and voice acting, non-sensical lore and plotlines, and comedy that feels forced and unfunny (some of which hasn't aged the best) among other things. Because of this, Freeze decided to cancel the series in 2016, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityReboot' title='/pmwiki/pmwiki.php/Main/ContinuityReboot' data-format='W1tDb250aW51aXR5UmVib290IHJlYm9vdGluZ11d'>rebooting</a> it a year later as <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/BowsersKoopalings' title='/pmwiki/pmwiki.php/WebAnimation/BowsersKoopalings' data-format='V2ViQW5pbWF0aW9uL0Jvd3NlcnNLb29wYWxpbmdz'>Bowser's Koopalings</a></em>, a project which he is much more satisfied with. </li><li> <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Kurzgesagt' title='/pmwiki/pmwiki.php/WebAnimation/Kurzgesagt' data-format='V2ViQW5pbWF0aW9uL3t7S3Vyemdlc2FndH19'>Kurzgesagt</a></em>: <ul ><li> Their videos on the Refugee Crisis and Addiction to the degree where they removed them both, as discussed in <a class='urllink' href='https://www.youtube.com/watch?v=JtUAAXe_0VI'>"Can You Trust Kurzgesagt Videos?"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. </li><li> To a lesser extent, their original "Limits of Humanity" video. While it didn't get taken down because most of the astrophysicists said the error that bugged them so much didn't matter<span class="notelabel" onclick="togglenote('note2riac');"><sup>note&nbsp;</sup></span><span id="note2riac" class="inlinefolder" isnote="true" onclick="togglenote('note2riac');" style="cursor:pointer;font-size:smaller;display:none;">They originally said that travelling outside the Local Group was impossible; theoretically it can still be done, it's just unlikely we'll ever pull it off.</span>, they still decided to remake the video and pin the remake in the comments of the original video. </li><li> Their video on the Workout Paradox was criticized for oversimplifying the subject on why exercise allegedly doesn't help in losing weight as efficiently as people would think. <a class='urllink' href='https://www.facebook.com/share/p/62wq3qjJ4pUczNfW/'>The team then admitted on Facebook<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that they <em>did</em> end up oversimplifying the topic for a 10-minute video and apologized for it, so they plan to revise the script and update it. </li></ul></li><li> Dom Fera, of <a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/TheLazerCollection' title='/pmwiki/pmwiki.php/WebAnimation/TheLazerCollection' data-format='V2ViQW5pbWF0aW9uL1RoZUxhemVyQ29sbGVjdGlvbg=='>The Lazer Collection</a> fame. The series often completely overshadows the rest of his work. He expressed this sentiment in <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StylisticSuck' title='/pmwiki/pmwiki.php/Main/StylisticSuck' data-format='W1tTdHlsaXN0aWNTdWNrIExhemVyIENvbGxlY3Rpb24gNF1d'>Lazer Collection 4</a>. That said, he doesn't <em>hate</em> the Lazer Collection, he just thought it was ridiculous that people expected him to put out 4 so soon after 3. </li><li> Jacob Lenard, creator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/Mugman' title='/pmwiki/pmwiki.php/WebAnimation/Mugman' data-format='V2ViQW5pbWF0aW9uL3t7TXVnbWFufX0='>Mugman</a></em>, suffered from creative burnout in the series' final years and grew to dislike much of the earlier episodes. Several changes were made in the final episodes, such as the removal of longtime characters Teanna, Johnny and Papa, complete retooling of character designs and character dynamics and a re-make of an earlier episode. Eventually, after growing tired of the aimless direction of the series and fan backlash, brought the series to a close. Mugman would briefly be brought back in "Welcome to Wedgewood" shortly after the original series' cancellation, but that show would also be cancelled just after one episode due to Lenard's dissatisfaction with it. </li><li> The <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/ObjectLockdown' title='/pmwiki/pmwiki.php/WebAnimation/ObjectLockdown' data-format='V2ViQW5pbWF0aW9uL09iamVjdExvY2tkb3du'>Object Lockdown</a></em> team really hates Drago, especially series creator Wuggolo. They felt that he didn't really fit in the show's cast despite the fact he's a dragon action figure. No wonder they sent him on a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LongBusTrip' title='/pmwiki/pmwiki.php/Main/LongBusTrip' data-format='TG9uZ0J1c1RyaXA='>Long Bus Trip</a> in "The Cream of the Crop." </li><li> Burnie Burns has come to regret rushing season 3 of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/RedVsBlue' title='/pmwiki/pmwiki.php/WebAnimation/RedVsBlue' data-format='V2ViQW5pbWF0aW9uL1JlZFZzQmx1ZQ=='>Red vs. Blue</a></em> so they'd change to <em><a class='twikilink' href='/pmwiki/pmwiki.php/Videogame/Halo2' title='/pmwiki/pmwiki.php/Videogame/Halo2' data-format='VmlkZW9nYW1lL0hhbG8y'>Halo 2</a></em> the same day the game came out, specially at how overworked he got. Two of his replacements had moments, with Miles Luna regretting <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WorfHadTheFlu' title='/pmwiki/pmwiki.php/Main/WorfHadTheFlu' data-format='W1tXb3JmSGFkVGhlRmx1IGluanVyaW5nIENhcm9saW5hJiMwMzk7cyBsZWcgdG8gc2lkZWxpbmUgaGVyXV0='>injuring Carolina's leg to sideline her</a> in Season 12, and Joe Nicolosi coming to hate how in Season 15 he made VIC's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HeroicSacrifice' title='/pmwiki/pmwiki.php/Main/HeroicSacrifice' data-format='SGVyb2ljU2FjcmlmaWNl'>Heroic Sacrifice</a> a parody of Epsilon's in season 13. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/SethMacFarlane' title='/pmwiki/pmwiki.php/Creator/SethMacFarlane' data-format='Q3JlYXRvci9TZXRoTWFjRmFybGFuZQ=='>Seth MacFarlane</a> would claim <a class='urllink' href='https://www.reddit.com/r/IAmA/comments/70bf9u/i_am_seth_macfarlane_back_for_a_new_and_better_go/dn1ylww/?utm_source=reddit&amp;utm_medium=web2x&amp;context=3'>in a Reddit AMA<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/SethMacfarlanesCavalcadeOfCartoonComedy' title='/pmwiki/pmwiki.php/WebAnimation/SethMacfarlanesCavalcadeOfCartoonComedy' data-format='V2ViQW5pbWF0aW9uL1NldGhNYWNmYXJsYW5lc0NhdmFsY2FkZU9mQ2FydG9vbkNvbWVkeQ=='>Seth MacFarlane's Cavalcade of Cartoon Comedy</a></em> was his least favourite project, feeling that he didn't get to put as much time in it as he should have in order for it to work. </li><li> Alvin-Earthworm, creator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebAnimation/SuperMarioBrosZ' title='/pmwiki/pmwiki.php/WebAnimation/SuperMarioBrosZ' data-format='V2ViQW5pbWF0aW9uL1N1cGVyTWFyaW9Ccm9zWg=='>Super Mario Bros. Z</a></em>, has been incredibly annoyed by fans constantly asking him to work on new episodes, to the point where he has completely stopped working on the series. He claims that it's <em>not</em> forever. He wasn't lying. He's started making him again and most of his fans are listening, seeing as it seemed like they made him quit the Internet. He still updates his <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/DeviantArt' title='/pmwiki/pmwiki.php/Platform/DeviantArt' data-format='UGxhdGZvcm0vRGV2aWFudEFydA=='>DeviantArt</a> account, although you may wish to be <a class='twikilink' href='/pmwiki/pmwiki.php/MediaNotes/FurryFandom' title='/pmwiki/pmwiki.php/MediaNotes/FurryFandom' data-format='W1tNZWRpYU5vdGVzL0Z1cnJ5RmFuZG9tIGNhdXRpb3VzIGJlZm9yZSBvYnNlcnZpbmcgaXQuXV0='>cautious before observing it.</a> The comments sections still partially consist of SMBZ fans asking for more. He created a second account as well. His first post stated that so much as mentioning SMBZ on that account is a blockable offense. </li></ul></div> </p><p><div class="folderlabel" onclick="togglefolder('folder15');">&nbsp;&nbsp;&nbsp;&nbsp;Miscellaneous&nbsp;</div><div id="folder15" class="folder" isfolder="true" style="display:block;"> <ul ><li> Vincent Connare, designer of the <a class='twikilink' href='/pmwiki/pmwiki.php/MediaNotes/Fonts' title='/pmwiki/pmwiki.php/MediaNotes/Fonts' data-format='W1tNZWRpYU5vdGVzL3t7Rm9udHN9fSAiQ29taWMgU2FucyIgdHlwZWZhY2VdXQ=='>"Comic Sans" typeface</a>, <a class='urllink' href='http://online.wsj.com/article/SB123992364819927171.html?mod=googlenews_wsj'>sympathizes with its detractors.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> Interestingly, he "credits" the lettering on <em><a class='twikilink' href='/pmwiki/pmwiki.php/ComicBook/Watchmen' title='/pmwiki/pmwiki.php/ComicBook/Watchmen' data-format='Q29taWNCb29rL3t7V2F0Y2htZW59fQ=='>Watchmen</a></em> (done by artist Dave Gibbons) with part of the inspiration for the font. Dave Gibbons is... <a class='urllink' href='http://watchmencomicmovie.com/101309-comics-illustrator-dave-gibbons-interview.php'>conflicted<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> about it. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/DeviantArt' title='/pmwiki/pmwiki.php/Platform/DeviantArt' data-format='UGxhdGZvcm0vRGV2aWFudEFydA=='>DeviantArt</a> <ul ><li> There's at least one example of an artist being rather disappointed that they got a Daily Deviation... on a joke piece they made ABOUT Daily Deviations. Understandable in that they had so many examples of attractive, interesting art in their journal that had always been overlooked. </li><li> Moderately-popular <a class='twikilink' href='/pmwiki/pmwiki.php/Platform/DeviantArt' title='/pmwiki/pmwiki.php/Platform/DeviantArt' data-format='UGxhdGZvcm0vRGV2aWFudEFydA=='>DeviantArt</a> cartoonist <span class='esc-seq' title='non-wikiword'>BrokenTeapot</span> initially used to draw comics and characters involving kink-driven material, mostly related to Hypnofetishism as either his own pieces or fan-commissions. Somewhere along the line he has since <a class='urllink' href='http://brokenteapot.deviantart.com/art/Past-artwork-215938154'>become ashamed of them in general<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, criticized the attraction and attention he had gotten from said fetishes, and went on to draw almost predominantly video game-related parody one-page comics. Later, he would begin a Castlevania-inspired spoof called "Nosfera" which become relatively popular. Soon after eventually finishing the ongoing comic, he would go on to write a surprising post about how it "sucked" and stated he would begin doing it over. He's currently in the process of doing just this. </li><li> Similar to <span class='esc-seq' title='non-wikiword'>BrokenTeapot</span>, cartoonist Tom Preston (creator of <em><a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/SoYoureACartoonist' title='/pmwiki/pmwiki.php/Webcomic/SoYoureACartoonist' data-format='V2ViY29taWMvU29Zb3VyZUFDYXJ0b29uaXN0'>So... You're a Cartoonist?</a></em> fame) used to go under the pseudonym "Catty N" and drew a lot of <a class='twikilink' href='/pmwiki/pmwiki.php/Main/BalloonBelly' title='/pmwiki/pmwiki.php/Main/BalloonBelly' data-format='W1tCYWxsb29uQmVsbHkgaW5mbGF0aW9uIGZldGlzaCBhcnRdXQ=='>inflation fetish art</a> during his early years. Preston has since distanced himself from the inflation fetishist community and instead sticks to humor comics, even once saying "yes I was once Catty N, lets just forget that ever happened." His past has become a major <a class='twikilink' href='/pmwiki/pmwiki.php/Main/NeverLiveItDown' title='/pmwiki/pmwiki.php/Main/NeverLiveItDown' data-format='TmV2ZXJMaXZlSXREb3du'>Never Live It Down</a> among his detractors though, who often reference his Catty N years in art mocking him. Even some artists in the inflation fetishist community have been vocal about their dislike of Preston, saying Preston did not leave the community on good terms and was supposedly a real <a class='twikilink' href='/pmwiki/pmwiki.php/Main/JerkAss' title='/pmwiki/pmwiki.php/Main/JerkAss' data-format='SmVya0Fzcw=='>Jerkass</a> to other fetish artists in his early years. The fact Preston has become infamous for issuing DMCA takedowns of his Catty N art on imageboards and other sites has only contributed to his <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Hatedom' title='/pmwiki/pmwiki.php/Main/Hatedom' data-format='e3tIYXRlZG9tfX0='>Hatedom</a>. </li></ul></li><li> Illusionist David Copperfield is reportedly not happy with his 10th TV special "The Bermuda Triangle." On a DVD commentary he mentioned that he didn't like the final illusion (to be fair it is VERY hokey) and that it came "during a very rough part of my career." However, the special did feature one of Copperfield's signature tricks... The Death Saw. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/AlbertEinstein' title='/pmwiki/pmwiki.php/UsefulNotes/AlbertEinstein' data-format='VXNlZnVsTm90ZXMvQWxiZXJ0RWluc3RlaW4='>Albert Einstein</a>: <ul ><li> He considered the <a class='urllink' href='http://en.wikipedia.org/wiki/Cosmological_constant'>cosmological constant<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> term he added to his theory of general relativity to be his "biggest blunder", as he put it in in an attempt to make his theory consistent with a static universe. Shortly after, Edwin Hubble published observations that the universe was in fact expanding, in accordance with the original theory of general relativity… However, as of circa 2000, a nonzero cosmological constant has become part of the standard model for cosmology, as there are stars that are <em>older</em> than the age of the universe as computed using original general relativity (if expansion is accelerating, then it was previously slower, and it would therefore have taken a longer time than predicted by original general relativity for the universe to expand to its present size). </li><li> Also relevant is Einstein's involvement in quantum mechanics. He expanded on Max Planck's ideas, wrote a paper in 1905 on the photoelectric effect, won a Nobel Prize for his breakthrough, and out of that, the whole field of quantum mechanics was born, which is influential in science and computing to this day. However, once Erwin Schrödinger and Max Born realized that probability and randomness were major factors in quantum mechanics, Einstein turned his back on the whole field, trying to debunk it to his dying day, refusing to accept it long after it had become useful to the rest of the scientific community. </li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/Cracked' title='/pmwiki/pmwiki.php/Website/Cracked' data-format='e3tXZWJzaXRlL0NyYWNrZWR9fQ=='>Cracked</a>'s articles named <a class='urllink' href='http://www.cracked.com/article_18593_6-classics-despised-by-people-who-created-them.html'>"6 Classics Despised by the People Who Created Them"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and <a class='urllink' href='http://www.cracked.com/article_20573_5-famous-actors-who-hate-their-most-iconic-roles.html'>"5 Famous Actors Who Hate Their Most Iconic Roles"<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> detail some examples. </li><li> For <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/Microsoft' title='/pmwiki/pmwiki.php/Creator/Microsoft' data-format='Q3JlYXRvci97e01pY3Jvc29mdH19'>Microsoft</a>: <ul ><li> Internet Explorer 6. They even <a class='urllink' href='http://www.ie6countdown.com/'>created a website<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> dedicated to getting people to drop it. </li><li> Upon stepping down as the CEO of Microsoft, Steve Ballmer said <a class='urllink' href='http://web.archive.org/web/20140104022907/http://www.techaxle.com/steve-ballmer-explains-why-windows-vista-was-his-biggest-mistake/'>his greatest mistake<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> as the man in charge was Windows Vista, due to its <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TroubledProduction' title='/pmwiki/pmwiki.php/Main/TroubledProduction' data-format='VHJvdWJsZWRQcm9kdWN0aW9u'>Troubled Production</a> and the fact it took focus away from things they could have been focusing on instead, such as phones. </li></ul></li><li> Vince Lombardi once said "Winning isn't everything, it's the only thing." He later said "I wish I'd never said the thing. I meant the effort... I meant having a goal... I sure didn't mean for people to crush human values and morality." </li><li> Anna Jarvis, the creator of Mother's Day, resented the commercialization the holiday brought and was even <em>arrested protesting it</em>. </li><li> There are people who create trope terms, and then come to regret it. <ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/GailSimone' title='/pmwiki/pmwiki.php/Creator/GailSimone' data-format='Q3JlYXRvci9HYWlsU2ltb25l'>Gail Simone</a> hates the term <a class='twikilink' href='/pmwiki/pmwiki.php/Main/StuffedIntoTheFridge' title='/pmwiki/pmwiki.php/Main/StuffedIntoTheFridge' data-format='U3R1ZmZlZEludG9UaGVGcmlkZ2U='>Stuffed into the Fridge</a> and regrets coining it, largely because she feels it's been horribly <a class='twikilink' href='/pmwiki/pmwiki.php/Administrivia/TropeDecay' title='/pmwiki/pmwiki.php/Administrivia/TropeDecay' data-format='W1tBZG1pbmlzdHJpdmlhL1Ryb3BlRGVjYXkgZGlzdG9ydGVkIGFuZCBvdmVyLWFwcGxpZWRdXQ=='>distorted and over-applied</a> ever since its creation, being used to insult <em>any</em> work in which a female character gets hurt or dies. It <em>really</em> doesn't help that when she started working for <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/DCComics' title='/pmwiki/pmwiki.php/Creator/DCComics' data-format='Q3JlYXRvci9EQ0NvbWljcw=='>DC Comics</a>, she became friends with Ron Marz (the writer the trope is named in reference to), and was promptly insulted by some "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/FanDumb' title='/pmwiki/pmwiki.php/Main/FanDumb' data-format='W1tGYW5EdW1iIGZhbnNdXQ=='>fans</a>" for being nice to him. </li><li> Likewise, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/NathanRabin' title='/pmwiki/pmwiki.php/Creator/NathanRabin' data-format='Q3JlYXRvci9OYXRoYW5SYWJpbg=='>Nathan Rabin</a>, who coined the term "<a class='twikilink' href='/pmwiki/pmwiki.php/Main/ManicPixieDreamGirl' title='/pmwiki/pmwiki.php/Main/ManicPixieDreamGirl' data-format='TWFuaWNQaXhpZURyZWFtR2lybA=='>Manic Pixie Dream Girl</a>," wrote an <a class='urllink' href='http://www.salon.com/2014/07/15/im_sorry_for_coining_the_phrase_manic_pixie_dream_girl/'>apology<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> for coining it, citing how the term quickly flooded the pop culture discussion, and how critics applied it even where it didn't fit until it lost most of its meaning. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/AlisonBechdel' title='/pmwiki/pmwiki.php/Creator/AlisonBechdel' data-format='Q3JlYXRvci9BbGlzb25CZWNoZGVs'>Alison Bechdel</a>, namesake of <a class='twikilink' href='/pmwiki/pmwiki.php/MediaNotes/TheBechdelTest' title='/pmwiki/pmwiki.php/MediaNotes/TheBechdelTest' data-format='TWVkaWFOb3Rlcy9UaGVCZWNoZGVsVGVzdA=='>The Bechdel Test</a>, has expressed reservations with the way that it's taken as a simplistic measure of whether or not a work is sexist. </li><li> Hikaru Ijiun who coined the word <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Chuunibyou' title='/pmwiki/pmwiki.php/Main/Chuunibyou' data-format='e3tDaHV1bmlieW91fX0='>Chuunibyou</a> has <a class='urllink' href='https://twitter.com/HikaruIjuin/status/6345171658'>lost interest in it<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> (note: Tweet in Japanese) due to people online misappropriating its original meaning. </li></ul></li><li> One of the pioneers of television was Philo Farnsworth, who had high hopes of the device being used as an educational tool by society. He eventually came to openly despise television, seeing it used primarily for entertainment, and practically went to his grave wishing he'd never worked on the thing. </li><li> John <span class='esc-seq' title='non-wikiword'>McAfee</span>, the creator of <span class='esc-seq' title='non-wikiword'>McAfee</span> antivirus software, eventually grew to hate the pioneering software that bore his name after he resigned the company and sold the naming rights in 1994. <a class='urllink' href='https://www.youtube.com/watch?v=bKgf5PaBzyg'>He even released a video telling users how to uninstall the software.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> When <span class='esc-seq' title='non-wikiword'>McAfee AntiVirus</span> was (temporarily) re-branded as Intel Security, he said "I am now everlastingly grateful to Intel for freeing me from this terrible association with the worst software on the planet. These are not my words, but the words of millions of irate users." It was never clear whether his concerns were real or were an expression of resentment for a popular product with his name that no longer earned him money. The point became moot when <span class='esc-seq' title='non-wikiword'>McAfee</span> died in prison in 2021. </li><li> Some people that cause a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MemeticMutation' title='/pmwiki/pmwiki.php/Main/MemeticMutation' data-format='TWVtZXRpY011dGF0aW9u'>Memetic Mutation</a>, either by accident or on purpose, may sometimes regret it and speak out against it. An example of this comes from the Ugandan Knuckles meme where it involves an <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OffModel' title='/pmwiki/pmwiki.php/Main/OffModel' data-format='T2ZmTW9kZWw='>Off-Model</a> of <a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehog' title='/pmwiki/pmwiki.php/Franchise/SonicTheHedgehog' data-format='W1tGcmFuY2hpc2UvU29uaWNUaGVIZWRnZWhvZyBLbnVja2xlc11d'>Knuckles</a> appearing in <span class='esc-seq' title='non-wikiword'>VRChat</span> speaking in a terrible Ugandan accent asking people if they "know de way", name a random female player as their queen, and making lots of clicking noises. The person who uploaded the model for people to use regrets making the model open to the public and feels responsible for people not being able to enjoy <span class='esc-seq' title='non-wikiword'>VRChat</span> without others abusing the meme everywhere. </li><li> In 1988, an Australian breeder named Wally Conron created the "Labradoodle" (Labrador Retriever x Standard Poodle mix) as we know it. He intended to make a new service dog-geared breed meant to be low-maintenance, friendly, and easily trainable. However, the popularity of the mix led to others breeding their own Labradoodles and other similar mixes with cute names (Goldendoodles, Cockapoos, et cetera). Since then, numerous other Poodle mixes have popped up and Labradoodles are still not any closer to being a "real breed" than they were in the 1980s. Wally Conron no longer breeds them and says he regrets starting the "designer dog" fad. He says that he created "a Frankenstein" and that Labradoodles (and similar mixes) are generally poorly bred, having many problems and no breed standard instead of the original intention of fixing the "flaws" of Poodles and Labradors. </li><li> Parenting blogger Jenna Karvunidis, who created (or at least popularized) gender-reveal parties, <a class='urllink' href='https://www.today.com/parents/mom-who-popularized-gender-reveals-regrets-it-now-t159796'>regretted popularizing them<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>. Karvunidis threw one in 2008 because she had miscarriages in the past, so she wanted to celebrate her first pregnancy happening long enough to have the fetus' sex determined. She realized it's unfair to a child to place so much emphasis on their biological sex instead of letting them develop as individuals when her eldest daughter (for whom Karvunidis threw the first of these parties and blogged about it) started exhibiting tomboyish traits like a preference for suits and later came out as gender non-conforming. Not helping matters are the increasingly over-the-top acts parents have decided to take on to celebrate the sex of their offspring, including pyrotechnic displays that have caused <a class='urllink' href='https://www.azcentral.com/story/news/local/arizona-breaking/2018/11/26/sawmill-fire-explosion-caught-camera-during-gender-reveal-party/2121802002/'>two<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> <a class='urllink' href='https://www.desertsun.com/story/news/environment/wildfires/2020/09/06/el-dorado-fire-grows-2-727-acres-containment-remains-5/5734173002/'>wildfires<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> and the death of at least one firefighter. All Karvunidis ever did was cut a cake filled with pink icing. She <em>never</em> suggested the more outlandish reveals people have done, causing her to put this line in her Twitter profile so that it's the first thing everyone sees on it: <div class='indent'> Stop blowing up forests to tell your “friends” about your child’s peen. Thank you. </div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MatthewMercer' title='/pmwiki/pmwiki.php/Creator/MatthewMercer' data-format='Q3JlYXRvci9NYXR0aGV3TWVyY2Vy'>Matthew Mercer</a>: <ul ><li> He has <a class='urllink' href='https://youtu.be/q0rdH3pehS4?t=3992'>said in an interview<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> that he has gotten tired of being <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheOtherDarrin' title='/pmwiki/pmwiki.php/Main/TheOtherDarrin' data-format='VGhlT3RoZXJEYXJyaW4='>The Other Darrin</a> for many of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/TroyBaker' title='/pmwiki/pmwiki.php/Creator/TroyBaker' data-format='Q3JlYXRvci9Ucm95QmFrZXI='>Troy Baker</a>'s old roles. After Baker became high in demand, Mercer took over for him in many instances since the two have a similar vocal range. He was offered to replace Baker as Yuri Lowell in <em><a class='twikilink' href='/pmwiki/pmwiki.php/VideoGame/TalesOfVesperia' title='/pmwiki/pmwiki.php/VideoGame/TalesOfVesperia' data-format='VmlkZW9HYW1lL1RhbGVzT2ZWZXNwZXJpYQ=='>Tales of Vesperia</a>: Definitive Edition</em>, but turned it down, feeling that someone else should have the role instead. </li><li> The <a class='urllink' href='https://screenrant.com/critical-role-dnd-mercer-effect-dungeons-dragons-expectations/'>Matt Mercer effect<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, where people introduced to <em><a class='twikilink' href='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' title='/pmwiki/pmwiki.php/TabletopGame/DungeonsAndDragons' data-format='VGFibGV0b3BHYW1lL0R1bmdlb25zQW5kRHJhZ29ucw=='>Dungeons & Dragons</a></em> via his being the DM on <em><a class='twikilink' href='/pmwiki/pmwiki.php/WebVideo/CriticalRole' title='/pmwiki/pmwiki.php/WebVideo/CriticalRole' data-format='V2ViVmlkZW8vQ3JpdGljYWxSb2xl'>Critical Role</a></em> expect <em>every</em> campaign to be like his (and the DM to provide different voices on par with a professional voice actor) and complain about their DM "not doing it right." As you can imagine, he's not happy about being associated with it. </li></ul></li><li> John Sylvan, the inventor of the Keurig coffee machine, <a class='urllink' href='https://www.theatlantic.com/technology/archive/2015/03/the-abominable-k-cup-coffee-pod-environment-problem/386501/'>regretted creating it<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> due to the plastic waste of the K-cup coffee pods, saying that he didn't even own one. </li><li> Inventor Alfred Nobel is perhaps best-known for his invention of dynamite, which he created as a way to help mining and construction projects. Later in his life, he was visiting Europe when he was shocked to hear that <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ReportsOfMyDeathWereGreatlyExaggerated' title='/pmwiki/pmwiki.php/Main/ReportsOfMyDeathWereGreatlyExaggerated' data-format='W1tSZXBvcnRzT2ZNeURlYXRoV2VyZUdyZWF0bHlFeGFnZ2VyYXRlZCBoZSYjMDM5O2QgcmVjZW50bHkgZGllZF1d'>he'd recently died</a>; it was actually his brother who'd passed away, but somehow the wires got crossed. Nobel decided to see what people had to say in their obituaries of him... and was absolutely horrified to see himself painted as a "merchant of death" because of how armies around the world appropriated dynamite and nitroglycerin for weapons. The inventor was determined to leave a legacy of unquestionably positive change instead and so established a series of annual awards to be given to people who bettered humanity in areas of science, the arts, and, most importantly, peace. You probably know those awards better as the Nobel Prize. </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Website/Cracked' title='/pmwiki/pmwiki.php/Website/Cracked' data-format='W1tXZWJzaXRlL3t7Q3JhY2tlZH19IENyYWNrZWQuY29tXV0='>Cracked.com</a> has <a class='urllink' href='https://www.cracked.com/pictofacts-1681-inventors-who-cant-stand-their-own-creations/'>Inventors Who Can't Stand Their Own Creations.<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a> </li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Webcomic/BooksOfAdam' title='/pmwiki/pmwiki.php/Webcomic/BooksOfAdam' data-format='W1tXZWJjb21pYy9Cb29rc09mQWRhbSBBZGFtIEVsbGlzXV0='>Adam Ellis</a> drew a comic of himself killing off one of his earlier comics. In said comic, someone told their annoying friend to "let people enjoy things". This was often used about perfectly innocent stuff, like the <em><a class='twikilink' href='/pmwiki/pmwiki.php/Franchise/StarWars' title='/pmwiki/pmwiki.php/Franchise/StarWars' data-format='RnJhbmNoaXNlL1N0YXJXYXJz'>Star Wars</a></em> Prequels, but many also used it to promote hate and racism and act hyper-defensive of legitimate or constructive criticism. <a class='urllink' href='https://www.twitter.com/adamtotscomix/status/1644752595662131200'>On his Twitter<img src="https://static.tvtropes.org/pmwiki/pub/external_link.gif" height="12" width="12" style="border:none;" /></a>, Adam has also stated that it was being used by pedophiles. </li><li> Several members of <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MontyPython' title='/pmwiki/pmwiki.php/Creator/MontyPython' data-format='Q3JlYXRvci9Nb250eVB5dGhvbg=='>Monty Python</a> quickly became tired of the notoriety that came with their television shows and movies. More specifically, they'd founded the Pythons on the grounds of "shock comedy" that was supposed to be different, engaging, and surprising every time people watched it. As such, the very notion of codifying "Python-esque" humor was the exact <em>opposite</em> of what they wanted, and seeing people endlessly repeat their jokes made the creators frustrated to no end (<a class='twikilink' href='/pmwiki/pmwiki.php/Creator/JohnCleese' title='/pmwiki/pmwiki.php/Creator/JohnCleese' data-format='Q3JlYXRvci9Kb2huQ2xlZXNl'>John Cleese</a> once remarked that he'd seen a group of people have a conversation of nothing but Python quotes and went home bitterly disappointed). The backlash against any sort of formula also led to interesting moments in the group's live shows, as they'd deliberately subvert the fans' expectations to try to keep the original point of shock humor alive. In one famous instance, the "Dead Parrot" sketch began as usual, but when Cleese entered the set and said that his parrot was dead, <a class='twikilink' href='/pmwiki/pmwiki.php/Creator/MichaelPalin' title='/pmwiki/pmwiki.php/Creator/MichaelPalin' data-format='Q3JlYXRvci9NaWNoYWVsUGFsaW4='>Michael Palin</a> looked at it, agreed, and gave Cleese a refund, thus completing the bit without telling a single joke (which <em>was</em> the joke). </li><li> Victor Gruen was an architect best known for conceptualizing the modern shopping mall, with many of his projects including Southdale Mall in suburban <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/TwinCities' title='/pmwiki/pmwiki.php/UsefulNotes/TwinCities' data-format='VXNlZnVsTm90ZXMvVHdpbkNpdGllcw=='>Twin Cities</a> and (the now defunct) Northland Center in suburban <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/Detroit' title='/pmwiki/pmwiki.php/UsefulNotes/Detroit' data-format='VXNlZnVsTm90ZXMve3tEZXRyb2l0fX0='>Detroit</a>, being among the very first malls in the <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/UnitedStates' title='/pmwiki/pmwiki.php/UsefulNotes/UnitedStates' data-format='VXNlZnVsTm90ZXMvVW5pdGVkU3RhdGVz'>United States</a>. However, he later came to regret his role in developing them; in a 1978 speech, Gruen said, "I am often called the father of the shopping mall...I would like to take this opportunity to disclaim paternity once and for all. I refuse to pay alimony to those bastard developments. They destroyed our cities." </li><li> Nicholas Price was a British artist who was the creator of the 'Old Joe Camel' character, who was briefly used in an adult magazine in the 1970s to advertise Camel cigarettes. Years later, when Camel resurrected the character for their more mainstream, controversial ad campaigns in the '80s and '90s, Price was not happy about it and stated that it "mortified him" to see the character used in that way, especially when it was more appealing to children. He ended up suing Camel for not paying him properly for the use of the character (it later got settled out of court), and went on to say that he never would've created the character if he knew it would get to that point. </li><li> Colonel Sanders came to hate <a class='twikilink' href='/pmwiki/pmwiki.php/UsefulNotes/KFC' title='/pmwiki/pmwiki.php/UsefulNotes/KFC' data-format='VXNlZnVsTm90ZXMve3tLRkN9fQ=='>KFC</a> and called the gravy "wallpaper paste" . </li><li> British supermodel Kate Moss coined the well-known phrase "Nothing tastes as good as thin feels", which many people (especially women) took to heart as not just a simple motivation to lose weight, but to be as thin as her, the progenitor of the then-popular 90s "heroin chic" look. Problem with this slogan is not only did it (as well as the term) become closely associated with many <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WeightLossHorror' title='/pmwiki/pmwiki.php/Main/WeightLossHorror' data-format='W1tXZWlnaHRMb3NzSG9ycm9yIHByby1hbmEgYW5kIHByby1taWEgZ3JvdXBzXV0='>pro-ana and pro-mia groups</a> but others who literally <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DrugsAreBad' title='/pmwiki/pmwiki.php/Main/DrugsAreBad' data-format='W1tEcnVnc0FyZUJhZCBkaWQgZHJ1Z3MgdG8gbG9zZSBhIHNpZ25pZmljYW50IGFtb3VudCBvZiB3ZWlnaHRdXQ=='>did drugs to lose a significant amount of weight</a>, which only looks worse when it eventually came out years later that <em>Moss herself</em> was addicted to various drugs throughout her career. Needless to say, the-now clean and sober model deeply regrets the statement. </li></ul></div> </p><p><hr data-format='&#8212;&#8212;' /> </p></div> <div class="lazy-video-script"> <a id="VideoExamples"></a> <div>&nbsp;</div> <div class="video-examples has-thumbnails"> <div class="video-examples-header"> <a href="#feedback" class="font-s float-right text-blue" data-modal-target="login" >Feedback</a> <h3 class="bold">Video Example(s):</h3> </div> <div class="video-examples-featured"> <div class="example_video_box"> <a href="#video-link" data-video-id="a6hlbu" data-video-descrip="Mandy Moore and Howard Stern look back on Moore's first pop hit, &amp;quot;Candy&amp;quot;." data-video-title="Mandy Moore on &quot;Candy&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/a6hlbu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/a6hlbu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/a6hlbu.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/vlcsnap_2024_06_13_07h51m00s994.png" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Creator/MandyMoore,Radio/HowardStern" class="video-launch-link video-overlay-link featured-widget-vid"> <div class="featured-widget-vid-iframe"> <div id="tvtropes_no_volume_player" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/vlcsnap_2024_06_13_07h51m00s994.png" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/a6hlbu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/a6hlbu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/a6hlbu.m3u8" data-controls="0" data-muted="1"> <script> tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); }); </script> </div> </div> </a> </div> <h2 class="bold font-l">Mandy Moore on "Candy"</h2> <p class="_pmvv-vidbox-descTxt"> Mandy Moore and Howard Stern look back on Moore's first pop hit, &quot;Candy&quot;. </p> </div> <div class="video-examples-thumbs"> <a href="#video-link" data-video-id="ti8olm" data-video-descrip="Taken from the documentary &amp;quot;Christer Hagström - The Man Who Took Anime To The Nordics&amp;quot;" data-video-title="Gunnar Ernblad on dubbing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ti8olm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ti8olm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ti8olm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ti8olm.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/HelloSandybell" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ti8olm.jpg"> <p><span class="bold">Gunnar Ernblad ...</span></p> </a> <a href="#video-link" data-video-id="3azlra" data-video-descrip="When Johnny starts his video review of the Pokemon: Let's Go games, he takes a moment to talk about his past videos in the series. He's openly critical of having a head-cold during is Gen 1 review, and making an Innocently Insensitive transphobic remark by referring to Bugsy with an &amp;quot;it&amp;quot; during is Gen 2 review." data-video-title="Johnny on Pokemon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3azlra_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3azlra.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3azlra.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3azlra.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/SomeCallMeJohnny" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3azlra.jpg"> <p><span class="bold">Johnny on Pokemon</span></p> </a> <a href="#video-link" data-video-id="537qu2" data-video-descrip="Conan O'Brien surprises and embarrasses Harrison Ford by showing a clip of the Star Wars Holiday Special. " data-video-title="Ford on SWars Holiday Special" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/537qu2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/537qu2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/537qu2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/537qu2.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/HarrisonFord,Film/TheStarWarsHolidaySpecial,Series/LateNightWithConanOBrien" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/537qu2.jpg"> <p><span class="bold">Ford on SWars H...</span></p> </a> <a href="#video-link" data-video-id="ve4mte" data-video-descrip="Molly was planning on debuting her Fista-Puff comics in her school newspaper but chickens out when she realizes her comics is basically her diary in drawing form. Instead, she decides to draw a farting bean and while everyone at her school loves it, she absolutely hates it." data-video-title="Farting Bean Cartoon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ve4mte_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ve4mte.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ve4mte.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e09_farting_bean.png" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Main/Gasshole,Recap/CentralParkS2E09ABoatifulMind,WesternAnimation/CentralPark,Main/GassyGastronomy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e09_farting_bean.png"> <p><span class="bold">Farting Bean Ca...</span></p> </a> <a href="#video-link" data-video-id="qc1qmq" data-video-descrip="Barbie talks about how she hates the films she has to make as part of her 'Barbie' contractual obligation." data-video-title="Sam &amp;#38; Mickey" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qc1qmq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qc1qmq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qc1qmq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qc1qmq.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Creator/SamAndMickey" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qc1qmq.jpg"> <p><span class="bold">Sam &#38; Mickey</span></p> </a> <a href="#video-link" data-video-id="vgwavt" data-video-descrip="In the &amp;quot;Final Fantasy XIII&amp;quot; review, Spoony apologises for making a potentially homophobic joke in his &amp;quot;Final Fantasy VIII&amp;quot; review, as well as not knowing what the word &amp;quot;Eponymous&amp;quot; means." data-video-title="The Spoony Experiment" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vgwavt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vgwavt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vgwavt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vgwavt.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="WebVideo/TheSpoonyExperiment" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vgwavt.jpg"> <p><span class="bold">The Spoony Expe...</span></p> </a> </div> </div> </div> <div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="titles"> <div><h3 class="text-center text-uppercase">Previous</h3></div> <div><h3 class="text-center text-uppercase">Index</h3></div> <div><h3 class="text-center text-uppercase">Next</h3></div> </div> <div class="links"> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/ContestedSequel">Contested Sequel</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/ReceptionDissonance">Reception Dissonance</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorsPet">Creator's Pet</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CreativeDifferences">Creative Differences</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorSpeak">Creator Speak</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CrossThrough">Cross Through</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/ComicBook/TheLittlestZombie">The Littlest Zombie</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/AntarcticPress">Creator/Antarctic Press</a> </li> <li> <a href="/pmwiki/pmwiki.php/ComicBook/NinjaHighSchool">Ninja High School</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CrackFic">Crack Fic</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FanficTropes">Fanfic Tropes</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Crossover">Crossover</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/AVoyageToArcturus">A Voyage to Arcturus</a> </li> <li> <a href="/pmwiki/pmwiki.php/DerivativeWorks/AVoyageToArcturus">DerivativeWorks/A Voyage to Arcturus</a> </li> <li> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Literature/TillWeHaveFaces">Till We Have Faces</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/CSLewis">Creator/C. S. Lewis</a> </li> <li> <a href="/pmwiki/pmwiki.php/Literature/TheDiscardedImage">The Discarded Image</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CreativeDifferences">Creative Differences</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorStandpointIndex">Creator Standpoint Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorBreakdown">Creator Breakdown</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CareerNotTaken">Career Not Taken</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/IRegretThisIndex">I Regret This Index</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/DarkAndTroubledPast">Dark and Troubled Past</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/Sculptors">Sculptors</a> </li> <li> <a href="/pmwiki/pmwiki.php/QuoteSource/Creators">QuoteSource/Creators</a> </li> <li> <a href="/pmwiki/pmwiki.php/Creator/BoBurnham">Bo Burnham</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CreativeDifferences">Creative Differences</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/Trivia">Trivia</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorBreakdown">Creator Breakdown</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Main/CrapsaccharineWorld">Crapsaccharine World</a> </li> <li> <a href="/pmwiki/pmwiki.php/Administrivia/TropesNeedingTRS">Administrivia/Tropes Needing TRS</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/CreatorKiller">Creator Killer</a> </li> </ul> <ul> <li> <a href="/pmwiki/pmwiki.php/Webcomic/BooksOfAdam">Books of Adam</a> </li> <li> <a href="/pmwiki/pmwiki.php/ImageSource/WebcomicsAToL">ImageSource/Webcomics A To L</a> </li> <li> <a href="/pmwiki/pmwiki.php/Main/FanCreatedOffspring">Fan-Created Offspring</a> </li> </ul> </div> </div> <script> if( document.getElementById('user-prefs').classList.contains('folders-open') ){ console.log('open all folders'); var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button'); elements.forEach((element) => { element.classList.add('is-open'); }); } </script> <script> function insert_ad(adCount, paragraph, adName, folder = 0){ var ad_count = adCount < 10 ? "0"+adCount : adCount; var inside_folder = folder ? "1" : "0"; // Create element for ad unit var adUnit = document.createElement('div'); adUnit.setAttribute("class", `htlad-${adName}`); adUnit.setAttribute("id", `${adName}_${adCount}`); adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}", "in_folder": "${inside_folder}"}`); // Add Advertisement label var adLabel = document.createElement("span"); adLabel.innerHTML = "Advertisement:" adLabel.setAttribute("class","ad-caption"); var adWrapper = document.createElement("div"); adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll"); adWrapper.setAttribute("id","mobile_"+adCount); // Merge all pieces adWrapper.appendChild(adLabel); adWrapper.appendChild(adUnit); // Insert into DOM paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling); // for getting correct ad count even when ones are deleted globalAdInsertionCount++; } function insert_ads_in_content(folder = 0, totalAdsCount = 0, pHeight = 0) { if(folder) var node = folder.firstElementChild; // Get the first traversable element of the folder else var node = document.getElementById("main-article").firstElementChild; var pCount = 0; var adCount = totalAdsCount + 1; var nodeCount = 0; var nodeLevel = 0; var x = 0; //loop through elements of content while(x<300) { x++; nodeCount++; //traverse to the next element (if exists) if(nodeCount>1) { if(!node.nextElementSibling) { console.log('adparser: no next element'); if(nodeLevel>0) { nodeLevel--; node = node.parentElement; console.log('adparser: we were down a level, go back up ('+nodeLevel+')'); continue; } else { break; } } node = node.nextElementSibling; } //skip inserted ads or empty nodes if(!node || node==="null" || typeof node !== "object") continue; if(!node.offsetHeight || node.offsetHeight==0) continue; if(node.className && node.className.includes('tvtropes-ad-unit')) continue; //skip if image block that has a caption after it (NEW: ALWAYS SKIP THE IMAGE BLOCK) if(node.className && node.className.includes('quoteright')) { // if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) { pHeight += node.offsetHeight; continue; // } } //if very large element, loop through elements inside if(node.offsetHeight>700 && node.firstElementChild) { nodeLevel++; console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel); node = node.firstElementChild; nodeCount = 0; continue; } // Skip if after a folder label or if the current node is a folder label itself if ((node.previousElementSibling && node.previousElementSibling.className && node.previousElementSibling.className.includes("folderlabel")) || (node.className && node.className.includes("folderlabel"))) { console.log('adparser: skipping ad insertion related to folder label'); if (!node.className || !node.className.includes("folderlabel")) { // If it's not the folder label itself, skip the insertion continue; } else { pHeight += node.offsetHeight; // If it is the folder label, just add its height to pHeight and continue continue; } } //paragraph counter if(node.nodeName=="P") pCount++; //add height of node to counter pHeight += node.offsetHeight; //add margin of node to counter if available try { var nodeStyle = getComputedStyle(node); if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop); if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom); //console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom); } catch(e) { } //debug logging console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight); //console.log(node.className); // check if user is logged in var logged_in = 0; // Calculate the required height based on the user's logged-in status or ad count var requiredHeight = globalAdInsertionCount > 15 ? 1500 : 750; if(logged_in) requiredHeight = 2250; // only inserts an ad if the total height and paragraph count conditions are met if ((adCount === 1 && pCount >= 1 && pHeight >= 400) || pHeight >= requiredHeight) { // Check existing ad positions and compare with the item about to be inserted after var ads = document.querySelectorAll('.tvtropes-ad-unit'); var nodeBottomPosition = node.getBoundingClientRect().bottom + window.scrollY; // Get bottom position of current node var canInsertAd = true; // Flag to track if we can insert an ad ads.forEach(function (ad) { var adTop = ad.getBoundingClientRect().top + window.scrollY; var adBottom = ad.getBoundingClientRect().bottom + window.scrollY; // Ensure the new ad is at least requiredHeight away from any existing ads if (Math.abs(nodeBottomPosition - adTop) < requiredHeight || Math.abs(nodeBottomPosition - adBottom) < requiredHeight) { canInsertAd = false; console.log('adparser: cannot insert ad, not enough space between ads.'); } }); // If we can't insert an ad, skip to the next node if(!canInsertAd) continue; // after 50 ads, stop inserting. Or after 20 ads if the user is logged in if ((adCount > 50 || (adCount > 20 && logged_in))) { break; } console.log('adparser: insert ad '+adCount); insert_ad(adCount, node, "tvtropes_m_incontent_dynamic", folder); adCount++; pHeight = 0; pCount = 0; } } //insert one at end if room var maxpHeight = 500; if(logged_in) maxpHeight=1500; if(pHeight>=maxpHeight && folder==0) { console.log('adparser: insert ad'); insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic"); } // delete ads after the 8th one to reduce load times BCLighthouseTag.cmd.push(function() { googletag.cmd.push(function() { googletag.pubads().addEventListener('slotRequested', function(event) { const slot = event.slot; const slotName = slot.getAdUnitPath().split('/').pop() || slot.getAdUnitPath(); if(slotName === 'tvtropes_m_incontent_dynamic') { const slotNumber = parseInt(slot.getTargeting('slot_number')[0]); console.log(slotName+' = '+slotNumber); // Determine the ad slot that needs to be deleted. const adNumberToDelete = slotNumber - 8; if(adNumberToDelete > 0) { const adToDelete = document.getElementById(`mobile_${adNumberToDelete}`); if(adToDelete) { var adHeight = window.pageYOffset + adToDelete.getBoundingClientRect().top; var windowHeight = window.scrollY; // Check if the ad element exists and is above the current viewport (above the fold). if (adHeight < windowHeight) { console.log('ad delete = '+adNumberToDelete); adToDelete.remove(); } } } } }); }); }); // return pHeight return pHeight; } if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) { insert_ads_in_content(); } </script> </article> <div id="main-content-sidebar"><div class="sidebar-item display-options"> <ul class="sidebar display-toggles"> <li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li> <li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li> <li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li> <li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li> </ul> <script>updateDesktopPrefs();</script> </div> <div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement"> <p class="sidebar-item-title" data-title="Important Links">Important Links</p> <div class="padded"> <a href="/pmwiki/query.php?type=att">Ask The Tropers</a> <a href="/pmwiki/query.php?type=tf">Trope Finder</a> <a href="/pmwiki/query.php?type=ykts">Media Finder</a> <a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a> <a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <a href="/pmwiki/review_activity.php">Reviews</a> <a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a> <div class="crucial_browsing_dropdown"> <a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a> <ul id="main_dropdown"> <li class="first_dropdown"><a href="/pmwiki/index_report.php">Indexes</a> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a> <ul> <li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li> <li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime &amp; Punishment</a></li> <li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li> <li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li> <li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li> <li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li> <li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li> <li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li> <li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li> <li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li> <li><a href="/pmwiki/pmwiki.php/MediaNotes/Television" title="MediaNotes/Television">Television</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li> <li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li> <li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li> <li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li> <li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li> </ul> </li> <li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li> <li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li> <li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li> <li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li> <li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li> <li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li> <li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li> </ul> </li> </ul> </div> <div class="resources_dropdown"> <a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a> <ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li> <li><a href="/pmwiki/cutlist.php" data-modal-target="login" rel="nofollow">Cut List</a></li> <li><a href="/pmwiki/image-fixer.php" data-modal-target="login" rel="nofollow">Image Fixer</a></li> <li><a href="/pmwiki/changes.php">New Edits</a></li> <li><a href="/pmwiki/articles_new.php">New Articles</a></li> <li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li> <li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li> <li><a href="/pmwiki/launches.php" data-modal-target="login" rel="nofollow">Launches</a></li> <li><a href="/pmwiki/img_list.php" data-modal-target="login" rel="nofollow">Images List</a></li> <li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li> <li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li> <li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li> <li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a> <ul> <li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li> <li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li> <li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li> </ul> </li> <li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a> <ul> <li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">Administrivia</a></li> <li><a href="/pmwiki/pmwiki.php/Main/FAQ">FAQ</a></li> </ul> </li> <li class="second_dropdown"><a href="/pmwiki/changelog.php">Changelog</a></li> <li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li> <li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li> </ul> </div> </div> <div id="asteri-sidebar" style="display:none"> <p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="asteri_cont"></div> </div> <script> //asteri enabled if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) { //aster stream currently live and not a logged-in troper if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') { document.getElementById('asteri-sidebar').style.display=""; } } </script> </div> <script> if(!is_mobile()) { //don't insert if content is too small on page var tropes_insert_side_ad=true; if(document.getElementById("main-article") && document.getElementById("main-article").clientHeight) { var sidebar_height=document.getElementById("main-article").clientHeight; if(sidebar_height>0 && sidebar_height<500) { tropes_insert_side_ad=false; console.log('ad parser: content too small for sidebar ad'); } } if(tropes_insert_side_ad) { document.write(` <div id="stick-cont" class="sidebar-item sb-fad-unit"> <p class="sidebar-item-title" data-title="Advertisement">Advertisement:</p> <div id="stick-bar" class="sidebar-section"> <div class="square_fad fad-size-300x600 fad-section text-center"> <div class='tvtropes-ad-unit '> <div id='tvtropes_dt_inview' class='htlad-tvtropes_dt_inview'></div> </div> </div> </div> </div> `); } } </script> </div> </div> <div id="action-bar-bottom" class="action-bar tablet-off"> <a href="#top-of-page" class="scroll-to-top dead-button" onclick="scroll_to_top(500);">Top</a> </div> </div> <footer id="main-footer"> <div id="main-footer-inner"> <div class="footer-left"> <a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a> <ul class="social-buttons"> <li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li> <li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li> </ul> </div> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">TVTropes</h4></li> <li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li> <li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li> <li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li> <li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Community</h4></li> <li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li> <li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li> <li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li> <li><a href="/pmwiki/query.php?type=ykts">Media Finder</a></li> <li><a href="/pmwiki/query.php?type=wl">Tech Wishlist</a></li> <li><a href="/pmwiki/review_activity.php">Reviews</a></li> <li><a href="/pmwiki/topics.php">Forum</a></li> </ul> <hr/> <ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement"> <li><h4 class="footer-menu-header">Tropes HQ</h4></li> <li><a href="/pmwiki/about.php">About Us</a></li> <li><a href="/pmwiki/contact.php">Contact Us</a></li> <li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li> <li><a href="/pmwiki/changelog.php">Changelog</a></li> <li><a href="/pmwiki/dmca.php">DMCA Notice</a></li> <li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li> </ul> </div> <div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on"> <a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a> </div> <div class="legal"> <p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:thestaff@tvtropes.org" rel="cc:morePermissions"> thestaff@tvtropes.org</a>.</p> <br> <div class="privacy_wrapper"> </div> </div> </footer> <style> div.fc-ccpa-root { position: absolute !important; bottom: 93px !important; margin: auto !important; width: 100% !important; z-index: 9999 !important; overflow: hidden !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link p{ outline: none !important; text-decoration: underline !important; font-size: .7em !important; font-family: sans-serif !important; } .fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background { background: none !important; } </style> <div id="_pm_videoViewer" class="full-screen"> <a href="#close" class="close" id="_pm_videoViewer-close"></a> <div class="_pmvv-body"> <div class="_pmvv-vidbox"> <div id="overlay_outer_player_max"> <div id="overlay_outer_player_wrapper"> <div id="tvtropes_overlay_player" data-video-id="tvtropes-videos-a6hlbu" data-video-image="https://mediaproxy.tvtropes.org/width/600/https://tvtropes.org/pmwiki/pub/images/vlcsnap_2024_06_13_07h51m00s994.png" data-video-title="Mandy Moore on &quot;Candy&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/a6hlbu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/a6hlbu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/a6hlbu.m3u8" data-small-player="never" data-track-events="1" data-do-not-loop="1" data-starting-quality="1" data-autoplay="true"> </div> </div> </div> <div class="_pmvv-vidbox-desc"> <h1 id="overlay-title">Mandy Moore on "Candy"</h1> <p id="overlay-descrip" class="_pmvv-vidbox-descTxt"> Mandy Moore and Howard Stern look back on Moore's first pop hit, &quot;Candy&quot;. </p> <div class="rating-row" data-video-id="a6hlbu" > <input type="hidden" name="is_logged_in" value="0" > <p>How well does it match the trope?</p> <div id="star-rating-group"> <div class="trope-rate"> <input type="radio" id="lamp5" name="rate" value="5" /> <label for="lamp5" title="Absolutely">&starf;</label> <input type="radio" id="lamp4" name="rate" value="4" /> <label for="lamp4" title="Yes">&starf;</label> <input type="radio" id="lamp3" name="rate" value="3" /> <label for="lamp3" title="Kind of">&starf;</label> <input type="radio" id="lamp2" name="rate" value="2" /> <label for="lamp2" title="Not really">&starf;</label> <input type="radio" id="lamp1" name="rate" value="1" /> <label for="lamp1" title="No">&starf;</label> </div> <div id="star-rating-total"> 5 (3 votes) </div> </div> </div> <div class="example-media-row"> <div class="example-overlay"> <p>Example of:</p> <div id="overlay-trope">Main / CreatorBacklash</div> </div> <div class="media_second_wrapper"> <div class="media-sources-overlay example-overlay"> <p>Media sources:</p> <div id="overlay-media"></div> </div> <div class="example-overlay"> <div id="secondary_tropes_row"></div> <div id="overlay-second"></div> </div> </div> </div> <p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)"> <!-- <i class="fa fa-eye"></i> 11,241--> <a href="#video-feedback" class="float-right" data-modal-target="login" >Report</a> </p> </div> </div> </div> <div class="_pmvv-foot"> <div class="_pmvv-foot-scrollwrapper"> <a href="#video-link" data-video-id="a6hlbu" data-vimeo-id="" data-video-descrip="Mandy Moore and Howard Stern look back on Moore's first pop hit, &amp;quot;Candy&amp;quot;." data-video-title="Mandy Moore on &quot;Candy&quot;" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/a6hlbu_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/a6hlbu.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/a6hlbu.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/vlcsnap_2024_06_13_07h51m00s994.png" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="3" data-video-media-sources="Creator/MandyMoore,Radio/HowardStern" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/vlcsnap_2024_06_13_07h51m00s994.png"> <p><span class="bold">Mandy Moore on ...</span></p> </a> <a href="#video-link" data-video-id="ti8olm" data-vimeo-id="" data-video-descrip="Taken from the documentary &amp;quot;Christer Hagström - The Man Who Took Anime To The Nordics&amp;quot;" data-video-title="Gunnar Ernblad on dubbing" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ti8olm_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ti8olm.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ti8olm.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ti8olm.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="" data-video-rating-count="" data-video-media-sources="Anime/HelloSandybell" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/ti8olm.jpg"> <p><span class="bold">Gunnar Ernblad ...</span></p> </a> <a href="#video-link" data-video-id="3azlra" data-vimeo-id="" data-video-descrip="When Johnny starts his video review of the Pokemon: Let's Go games, he takes a moment to talk about his past videos in the series. He's openly critical of having a head-cold during is Gen 1 review, and making an Innocently Insensitive transphobic remark by referring to Bugsy with an &amp;quot;it&amp;quot; during is Gen 2 review." data-video-title="Johnny on Pokemon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/3azlra_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/3azlra.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/3azlra.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3azlra.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="7" data-video-media-sources="WebVideo/SomeCallMeJohnny" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/3azlra.jpg"> <p><span class="bold">Johnny on Pokemon</span></p> </a> <a href="#video-link" data-video-id="537qu2" data-vimeo-id="" data-video-descrip="Conan O'Brien surprises and embarrasses Harrison Ford by showing a clip of the Star Wars Holiday Special. " data-video-title="Ford on SWars Holiday Special" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/537qu2_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/537qu2.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/537qu2.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/537qu2.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.83" data-video-rating-count="23" data-video-media-sources="Creator/HarrisonFord,Film/TheStarWarsHolidaySpecial,Series/LateNightWithConanOBrien" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/537qu2.jpg"> <p><span class="bold">Ford on SWars H...</span></p> </a> <a href="#video-link" data-video-id="ve4mte" data-vimeo-id="" data-video-descrip="Molly was planning on debuting her Fista-Puff comics in her school newspaper but chickens out when she realizes her comics is basically her diary in drawing form. Instead, she decides to draw a farting bean and while everyone at her school loves it, she absolutely hates it." data-video-title="Farting Bean Cartoon" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/ve4mte_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/ve4mte.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/ve4mte.m3u8" data-video-thumbnail="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e09_farting_bean.png" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="9" data-video-media-sources="Main/Gasshole,Recap/CentralParkS2E09ABoatifulMind,WesternAnimation/CentralPark,Main/GassyGastronomy" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://mediaproxy.tvtropes.org/width/250/https://tvtropes.org/pmwiki/pub/images/cp_s2e09_farting_bean.png"> <p><span class="bold">Farting Bean Ca...</span></p> </a> <a href="#video-link" data-video-id="qc1qmq" data-vimeo-id="375565726" data-video-descrip="Barbie talks about how she hates the films she has to make as part of her 'Barbie' contractual obligation." data-video-title="Sam &amp;#38; Mickey" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/qc1qmq_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/qc1qmq.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/qc1qmq.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qc1qmq.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="5.00" data-video-rating-count="12" data-video-media-sources="Creator/SamAndMickey" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/qc1qmq.jpg"> <p><span class="bold">Sam &#38; Mickey</span></p> </a> <a href="#video-link" data-video-id="vgwavt" data-vimeo-id="332833312" data-video-descrip="In the &amp;quot;Final Fantasy XIII&amp;quot; review, Spoony apologises for making a potentially homophobic joke in his &amp;quot;Final Fantasy VIII&amp;quot; review, as well as not knowing what the word &amp;quot;Eponymous&amp;quot; means." data-video-title="The Spoony Experiment" data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/vgwavt_640x360p_qvbr.mp4" data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/vgwavt.mpd" data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/vgwavt.m3u8" data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vgwavt.jpg" data-video-trope="Main/CreatorBacklash" data-video-tropename="Creator Backlash" data-video-approval="APPROVED" data-video-troper-rating="" data-video-average-rating="4.62" data-video-rating-count="16" data-video-media-sources="WebVideo/TheSpoonyExperiment" class="video-launch-link video-overlay-link video-background-image lazy-image" data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/vgwavt.jpg"> <p><span class="bold">The Spoony Expe...</span></p> </a> </div> </div> </div> <script type="text/javascript"> var cleanCreativeEnabled = ""; var donation = ""; var live_ads = "1"; var img_domain = "https://static.tvtropes.org"; var snoozed = cookies.read('snoozedabm'); var elem = document.createElement('script'); elem.async = true; // if page type is article or homepage load bundle_nojquery. otherwise load regular bundle.js if(tvtropes_config.universal_page_type == "Article" || tvtropes_config.universal_page_type == "HomePage") { elem.src = 'https://assets.tvtropes.org/design/assets/bundle_nojquery.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } else { elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=34f2653e14b8f0604d7c8ab2d8e0002abf7d2ab4'; } elem.onload = function() { } document.getElementsByTagName('head')[0].appendChild(elem); </script> <script type="text/javascript"> function send_analytics_event(user_type, donation){ // if(user_type == 'uncached' || user_type == 'cached'){ // ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1}); // return; // } var event_name = user_type; if(donation == 'true'){ event_name += "_donation" }else if(typeof(valid_user) == 'undefined'){ event_name += "_blocked" }else if(valid_user == true){ event_name += "_unblocked"; }else{ event_name = "_unknown" } ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1}); } send_analytics_event("guest", "false"); </script> <!-- Quantcast Tag --> <script type="text/javascript"> window._qevents = window._qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); window._qevents.push({ qacct:"p-mEzuYq24VEJ-3" }); </script> <noscript> <div style="display:none;"> <img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/> </div> </noscript> <!-- End Quantcast tag --> <!-- Begin comScore Tag --> <script> var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "38282685" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/38282685/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <noscript> <img src="https://sb.scorecardresearch.com/p?c1=2&amp;c2=38282685&amp;cv=3.6.0&amp;cj=1"> </noscript> <!-- End comScore Tag --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10