CINXE.COM

Politics – 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>Politics &#8211; 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 ! &raquo; Feed" href="http://thepigmancometh.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! &raquo; Comments Feed" href="http://thepigmancometh.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! &raquo; Politics Category Feed" href="http://thepigmancometh.com/category/politics/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&#038;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/42" /><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-politics category-42 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>Politics</h1> </header><!-- .page-header --> <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&#8217;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&#8217;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&#8217;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 &#8212; 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 &#8212; 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 &#8212; White folks are simply the majority of people in America, so they pose a greater threat to the Establishment than the Black people do &#8212; i give you as exhibit A the January 6 protest/riot &#8212; 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 &#8212; 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-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 &#8212; the industry average is 16% &#8212; 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 &#8212; “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 &#8212; 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 --> <article role="article" id="post-6856" class="post-6856 post type-post status-publish format-standard hentry category-politics"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/11/25/no-the-jews-do-not-control-the-world-through-blackmail/" rel="bookmark">No, The Jews Do Not Control The World Through Blackmail</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/11/25/no-the-jews-do-not-control-the-world-through-blackmail/" rel="bookmark"><span class="screen-reader-text">No, The Jews Do Not Control The World Through Blackmail published on </span><time datetime="2024-11-25T09:52:57+11:00">November 25, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of No, The Jews Do Not Control The World Through Blackmail, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>The idea that they do is a claim that comes up very often with the Far Right (the real Far Right, not the SJWs’ “you don’t want men in women’s locker rooms so you must be a fascist” version of the Far Right) when i point out that even though Jews are grossly over-represented in the West’s power structures they are still a minority and therefore not in control. It also comes up a lot when Americans try to explain why Israel supposedly controls America &#8212; “sure, we have the money and the weapons but they have photos of Donald Trump fucking a duck!” So goes the argument.</p> <p>The problem with this is that it assumes that only the powerful Jews are out there digging up dirt on the opposition. How likely is this? So unlikely as to be impossible. The gentile oligarchs are just as smart and amoral as their Jewish counterparts, so it goes without saying that they are gathering dirt with which they hope to blackmail the Jews. The only other possibility is that the Jews are such good and pure people that there is no dirt <em>to</em> get on them. Needless to say, that’s not only offensively anti-gentile but also laughable given what’s happening in Gaza right now. So it’s a very safe assumption that while Soros has dirt on Musk, Musk has dirt on Soros, and that while the Mossad has dirt on everyone in the congress, the CIA has dirt on everyone in the Knesset. This, of course, leads to a stalemate where it is usually impossible to blackmail people on the other side of the fence. There will be cases where one side has a peccadillo, like duck-fucking, while the other side has a major crime, like serial rape, but usually it’s peccadillo vs. peccadillo and that means nobody has an advantage. In other words, while the Mossad may have photos of Donald Trump fucking a duck, you can bet that the CIA has photos of Netanyahu fucking a chicken!</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-6856 --> <article role="article" id="post-6853" class="post-6853 post type-post status-publish format-standard hentry category-politics"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/11/23/no-israel-does-not-control-america/" rel="bookmark">No, Israel Does NOT Control America</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/11/23/no-israel-does-not-control-america/" rel="bookmark"><span class="screen-reader-text">No, Israel Does NOT Control America published on </span><time datetime="2024-11-23T09:55:34+11:00">November 23, 2024</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of No, Israel Does NOT Control America, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>You know what drives Piggy crazy? The fact that so many buy the idea that Israel owns the US.</p> <p> Israel is a mere henchman to the American empire, and the American empire could kill it overnight. True, it is the empire’s main henchman in that part of the world &#8212; its unsinkable aircraft carrier in that region, as one American statesman once put it &#8212; and that is why America puts up with it doing things that hurt its soft power, but the boss is still the boss, even when he is a tolerant one. If America finds a new stooge in that area, and we all hope and pray that they do, they will throw Israel under the bus in the blink of an eye.</p> <p> But what about AIPAC and the Israel lobby, you may ask? The Israel lobby is a willing scapegoat for the American empire. Part of its job is precisely to make it look like the poor helpless American politicians have no choice but to back Israel or they will lose millions of dollars in donations and won’t be able to run for office. In most cases this is pure fiction. The great majority of politicians get a minority of their funding from the Israel lobby, and in some cases would be better off turning down the money and siding with the voters’ increasing disdain for Israel &#8212; Harris being the best example. She would have done far better if she had rejected the Zionists and their money, thereby increasing her popularity with Muslims and the young. Instead, the Democrats chose to continue to back Israel, even though they knew it would hurt them at the ballot box. Why? Because the Dems, like the Republicans, back Israel not because they need the Israel lobby’s money but because it is a henchman so important that if it did not exist, they would have to create it to further their interests in that part of the world. Don’t take Piggy’s word for it, take Joe Biden’s word! This is the cabbage back in the 1980s, when he was not yet a cabbage…</p> <p><iframe width=512 height=330 src='https://www.c-span.org/video/standalone/?c4962369/user-clip-joe-biden-israel-usa-invent-israel-protect-interest-region' allowfullscreen='allowfullscreen' frameborder=0></iframe></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-6853 --> <article role="article" id="post-6851" class="post-6851 post type-post status-publish format-standard hentry category-politics"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2024/11/06/orange-monkey-wins-banana-tree/" rel="bookmark">Orange Monkey Wins Banana Tree</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2024/11/06/orange-monkey-wins-banana-tree/" rel="bookmark"><span class="screen-reader-text">Orange Monkey Wins Banana Tree published on </span><time datetime="2024-11-06T20:04:44+11:00">November 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 Orange Monkey Wins Banana Tree, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>Well, it looks like Trump has finally gotten back into the White House. This is cause for celebration, but of the rather muted kind as this is not the Trump of old.</p> <p>Nonetheless, he looks less likely to start unnecessary wars than Harris, which is the main reason the neo-con Establishment switched to the Democrat Party, and the main reason i was hoping it would turn out this way. The second reason i was backing Trump is that if the propaganda had worked like it did in 2020 that would have been the end for any non-Establishment candidates. The bastards in the Oligarchy would have known that this shit works again and again, and all future outsiders would have been labelled either Hitler or Stalin and they wouldn’t have the slightest chance to get anywhere near the White House. As it is, the Oligarchs now know that they are going to have to come up with something a lot better than telling the American people that a man who spent four years proving he isn’t a fascist is a fascist! Good news for all, and perhaps a sign that the majority of the American electorate is becoming a lot smarter than they have been in the past.</p> <p>Now, of course, we have to worry about all the bad shit Trump will do. Like backing the Gaza genocide with at least as much fervor &#8212; or at least more overt fervor &#8212; than Harris. But who knows, maybe the Establishment has had enough of the Ziofascist state screwing over their soft power and they’ll get Trump to smack Israel down, or at least tell it to get it all over quickly so that the whole thing can be memory-holed. Terrible for the Gazans, but better a quick death than a slow one, poor bastards. </p> <p>We also have to keep an eye on what he does or does not do about Ukraine. He, unlike Harris, at least says he’ll pour water on that spark for a third world war, but then he says a lot of things. What worries me here is that by supporting the American Empire by supporting their Zionist henchman in the Middle East, he may be signalling that he is not so much America First as American Empire First, and since the proxy war is also a project of the American Empire he may find an excuse to keep that one going. But, hey, at least unlike Harris he’s saying the right things. Not much to pin your hopes on, i know, but this is how things are.</p> <p>Oh, and isn’t it weird how quickly the result was called? I was expecting days of tension, instead it was all over in a few hours. A little after 11 pm New York time, the NY Times published a graphic saying he had an 87% chance of winning. That’s when i knew he probably had it in the bag &#8212; when people who hate you say you’re probably gonna win, it means you’re probably gonna win.</p> <p>So congratulations to you, President Trump, and enjoy your bananas.</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-6851 --> <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/politics/page/2/"><span class="screen-reader-text">Page </span>2</a> <span class="page-numbers dots">&hellip;</span> <a class="page-numbers" href="http://thepigmancometh.com/category/politics/page/42/"><span class="screen-reader-text">Page </span>42</a> <a class="next page-numbers" href="http://thepigmancometh.com/category/politics/page/2/">Next Page &raquo;</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&#8217;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 current-cat"><a aria-current="page" 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">&copy; 2009&ndash;2025 The Pigman Cometh !</a> &bull; 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>

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