CINXE.COM
Class Issues – The Pigman Cometh !
<!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8"> <meta name="description" content=""> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1"> <link rel="icon" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="apple-touch-icon" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="msapplication-TileImage" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="pingback" href="http://thepigmancometh.com/xmlrpc.php"> <title>Class Issues – The Pigman Cometh !</title> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! » Feed" href="http://thepigmancometh.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! » Comments Feed" href="http://thepigmancometh.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! » Class Issues Category Feed" href="http://thepigmancometh.com/category/class-issues/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/thepigmancometh.com\/wp-includes\/js\/wp-emoji.js?ver=5.5.9","twemoji":"http:\/\/thepigmancometh.com\/wp-includes\/js\/twemoji.js?ver=5.5.9"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * So easy, even a baby could do it! * * To test for Emoji 13 support, try to render a new emoji: Man Feeding Baby. * * The Man Feeding Baby emoji is a ZWJ sequence combining 👨 Man, a Zero Width Joiner and 🍼 Baby Bottle. * * 0xD83D, 0xDC68 == Man emoji. * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0xD83C, 0xDF7C == Baby Bottle. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0xD83D, 0xDC68, 0x200D, 0xD83C, 0xDF7C], [0xD83D, 0xDC68, 0x200B, 0xD83C, 0xDF7C] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='http://thepigmancometh.com/wp-includes/css/dist/block-library/style.css?ver=5.5.9' type='text/css' media='all' /> <link rel='stylesheet' id='inkblot-theme-css' href='http://thepigmancometh.com/wp-content/themes/inkblot/style.css?ver=5.5.9' type='text/css' media='all' /> <style id='inkblot-theme-inline-css' type='text/css'> .sidebar1{width:25%}.sidebar2{width:20%}.sidebar3{width:20%}main{width:calc(55% - 4px)}.wrapper{max-width:1280px;font-family:"Taviraj", sans-serif;background-color:#f7fcff;color:#000000}.document-header{max-width:1280px}.document-footer{max-width:1280px}body{font-size:95%;font-family:"Taviraj", sans-serif;background-color:#4aa8e8;color:#0800ff}h1:not(.site){font-family:"Taviraj", sans-serif}h2{font-family:"Taviraj", sans-serif}h3{font-family:"Taviraj", sans-serif}h4{font-family:"Taviraj", sans-serif}h5{font-family:"Taviraj", sans-serif}h6{font-family:"Taviraj", sans-serif}input{background-color:#f7fcff;color:#000000;border-color:#4054ed}textarea{background-color:#f7fcff;color:#000000;border-color:#4054ed}.banner nav{background-color:#fc3a87;color:#1500ff}.banner ul ul{background-color:#fc3a87;color:#1500ff}.banner select{background-color:#fc3a87;color:#1500ff}.contentinfo{background-color:#fc3a87;color:#1500ff}.post-webcomic nav{background-color:#fc3a87;color:#1500ff}button{background-color:#fc3a87;color:#1500ff}input[type="submit"]{background-color:#fc3a87;color:#1500ff}input[type="reset"]{background-color:#fc3a87;color:#1500ff}input[type="button"]{background-color:#fc3a87;color:#1500ff}a{color:#ff0000}a:focus{color:#6dbcdb}a:hover{color:#6dbcdb}button:focus{background-color:#4054ed}button:hover{background-color:#4054ed}input[type="submit"]:focus{background-color:#4054ed}input[type="submit"]:hover{background-color:#4054ed}input[type="reset"]:focus{background-color:#4054ed}input[type="reset"]:hover{background-color:#4054ed}input[type="button"]:focus{background-color:#4054ed}input[type="button"]:hover{background-color:#4054ed}.wrapper a{color:#4054ed}.post-footer span{color:#4054ed}nav.pagination{color:#4054ed}blockquote{border-color:#4054ed}hr{border-color:#4054ed}pre{border-color:#4054ed}th{border-color:#4054ed}td{border-color:#4054ed}fieldset{border-color:#4054ed}.post-footer{border-color:#4054ed}.comment{border-color:#4054ed}.comment .comment{border-color:#4054ed}.pingback{border-color:#4054ed}.trackback{border-color:#4054ed}.bypostauthor{border-color:#4054ed}.wrapper a:focus{color:#6dbcdb}.wrapper a:hover{color:#6dbcdb}input:focus{border-color:#6dbcdb}input:hover{border-color:#6dbcdb}textarea:focus{border-color:#6dbcdb}textarea:hover{border-color:#6dbcdb}.banner nav:before{color:#1500ff}.banner nav a{color:#1500ff}.contentinfo a{color:#1500ff}.post-webcomic nav a{color:#1500ff}.banner nav:focus:before{color:#0037ff}.banner nav:hover:before{color:#0037ff}.banner nav a:focus{color:#0037ff}.banner nav a:hover{color:#0037ff}.banner select:focus{color:#0037ff}.banner select:hover{color:#0037ff}.banner li:focus > a{color:#0037ff}.banner li:hover > a{color:#0037ff}.banner li.current_page_item > a{color:#0037ff}.banner li.current_page_ancestor > a{color:#0037ff}.contentinfo a:focus{color:#0037ff}.contentinfo a:hover{color:#0037ff}.post-webcomic nav a:focus{color:#0037ff}.post-webcomic nav a:hover{color:#0037ff}.banner > a{font-family:"Taviraj", sans-serif}.banner h1{display:none;visibility:hidden}.banner p{display:none;visibility:hidden}@media only screen and (max-width: 800px) { main, .sidebar1, .sidebar2, .sidebar3 {width: 100%} .two-column.content-right main, .three-column.content-center main, .three-column.content-right main, .four-column.content-left main, .four-column.content-right main, .four-column.content-far-right main {-moz-order: 1; -ms-order: 1; -o-order: 1; -webkit-order: 1; order: 1} .banner nav {background: none} .banner nav:before {display: block; visibility: visible} .banner nav ul {display: none; visibility: hidden} .banner nav select {display: block; visibility: visible; width: 100%} }ul li { list-style-type: none; } </style> <link rel='stylesheet' id='inkblot-font-css' href='https://fonts.googleapis.com/css?family=Taviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&ver=5.5.9' type='text/css' media='all' /> <script type='text/javascript' src='http://thepigmancometh.com/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="http://thepigmancometh.com/wp-json/" /><link rel="alternate" type="application/json" href="http://thepigmancometh.com/wp-json/wp/v2/categories/7" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://thepigmancometh.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://thepigmancometh.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.9" /> <link rel='stylesheet' id='custom_stylesheet' href='http://thepigmancometh.com/wp-content/uploads/css/custom_style.css' type='text/css' media='all' /> <!-- Analytics by WP-Statistics v12.6.13 - https://wp-statistics.com/ --> </head> <body id="document" class="archive category category-class-issues category-7 custom-background three-column content-left responsive"> <a href="#content">Skip to content</a> <div class="wrapper"> <header role="banner" class="banner widgets columns-1"> <a href="http://thepigmancometh.com" rel="home"> <h1 class="site">The Pigman Cometh !</h1> <p>The Snarkings of a Snarky Swine</p> <img src="http://thepigmancometh.com/wp-content/uploads/2015/09/PIGMAN-HEADER-SNARKINGS-1280-x-240-22-SEPTEMBER-2015-.png" width="1280" height="240" alt="The Pigman Cometh !"> </a> <nav role="navigation" aria-label="Primary Navigation"> <ul id="menu-menu-1" class="menu"><li id="menu-item-5057" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-5057"><a href="http://thepigmancometh.com/">Home</a></li> <li id="menu-item-5061" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5061"><a href="http://thepigmancometh.com/category/pigman-cometh-cartoons/">The Pigman Cometh Cartoons</a></li> <li id="menu-item-5058" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5058"><a href="http://thepigmancometh.com/yo-trolls/">Commenting Policy</a></li> <li id="menu-item-5059" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5059"><a href="http://thepigmancometh.com/f-a-q/">F.A.Q</a></li> </ul><select><option value="http://thepigmancometh.com/" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-5057" data-target="">Home</option><option value="http://thepigmancometh.com/category/pigman-cometh-cartoons/" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5061" data-target="">The Pigman Cometh Cartoons</option><option value="http://thepigmancometh.com/yo-trolls/" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5058" data-target="">Commenting Policy</option><option value="http://thepigmancometh.com/f-a-q/" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5059" data-target="">F.A.Q</option></select> </nav> </header><!-- .banner --> <div id="content" class="content" tabindex="-1"> <main role="main"> <header class="page-header"> <h1><span class="screen-reader-text">Posts categoriezed as </span>Class Issues</h1> </header><!-- .page-header --> <article role="article" id="post-6877" class="post-6877 post type-post status-publish format-standard hentry category-class-issues"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/12/15/asbestos-in-babys-diapers-you-got-to-be-shitting-me/" rel="bookmark">Asbestos in baby’s diapers? You got to be shitting me!</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/12/15/asbestos-in-babys-diapers-you-got-to-be-shitting-me/" rel="bookmark"><span class="screen-reader-text">Asbestos in baby’s diapers? You got to be shitting me! published on </span><time datetime="2024-12-15T10:33:09+11:00">December 15, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Asbestos in baby’s diapers? You got to be shitting me!, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>Folks, have you ever used Johnson & Johnson’s baby powder? Of course you have, we all have. And have you ever breathed it in? Of course you have, and you’ve probably even done it on purpose because they made sure it smells so good! Nice of them, huh? Also nice of them is the fact that they only charge you for the talc but give you some asbestos samples for free! That’s right, folks, there’s asbestos in your baby powder! And it’s not a recent giveaway, either, they’ve been knowingly doing this for at least fifty years! That’s how long ago scientists told them “Oopsie! Looks like there’s asbestos in this here talcum powder!” Yet, presumably because it’s too expensive to separate the talc from the asbestos (talc is mined and usually found in places where you find asbestos), they kept selling us the filthy shit! Your ass has had millions of asbestos molecules on it! Worse yet, your mom spent years breathing in that carcinogenic garbage every time she powdered your ass!</p> <p>How do we know all this? Because a few years ago some women sued the company and they won a multi-billion dollar settlement! This is when we found out that the company had known all along that its product contained a carcinogen for which there is no safe amount. Even a bit of this shit can give you cancer, and women with babies are breathing in a lot more than just a bit. At this point there are literally tens of thousands of lawsuits against Johnson & Johnson, with literally tens of thousands of victims! And yet i’m willing to bet this is the first time most of you have heard of this, right? Because that’s how the media does things. If the villains are in the same plutocratic club they’re in, they cover up for them — even if it means that people keep using a carcinogenic product. Sick motherfuckers all of them, and then they wonder why the people hate them almost as much as they hate the corporations they serve. The video below gives you the gist of the matter, then goes into the way that Johnson & Johnson are trying to weasel out of paying compensation and damages by putting the liability into a separate subsidiary company. Quite a business model they’ve got there — kill people for profit, then try to weasel out of having to pay for it. No wonder the folks cheer when a CEO gets popped!</p> <p><iframe title="The Shocking Reason Johnson & Johnson Is Declaring Bankruptcy" width="900" height="506" src="https://www.youtube.com/embed/tpxzjGxSjA8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> </p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/class-issues/" rel="tag">Class Issues</a></span> </footer><!-- .post-footer --> </article><!-- #post-6877 --> <article role="article" id="post-6873" class="post-6873 post type-post status-publish format-standard hentry category-class-issues"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/12/11/is-the-left-wing-alternative-media-really-left-wing/" rel="bookmark">Is The Left Wing Alternative Media Really Left Wing?</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/12/11/is-the-left-wing-alternative-media-really-left-wing/" rel="bookmark"><span class="screen-reader-text">Is The Left Wing Alternative Media Really Left Wing? published on </span><time datetime="2024-12-11T10:05:27+11:00">December 11, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Is The Left Wing Alternative Media Really Left Wing?, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>This question has been bothering me for quite a few years. Why? Because of what seems to be an almost complete ban on discussing the WEF and the Great Reset.</p> <p>A few days ago i wake up, go to read the news, and there’s an article complaining that companies are moving to make everything a service instead of a product, so i think “well, duh. They fucking TOLD us they would do that!” Therein, boys and girls, lies the trigger for this little rant.</p> <p>It reminded me of just how huge this apparent ban on the WEF and its nefarious plans is and i just had to sit down and rant lest my head explode. How, for fuck’s sake, do the online Leftist commentators manage to almost completely avoid something as shocking as the world’s biggest, most evil corporations coming out and telling us that by 2030 we will own nothing and have to rent everything — from them, of course? It’s not like they don’t know about it, since they interact with the Populist Right and that group has given the WEF’s blueprint for dystopia a fair amount of attention. And i’m sure they know who the WEF represents, so they know that the world’s biggest weapons manufacturers, the world’s worst polluters, the legacy media that’s always lying to us, and the banks that caused the Global Financial Crisis are moving us towards a future where they control everything of any importance and the rest of us have to rent it from them, and yet this doesn’t seem to worry them in the least!</p> <p>What kind of fucking Leftists are these? Capitalism comes out and announces that it will soon be put on steroids and the Left Wing alternative media types all shrug their shoulders? Seems very odd to me. Unless, of course, they are yet another misleadership class put out there to make us think that we still have some kind of representation in the media, albeit only in the alternative media, while misdirecting our attention to matters less damaging to the Plutocracy that rules us. Sure, they expose many things that the Plutocrats would rather we didn’t know, but most of those pale in comparison to the transformation that capitalism is going through. </p> <p>And its not just the Leftists, it’s the few liberals still out there. I swear, i am the ONLY liberal or leftist i can think of that has rung the alarm bells over the WEF and its plans for us, and it’s fucking driving me nuts! It’s like that meme of the dog saying everything’s fine while the house burns around him, and i’m outside the house shouting “run, you stupid bastard” and he just keeps ignoring me! </p> <p>Rant over.</p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/class-issues/" rel="tag">Class Issues</a></span> </footer><!-- .post-footer --> </article><!-- #post-6873 --> <article role="article" id="post-6831" class="post-6831 post type-post status-publish format-standard hentry category-class-issues category-gender-issues category-politics"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/09/09/trans-issues-broke-up-cornell-west-greens-alliance/" rel="bookmark">Trans issues broke up Cornell West/Greens alliance…</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/09/09/trans-issues-broke-up-cornell-west-greens-alliance/" rel="bookmark"><span class="screen-reader-text">Trans issues broke up Cornell West/Greens alliance… published on </span><time datetime="2024-09-09T10:31:43+10:00">September 9, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Trans issues broke up Cornell West/Greens alliance…, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>…according to Jill Stein. This is a couple of months old, but it’s still a great example of WHY Identity Politics has been turned into such a big thing.<br /> I post this here as an example of a concrete and undeniable example of just how much IdPol hurts the Left and the liberals. Let’s face it, for all his flaws, West is a far more compelling and charismatic figure than Stein so they would probably be doing better with him at the helm, but he isn’t down with aspects of the trans ideology so that potentially successful alliance got a bullet to the nogin. Make no mistake, folks, THIS is why the MSM pushes all this trans crap — it sure as hell isn’t because they care about trans people, that’s for sure.</p> <p><iframe title="Jill Stein Responds to Cornel West Saying He's Lost "All Respect" For Her" width="900" height="506" src="https://www.youtube.com/embed/hue6TN0A1Vk?start=660&feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/class-issues/" rel="tag">Class Issues</a>, <a href="http://thepigmancometh.com/category/gender-issues/" rel="tag">Gender Issues</a>, <a href="http://thepigmancometh.com/category/politics/" rel="tag">Politics</a></span> </footer><!-- .post-footer --> </article><!-- #post-6831 --> <article role="article" id="post-6820" class="post-6820 post type-post status-publish format-standard hentry category-class-issues category-politics category-religion"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/08/01/jews-not-actually-in-charge/" rel="bookmark">Jews — Not Actually In Charge</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/08/01/jews-not-actually-in-charge/" rel="bookmark"><span class="screen-reader-text">Jews — Not Actually In Charge published on </span><time datetime="2024-08-01T20:05:56+10:00">August 1, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Jews — Not Actually In Charge, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>Due to the Zionist genocide i, like so many others, have been looking into the whole Jewish power thing. I was actually going to do a couple of loooong toons about it, but as nothing very spectacular was found i decided to instead make this quick text post, just for the record. A lot of these figures are approximate as i checked this shit over the period of a few weeks and my memory is crap.</p> <p>The gist of it is, basically, that it turns out that the Jews don’t run the world. Well, duh. Hell, they don’t even seem to run the Western World. Make no mistake — they are clearly overrepresented in most avenues of power, but they are still a minority. Since i take a liberal view of the world i didn’t bother much with the management class — a.k.a the politicians — but went after the plutocrats who own the motherfuckers previously mentioned.</p> <p>Worldwide, four of the ten richest people are Jews so they ain’t doin’ too badly, but still not ruling the world. And of course, all of those are in the Western world so that’s where they would be exercising most of their power.</p> <p>It also turns out, despite the well-worn stereotype, that worldwide not a single one of the top ten banks is run by Jews. Funnily enough, the most over-represented group there are the Chinese. Three or four of the top ten are Chinese banks.</p> <p>In terms of hedge funds, which i don’t know much about but which get mentioned a lot by the Far Right because Blackrock is headed by Jews, once again we find Jews to be a very small minority worldwide. I think it’s like one or two of them headed by Jews.</p> <p>I also took a look at the top ten richest dirtbags in a few Western countries and while Jews were overrepresented they were almost always a minority. In the UK, it’s one or two. In Australia, it’s two or three. In France it’s four out of ten, which is pretty surprising. In Germany, it’s none out of ten, which is not pretty surprising. Where it gets interesting is America….</p> <p>Turns out Jews are SIX of the ten richest Americans. How about that! Not quite running the world, probably not even America, but clearly a very, very powerful group in the US. I also checked out the top 25, and of those, eleven are Jews so almost fifty percent. Beyond that i didn’t go, so for all i know all of the other 75 in the top 100 could be Jews, or maybe none of them. Frankly, i refuse to look up THAT many Wikipedia bios.</p> <p>Another thing about the US is that the great majority of the MSM is owned by four conglomerates, three of which have Jewish CEOs. Two of those — including Comcast, which is the biggest — are also owned by Jews. I have no way of quantifying this, of course, but it’s probably a good guess that Jews therefore control about half of the MSM.</p> <p>Funnily enough, the most stereotypical area of Jewish power — the banks — is, in America as in the rest of the world, mostly gentile. As i recall, it’s only one or two of the ten biggest American banks that are run by Jews. Lots of Irish folks, though, which was surprising.</p> <p>When it comes to the ten biggest American hedge funds, most are run by gentiles, though Blackrock is the biggest and totally owned and controlled by Jews so that’s the one the Far Right focuses on. Of the others in the top ten, only one or two more are Jewish.</p> <p>In politics, they have a minority, with less than 10% of the Congress being Jewish. Contrary to what some Far Right loons claim, they do NOT make up two thirds of Biden’s cabinet! Hell, ten of the sixteen cabinet members are either Black, Asian, or Native American! And at least a couple of the Whites are Catholics, so while Blinken gets a lot of attention, it is a heavily gentile cabinet. I don’t take the Israel lobby’s power into account in all this as their power is grossly exaggerated. Even Trump is only getting 10-20 % of his campaign funding from the Zionists, and he is an exception. Sure, they bribe a lot of politicians lower down the ladder, but that’s not what keeps America on Israel’s side — that boils down to the fact that Israel is America’s unsinkable aircraft carrier in that region. Or, as Joe The Cabbage once put it, if Israel did not exist America would have to invent it to further its interests in that area. Look it up, there’s a video. Amazing how these guys can just admit shit, isn’t it?</p> <p>So there you have it. Jews aren’t to blame for all of the world’s woes, only for some of them. And even then it’s the powerful Jews, not the Jew on the street — Shlomo Sixpack has about as much power as Joe Sixpack, which is to say none. But facts won’t stop Jew-haters ( the real kind, not the “genocide is bad even when done by Jewish people” kind ) because facts never stop any kind of bigot. As a White Supremacist character by the name of Salty Cracker was going to say at the end of the toon, “it’s just more fun to blame it all on the Jews.”</p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/class-issues/" rel="tag">Class Issues</a>, <a href="http://thepigmancometh.com/category/politics/" rel="tag">Politics</a>, <a href="http://thepigmancometh.com/category/religion/" rel="tag">Religion</a></span> </footer><!-- .post-footer --> </article><!-- #post-6820 --> <article role="article" id="post-6808" class="post-6808 post type-post status-publish format-standard hentry category-class-issues category-stupidity-is-bad"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/07/21/we-are-living-in-an-era-of-unprecedented-irrationality/" rel="bookmark">We are living in an era of unprecedented irrationality</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/07/21/we-are-living-in-an-era-of-unprecedented-irrationality/" rel="bookmark"><span class="screen-reader-text">We are living in an era of unprecedented irrationality published on </span><time datetime="2024-07-21T11:34:54+10:00">July 21, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of We are living in an era of unprecedented irrationality, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>Don’t let all the high tech fool you, we <em>are</em> living in an era of unprecedented irrationality.</p> <p>Think about it. Back in the Dark Ages they believed garbage that could not be proved but also could not be disproved, crap like witches, werewolves, demons and such. You can’t prove that your sheep got sick and died because your neighbour is a witch who has put a curse on them, but you can’t <em>disprove</em> it either. Maybe the sheep got sick because of bad luck, maybe they got sick because of a curse — there’s no way of proving one way or the other. These days, though, millions of people believe things that <em>can</em> be disproved. Take for example what i see as the spearhead of this descent into madness — the whole trans thing. You can’t prove that Ellen Page isn’t a witch, but you<em> can</em> prove that she isn’t a man — you just break into her gynecologist’s office and steal her records! And yet millions of people now believe she’s actually a man called Elliot Page! This is a level of irrationality that would have had even the low-IQued peasants of the Dark Ages going “dude, you need help!” Yet here we are, stuck in a clown world where even otherwise smart people buy the idea that woman = man, man = woman, and pretty soon that up = down.</p> <p>This is where we are now, and since irrationality largely serves those who rule us, i don’t see this doing anything except getting worse.</p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/class-issues/" rel="tag">Class Issues</a>, <a href="http://thepigmancometh.com/category/stupidity-is-bad/" rel="tag">Stupidity Is Bad</a></span> </footer><!-- .post-footer --> </article><!-- #post-6808 --> <nav class="navigation pagination" role="navigation" aria-label="Posts"> <h2 class="screen-reader-text">Posts navigation</h2> <div class="nav-links"><span aria-current="page" class="page-numbers current"><span class="screen-reader-text">Page </span>1</span> <a class="page-numbers" href="http://thepigmancometh.com/category/class-issues/page/2/"><span class="screen-reader-text">Page </span>2</a> <span class="page-numbers dots">…</span> <a class="page-numbers" href="http://thepigmancometh.com/category/class-issues/page/27/"><span class="screen-reader-text">Page </span>27</a> <a class="next page-numbers" href="http://thepigmancometh.com/category/class-issues/page/2/">Next Page »</a></div> </nav> </main> <div class="sidebar1 widgets columns-1"> <h1 class="screen-reader-text">Primary Sidebar</h1> <aside id="linkcat-54" class="widget widget_links"><h2>The Pigman's Social Links</h2> <ul class='xoxo blogroll'> <li><a href="https://gab.com/ThePigman">My Gab account</a></li> <li><a href="https://gettr.com/user/thepigman">My Gettr Account</a></li> <li><a href="https://rumble.com/user/TheRealPigman">Rumble</a></li> <li><a href="https://thepigmancometh.locals.com">The Pigman on Locals</a></li> <li><a href="https://www.tiktok.com/@thereallyrealpigman?lang=en">Tik Tok. Alas, yes.</a></li> </ul> </aside> <aside id="widget_sp_image-6" class="widget widget_sp_image"><img width="801" height="985" class="attachment-full" style="max-width: 100%;" srcset="http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar.png 801w, http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar-244x300.png 244w, http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar-117x144.png 117w" sizes="(max-width: 801px) 100vw, 801px" src="http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar.png" /></aside><aside id="custom_html-2" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://twitter.com/The__Pigman?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @The__Pigman</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div></aside><aside id="meta-4" class="widget widget_meta"><h2>Meta</h2> <ul> <li><a href="http://thepigmancometh.com/wp-login.php">Log in</a></li> <li><a href="http://thepigmancometh.com/feed/">Entries feed</a></li> <li><a href="http://thepigmancometh.com/comments/feed/">Comments feed</a></li> <li><a href="https://wordpress.org/">WordPress.org</a></li> </ul> </aside> </div><!-- .sidebar1 --> <div class="sidebar2 widgets columns-1"> <h1 class="screen-reader-text">Secondary Sidebar</h1> <aside id="search-6" class="widget widget_search"> <form action="http://thepigmancometh.com/" role="search" class="search"> <p> <label for="s1">Search</label> <input type="search" id="s1" name="s"> </p> <p> <button type="submit">Search</button> </p> </form><!-- .search --></aside> <aside id="recent-posts-5" class="widget widget_recent_entries"> <h2>Recent Oinkings</h2> <ul> <li> <a href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/">Where’s the White Luke Cage, motherfuckers?</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/17/true-2/">True</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/15/asbestos-in-babys-diapers-you-got-to-be-shitting-me/">Asbestos in baby’s diapers? You got to be shitting me!</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/11/is-the-left-wing-alternative-media-really-left-wing/">Is The Left Wing Alternative Media Really Left Wing?</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/06/would-you-lament-the-death-of-a-crack-dealer/">Would you lament the death of a crack dealer?</a> </li> </ul> </aside><aside id="categories-6" class="widget widget_categories"><h2>Classified Oinkings</h2> <ul> <li class="cat-item cat-item-56"><a href="http://thepigmancometh.com/category/animal-welfare/">Animal Welfare</a> </li> <li class="cat-item cat-item-38"><a href="http://thepigmancometh.com/category/civil-liberties/">Civil Liberties</a> </li> <li class="cat-item cat-item-7 current-cat"><a aria-current="page" href="http://thepigmancometh.com/category/class-issues/">Class Issues</a> </li> <li class="cat-item cat-item-55"><a href="http://thepigmancometh.com/category/clown-world-cartoons/">Clown World Cartoons</a> </li> <li class="cat-item cat-item-37"><a href="http://thepigmancometh.com/category/gender-issues/">Gender Issues</a> </li> <li class="cat-item cat-item-4"><a href="http://thepigmancometh.com/category/pigman-cometh-cartoons/">Pigman Cometh Cartoons</a> </li> <li class="cat-item cat-item-48"><a href="http://thepigmancometh.com/category/pigman-videos/">Pigman Videos</a> </li> <li class="cat-item cat-item-42"><a href="http://thepigmancometh.com/category/politics/">Politics</a> </li> <li class="cat-item cat-item-6"><a href="http://thepigmancometh.com/category/popular-culture/">Popular Culture</a> </li> <li class="cat-item cat-item-22"><a href="http://thepigmancometh.com/category/race/">Race</a> </li> <li class="cat-item cat-item-36"><a href="http://thepigmancometh.com/category/religion/">Religion</a> </li> <li class="cat-item cat-item-44"><a href="http://thepigmancometh.com/category/stupidity-is-bad/">Stupidity Is Bad</a> </li> <li class="cat-item cat-item-57"><a href="http://thepigmancometh.com/category/the-environment/">The Environment</a> </li> <li class="cat-item cat-item-43"><a href="http://thepigmancometh.com/category/the-law/">The Law</a> </li> <li class="cat-item cat-item-8"><a href="http://thepigmancometh.com/category/war-sucks/">War Sucks</a> </li> </ul> </aside> </div><!-- .sidebar2 --> </div><!-- #content.content --> <footer role="contentinfo" class="contentinfo widgets columns-1"> <a href="#document">© 2009–2025 The Pigman Cometh !</a> • Powered by <a href="//wordpress.org">WordPress</a> with <a href="//github.com/mgsisk/inkblot">Inkblot</a> </footer><!-- .contentinfo --> </div><!-- .wrapper --> <script> document.addEventListener('DOMContentLoaded', function(event) { // check remember me by default var forms = document.querySelectorAll('form'); if (forms) { // look out for inputs named rememberme var rememberArray = []; var rememberMe = document.getElementsByName('rememberme'); if( rememberMe.length ) { rememberArray.push(rememberMe); } // look out for inputs named remember var remember = document.getElementsByName('remember'); if( remember.length ) { rememberArray.push(remember); } // if there are remember me inputs if( rememberArray.length ) { // 'check' the inputs so they're active for (i = 0; i < rememberArray.length; i++) { for (x = 0; x < rememberArray[i].length; x++) { rememberArray[i][x].checked = true; } } } // test for Ultimate Member Plugin forms // find the UM checkboxes var UmCheckboxIcon = document.querySelectorAll('.um-icon-android-checkbox-outline-blank'); var UmCheckboxLabel = document.querySelectorAll('.um-field-checkbox'); if( UmCheckboxIcon.length && UmCheckboxLabel.length ) { // loop through UM checkboxes for (i = 0; i < UmCheckboxLabel.length; i++) { // find the UM input element var UMCheckboxElement = UmCheckboxLabel[i].children; var UMCheckboxElementName = UMCheckboxElement[0].getAttribute('name'); // check if UM input element is remember me box if( UMCheckboxElementName === 'remember' || UMCheckboxElementName === 'rememberme' ) { // activate the UM checkbox if it is a remember me box UmCheckboxLabel[i].classList.add('active'); // swap out UM classes to show the active state UmCheckboxIcon[i].classList.add('um-icon-android-checkbox-outline'); UmCheckboxIcon[i].classList.remove('um-icon-android-checkbox-outline-blank'); } // endif } // end for } // endif UM // test for AR Member var ArmRememberMeCheckboxContainer = document.querySelectorAll('.arm_form_input_container_rememberme'); if( ArmRememberMeCheckboxContainer.length ) { for (i = 0; i < ArmRememberMeCheckboxContainer.length; i++) { var ArmRememberMeCheckbox = ArmRememberMeCheckboxContainer[i].querySelectorAll('md-checkbox'); if( ArmRememberMeCheckbox.length ) { // loop through AR Member checkboxes for (x = 0; x < ArmRememberMeCheckbox.length; x++) { if( ArmRememberMeCheckbox[x].classList.contains('ng-empty') ) { ArmRememberMeCheckbox[x].click(); } } } } } // end if AR Member } // endif forms }); </script><script type='text/javascript' src='http://thepigmancometh.com/wp-content/themes/inkblot/-/js/script.js?ver=5.5.9' id='inkblot-script-js'></script> <script type='text/javascript' src='http://thepigmancometh.com/wp-includes/js/wp-embed.js?ver=5.5.9' id='wp-embed-js'></script> </body><!-- #document --> </html>