CINXE.COM

Stupidity Is Bad – 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>Stupidity Is Bad &#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; Stupidity Is Bad Category Feed" href="http://thepigmancometh.com/category/stupidity-is-bad/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/44" /><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-stupidity-is-bad category-44 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>Stupidity Is Bad</h1> </header><!-- .page-header --> <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 &#8212; 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 &#8212; 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 &#8212; you just break into her gynecologist&#8217;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 --> <article role="article" id="post-5964" class="post-5964 post type-post status-publish format-standard hentry category-stupidity-is-bad"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2021/04/08/rantings-of-a-swineherd/" rel="bookmark">Rantings Of A Swineherd</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2021/04/08/rantings-of-a-swineherd/" rel="bookmark"><span class="screen-reader-text">Rantings Of A Swineherd published on </span><time datetime="2021-04-08T09:47:10+10:00">April 8, 2021</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Rantings Of A Swineherd, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>My manager now has a Substack. Partly it&#8217;s his way of saying &#8220;fuck you&#8221; to the fascist scum trying to shut it down, and partly it&#8217;s a place to say things that don&#8217;t fit in anywhere else. Virtually everything posted there will be for free or available on one of the websites.</p> <p>Roll up to hear the<a href="https://michaelclaymore.substack.com/"> Rantings Of A Swineherd!</a></p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/stupidity-is-bad/" rel="tag">Stupidity Is Bad</a></span> </footer><!-- .post-footer --> </article><!-- #post-5964 --> <article role="article" id="post-5707" class="post-5707 post type-post status-publish format-standard hentry category-politics category-stupidity-is-bad"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2020/10/23/i-dont-think-he-meant-that-kind-of-coyote/" rel="bookmark">I don&#8217;t think he meant THAT kind of coyote&#8230;</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2020/10/23/i-dont-think-he-meant-that-kind-of-coyote/" rel="bookmark"><span class="screen-reader-text">I don&#8217;t think he meant THAT kind of coyote&#8230; published on </span><time datetime="2020-10-23T21:21:27+11:00">October 23, 2020</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of I don&#8217;t think he meant THAT kind of coyote&#8230;, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>I swear, when i saw this i thought it was a satire account. But nope, she&#8217;s a real politician &#8212; <a href="https://en.wikipedia.org/wiki/Dar%27shun_Kendrick" rel="noopener noreferrer" target="_blank">a Democrat, of course</a>. Even funnier is that she works as a lawyer and investment adviser despite being, apparently, literally retarded. So retarded that even after people made fun of her she still didn&#8217;t get what she&#8217;d done wrong! Now, how would someone this intellectually challenged end up in a position of power? Well, it ain&#8217;t because she&#8217;s a white male, that&#8217;s for sure! If you don&#8217;t know what the term &#8220;coyote&#8221; means and you work as an accountant or at Wendy&#8217;s, fair enough. But if you don&#8217;t know and you work in politics, you are simply incompetent and need to be kicked out onto the street.</p> <p><img loading="lazy" src="http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is-1024x355.png" alt="" width="900" height="312" class="aligncenter size-large wp-image-5708" srcset="http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is-1024x355.png 1024w, http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is-300x104.png 300w, http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is-768x267.png 768w, http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is-144x50.png 144w, http://thepigmancometh.com/wp-content/uploads/2020/10/lawyer-doesnt-know-what-a-coyote-is.png 1089w" sizes="(max-width: 900px) 100vw, 900px" /></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/stupidity-is-bad/" rel="tag">Stupidity Is Bad</a></span> </footer><!-- .post-footer --> </article><!-- #post-5707 --> <article role="article" id="post-5689" class="post-5689 post type-post status-publish format-standard hentry category-class-issues category-popular-culture category-stupidity-is-bad"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2020/10/19/cheaper-than-ipecac-syrup/" rel="bookmark">Cheaper than Ipecac syrup&#8230;</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2020/10/19/cheaper-than-ipecac-syrup/" rel="bookmark"><span class="screen-reader-text">Cheaper than Ipecac syrup&#8230; published on </span><time datetime="2020-10-19T11:30:59+11:00">October 19, 2020</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Cheaper than Ipecac syrup&#8230;, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>You know those times when you eat something that&#8217;s gone off and the only solution to your woes is to make yourself puke, but the fingers down the throat just aren&#8217;t working? I give you the answer to your problems&#8230;<br /> <img loading="lazy" src="http://thepigmancometh.com/wp-content/uploads/2020/10/lizzo-gross-as-fuck.jpg" alt="" width="418" height="669" class="aligncenter size-full wp-image-5690" srcset="http://thepigmancometh.com/wp-content/uploads/2020/10/lizzo-gross-as-fuck.jpg 418w, http://thepigmancometh.com/wp-content/uploads/2020/10/lizzo-gross-as-fuck-187x300.jpg 187w, http://thepigmancometh.com/wp-content/uploads/2020/10/lizzo-gross-as-fuck-90x144.jpg 90w" sizes="(max-width: 418px) 100vw, 418px" /></p> <p>Bloody &#8216;ell! Yes, it&#8217;s Lizzo, that icon of everything that is healthy and wholesome. And this came from some Daily Mail article in which she was described as &#8220;curvaceous&#8221;! No &#8211; curvaceous means you have curves, what this woman has are lumps! If anything, she&#8217;s lump-aceous! </p> <p>Now, if you want to be fat enough to get stuck in a freight elevator, that&#8217;s your business. But when you are rich and famous and therefore influential, you should not be acting as if looking like a beached whale that&#8217;s been left out in the sun too long is a good thing. After all, unlike the rich, girls stupid enough to follow this Lizzo girl into the realm of morbid obesity can&#8217;t afford to pay someone to wipe their asses! Think about it, this woman literally cannot wipe her own ass, and she&#8217;s being held up &#8212; with great difficulty, admittedly &#8212; as some sort of role model! It&#8217;s madness, that&#8217;s what it is. </p> <p>And then there are the coming medical bills. Fine for Lizzo, she can get a million dollars worth of surgery at the first sign of high blood pressure, but the poor girls can&#8217;t! They&#8217;ll get diabetes, and heart attacks, and strokes! And how you gonna look sexy when both your feet are missing and half your face is down to your knees? You ain&#8217;t. Shame on Lizzo, and shame on the Daily Mail for promoting this crap. They&#8217;ll be promoting heroin addiction, next. </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/popular-culture/" rel="tag">Popular Culture</a>, <a href="http://thepigmancometh.com/category/stupidity-is-bad/" rel="tag">Stupidity Is Bad</a></span> </footer><!-- .post-footer --> </article><!-- #post-5689 --> <article role="article" id="post-5681" class="post-5681 post type-post status-publish format-standard hentry category-politics category-stupidity-is-bad"> <header class="post-header"> <h2><a href="http://thepigmancometh.com/2020/10/15/i-knew-there-was-something-sinister-about-bagels/" rel="bookmark">I KNEW there was something sinister about bagels&#8230;</a></h2> <div class="post-details"> <a href="http://thepigmancometh.com/2020/10/15/i-knew-there-was-something-sinister-about-bagels/" rel="bookmark"><span class="screen-reader-text">I KNEW there was something sinister about bagels&#8230; published on </span><time datetime="2020-10-15T10:46:14+11:00">October 15, 2020</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of I KNEW there was something sinister about bagels&#8230;, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>Ah, the joys of hanging out on Gab, where everything is the fault of the Jews! Seriously, you can&#8217;t make this shit up. Apparently, the Jews are fucking us over by getting us to eat non-Aryan food. Tacos and Sushi rolls are bringing about the downfall of Western civilization and nobody is doing anything about it! </p> <p><img loading="lazy" src="http://thepigmancometh.com/wp-content/uploads/2020/10/jews-oppressing-through-food.png" alt="" width="578" height="284" class="aligncenter size-full wp-image-5682" srcset="http://thepigmancometh.com/wp-content/uploads/2020/10/jews-oppressing-through-food.png 578w, http://thepigmancometh.com/wp-content/uploads/2020/10/jews-oppressing-through-food-300x147.png 300w, http://thepigmancometh.com/wp-content/uploads/2020/10/jews-oppressing-through-food-144x71.png 144w" sizes="(max-width: 578px) 100vw, 578px" /></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/stupidity-is-bad/" rel="tag">Stupidity Is Bad</a></span> </footer><!-- .post-footer --> </article><!-- #post-5681 --> <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/stupidity-is-bad/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/stupidity-is-bad/page/4/"><span class="screen-reader-text">Page </span>4</a> <a class="next page-numbers" href="http://thepigmancometh.com/category/stupidity-is-bad/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"><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 current-cat"><a aria-current="page" 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