CINXE.COM
The Pigman Cometh ! – The Snarkings of a Snarky Swine
<!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>The Pigman Cometh ! – The Snarkings of a Snarky Swine</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/" /> <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="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="home blog 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 current-menu-item current_page_item menu-item-home menu-item-5057"><a href="http://thepigmancometh.com/" aria-current="page">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 current-menu-item current_page_item menu-item-home menu-item-5057" data-target="" selected='selected'>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"> <article role="article" id="post-6884" class="post-6884 post type-post status-publish format-standard hentry category-politics category-popular-culture category-race"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/" rel="bookmark">Where’s the White Luke Cage, motherfuckers?</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/" rel="bookmark"><span class="screen-reader-text">Where’s the White Luke Cage, motherfuckers? published on </span><time datetime="2025-02-02T08:47:34+11:00">February 2, 2025</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Where’s the White Luke Cage, motherfuckers?, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>So Captain America is now a Black guy. Have any Black characters been rebooted as White guys? Is Luke Cage now a poor cracker from the trailer park instead of a poor brother from the ‘hood? No, not to my knowledge. So what’s with all this crap? Why does the race-flipping almost always go in one direction?</p> <p>Is it because the Establishment media is trying to break down the barriers between the races? No, it isn’t. Were that the case, you would have Black characters going albino all over the place, but you don’t. Is it because the Establishment ( which is run almost completely by White motherfuckers ) is concerned about Black actors not having enough iconic characters to play? Again no, because even if the race-flipping went both ways it would still benefit Blacks far more than Whites. For every Luke Cage played by a White man there would be literally dozens of Captain Americas played by Black men.</p> <p>So what is going on? Well, in my view this is simply part of the psychological war that the Establishment has been waging against White people for the last twenty to thirty years. The same people who over-represent White crime while under-representing Black crime (in real life Black Americans commit about half the murders. Is that the picture you get watching things like Law and Order?) and acting as if things like slavery and empire are uniquely White evils have decided to deliver the message that, because we are an inferior race, White people will no longer have their own cultural properties. From now on there will be two sets of cultural properties in America — those owned by Blacks and Whites and those owned only by Blacks. Black people get Luke Cage all to themselves but White folks, being lesser than Black folks, have to share the Captain Americas with the Black folks. The message sent is a simple one, but also a powerful one and the people doing this know it. Imagine if there were a huge shift in Establishment popular culture and suddenly Blacks aren’t allowed to play White characters, but Whites are playing Luke Cage, Shaft, and the Black Panther! Sure enough, the pseudo-lefties supporting the current state of affairs would be making the same argument i am making — and they would be right to do so.</p> <p>This view invites the rather obvious question of “why would a White Establishment be beating up on White folks?!?!?” Well, the answer is mostly a matter of numbers — White folks are simply the majority of people in America, so they pose a greater threat to the Establishment than the Black people do — i give you as exhibit A the January 6 protest/riot — and therefore they have to be kept down. The other factor is that while angry Black people fight the power by burning down working class neighborhoods, White people fight the power by storming the capitol! The way the Establishment sees it, if they convince Whitey that he is shit, Whitey will stop taking his anger out on them and re-direct it towards his own community — just like Blacks do.</p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/politics/" rel="tag">Politics</a>, <a href="http://thepigmancometh.com/category/popular-culture/" rel="tag">Popular Culture</a>, <a href="http://thepigmancometh.com/category/race/" rel="tag">Race</a></span> </footer><!-- .post-footer --> </article><!-- #post-6884 --> <article role="article" id="post-6880" class="post-6880 post type-post status-publish format-standard hentry category-pigman-cometh-cartoons category-the-environment"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/12/17/true-2/" rel="bookmark">True</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/12/17/true-2/" rel="bookmark"><span class="screen-reader-text">True published on </span><time datetime="2024-12-17T18:42:56+11:00">December 17, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of True, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p><a href="http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024.png"><img loading="lazy" class="aligncenter size-full wp-image-6881" src="http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024.png" alt="" width="1075" height="1601" srcset="http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024.png 1075w, http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024-201x300.png 201w, http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024-688x1024.png 688w, http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024-768x1144.png 768w, http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024-1031x1536.png 1031w, http://thepigmancometh.com/wp-content/uploads/2024/12/PIGMAN-RASTUS-PLASTIC-SPOON-17-DECEMBER-2024-97x144.png 97w" sizes="(max-width: 1075px) 100vw, 1075px" /></a></p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/pigman-cometh-cartoons/" rel="tag">Pigman Cometh Cartoons</a>, <a href="http://thepigmancometh.com/category/the-environment/" rel="tag">The Environment</a></span> </footer><!-- .post-footer --> </article><!-- #post-6880 --> <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-6860" class="post-6860 post type-post status-publish format-standard hentry category-politics"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/12/06/would-you-lament-the-death-of-a-crack-dealer/" rel="bookmark">Would you lament the death of a crack dealer?</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/12/06/would-you-lament-the-death-of-a-crack-dealer/" rel="bookmark"><span class="screen-reader-text">Would you lament the death of a crack dealer? published on </span><time datetime="2024-12-06T09:04:45+11:00">December 6, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Would you lament the death of a crack dealer?, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>If not, then don’t lament the death of Brian Thompson. I guarantee you, that motherfucker was responsible for more misery and death than the average crack dealer. Not only was he the CEO of an evil health “insurance” company, he was the CEO of <em>the</em> most evil health “insurance” company. His fucking company rejected about 32% of claims — the industry average is 16% — which is literally the worst in the industry! How many deaths per year does that add up to? A lot more than the average crack dealer’s, that’s my guess. And then there’s just plain suffering that goes on year after year without killing you, all because you aren’t getting the health coverage you paid for. And let’s not forget bankruptcy. Health care costs are one of the most common causes of filing for bankruptcy in the US, and you can bet a shitload of those people file because companies like UnitedHealth have cheated them and they therefore need to use up what little money they have to stay alive — “well, there goes the kids’ college fund. Guess they’ll have to settle for flipping burgers the rest of their lives.” Imagine how much misery and even suicide all those bankruptcies drive. Again, a lot more than the average crack dealer’s. </p> <p>And yes, his evil ways are almost certainly what got Brian Thompson whacked. According to the AP, the bullets had the words “deny,” “defend” and “depose,” written on them, which seems to be a reference to the health scam industry’s tactics of “delay, deny, defend,” used to avoid paying claims. Oh, and here’s another reason i’m not crying any tears over this dead asshole — he had been receiving threats and despite that was still wandering around without a bodyguard! Evil <em>and</em> stupid! The guy with the gun killed two types of asshole in one go! How very efficient of him! </p> <p>So fuck Brian Thompson, fuck all his kind, and if the shooter sets up a crowdfunder for his legal defence i will happily chip in 100 bucks.</p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/politics/" rel="tag">Politics</a></span> </footer><!-- .post-footer --> </article><!-- #post-6860 --> <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/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/page/135/"><span class="screen-reader-text">Page </span>135</a> <a class="next page-numbers" href="http://thepigmancometh.com/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"><a 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>