<!DOCTYPE html>
<html lang="en-US" prefix="og: http://ogp.me/ns#">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="http://gmpg.org/xfn/11">
		<title>CounterVortex &#8211; Resisting Humanity&#039;s Downward Spiral</title>
<meta name='robots' content='max-image-preview:large' />
	<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
	<link rel="alternate" type="application/rss+xml" title="CounterVortex &raquo; Feed" href="https://countervortex.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="CounterVortex &raquo; Comments Feed" href="https://countervortex.org/comments/feed/" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/countervortex.org\/wp-includes\/js\/wp-emoji.js?ver=6.8.5","twemoji":"https:\/\/countervortex.org\/wp-includes\/js\/twemoji.js?ver=6.8.5"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

/**
 * Emoji Settings as exported in PHP via _print_emoji_detection_script().
 * @typedef WPEmojiSettings
 * @type {object}
 * @property {?object} source
 * @property {?string} source.concatemoji
 * @property {?string} source.twemoji
 * @property {?string} source.wpemoji
 * @property {?boolean} DOMReady
 * @property {?Function} readyCallback
 */

/**
 * Support tests.
 * @typedef SupportTests
 * @type {object}
 * @property {?boolean} flag
 * @property {?boolean} emoji
 */

/**
 * IIFE to detect emoji support and load Twemoji if needed.
 *
 * @param {Window} window
 * @param {Document} document
 * @param {WPEmojiSettings} settings
 */
( function wpEmojiLoader( window, document, settings ) {
	if ( typeof Promise === 'undefined' ) {
		return;
	}

	var sessionStorageKey = 'wpEmojiSettingsSupports';
	var tests = [ 'flag', 'emoji' ];

	/**
	 * Checks whether the browser supports offloading to a Worker.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {boolean}
	 */
	function supportsWorkerOffloading() {
		return (
			typeof Worker !== 'undefined' &&
			typeof OffscreenCanvas !== 'undefined' &&
			typeof URL !== 'undefined' &&
			URL.createObjectURL &&
			typeof Blob !== 'undefined'
		);
	}

	/**
	 * @typedef SessionSupportTests
	 * @type {object}
	 * @property {number} timestamp
	 * @property {SupportTests} supportTests
	 */

	/**
	 * Get support tests from session.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
	 */
	function getSessionSupportTests() {
		try {
			/** @type {SessionSupportTests} */
			var item = JSON.parse(
				sessionStorage.getItem( sessionStorageKey )
			);
			if (
				typeof item === 'object' &&
				typeof item.timestamp === 'number' &&
				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
				typeof item.supportTests === 'object'
			) {
				return item.supportTests;
			}
		} catch ( e ) {}
		return null;
	}

	/**
	 * Persist the supports in session storage.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {SupportTests} supportTests Support tests.
	 */
	function setSessionSupportTests( supportTests ) {
		try {
			/** @type {SessionSupportTests} */
			var item = {
				supportTests: supportTests,
				timestamp: new Date().valueOf()
			};

			sessionStorage.setItem(
				sessionStorageKey,
				JSON.stringify( item )
			);
		} catch ( e ) {}
	}

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * This is used to determine if the browser is rendering an emoji with multiple data points
	 * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji
	 * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser
	 * does not support the emoji correctly.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} set1 Set of Emoji to test.
	 * @param {string} set2 Set of Emoji to test.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( context, set1, set2 ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set1, 0, 0 );
		var rendered1 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set2, 0, 0 );
		var rendered2 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		return rendered1.every( function ( rendered2Data, index ) {
			return rendered2Data === rendered2[ index ];
		} );
	}

	/**
	 * Checks if the center point of a single emoji is empty.
	 *
	 * This is used to determine if the browser is rendering an emoji with a single data point
	 * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly
	 * rendered emoji will have a non-zero value at the center point.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.8.2
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} emoji Emoji to test.
	 *
	 * @return {boolean} True if the center point is empty.
	 */
	function emojiRendersEmptyCenterPoint( context, emoji ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( emoji, 0, 0 );

		// Test if the center point (16, 16) is empty (0,0,0,0).
		var centerPoint = context.getImageData(16, 16, 1, 1);
		for ( var i = 0; i < centerPoint.data.length; i++ ) {
			if ( centerPoint.data[ i ] !== 0 ) {
				// Stop checking the moment it's known not to be empty.
				return false;
			}
		}

		return true;
	}

	/**
	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
		var isIdentical;

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. Added in Unicode 13.
				 *
				 * 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(
					context,
					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for Sark 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 ([C] + [Q]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points
					'\uD83C\uDDE8\u200B\uD83C\uDDF6' // as the two code points separated by a zero-width space
				);

				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 a 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(
					context,
					// as the flag sequence
					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
					// with each code point separated by a zero-width space
					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Does Emoji 16.0 cause the browser to go splat?
				 *
				 * To test for Emoji 16.0 support, try to render a new emoji: Splatter.
				 *
				 * The splatter emoji is a single code point emoji. Testing for browser support
				 * required testing the center point of the emoji to see if it is empty.
				 *
				 * 0xD83E 0xDEDF (\uD83E\uDEDF) == 🫟 Splatter.
				 *
				 * When updating this test, please ensure that the emoji is either a single code point
				 * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width
				 * joiner vs a zero-width space.
				 */
				var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' );
				return ! notSupported;
		}

		return false;
	}

	/**
	 * Checks emoji support tests.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {string[]} tests Tests.
	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
		var canvas;
		if (
			typeof WorkerGlobalScope !== 'undefined' &&
			self instanceof WorkerGlobalScope
		) {
			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
		} else {
			canvas = document.createElement( 'canvas' );
		}

		var context = canvas.getContext( '2d', { willReadFrequently: true } );

		/*
		 * 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';

		var supports = {};
		tests.forEach( function ( test ) {
			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint );
		} );
		return supports;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {string} src The url where the script is located.
	 *
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );
		script.src = src;
		script.defer = true;
		document.head.appendChild( script );
	}

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
	var domReadyPromise = new Promise( function ( resolve ) {
		document.addEventListener( 'DOMContentLoaded', resolve, {
			once: true
		} );
	} );

	// Obtain the emoji support from the browser, asynchronously when possible.
	new Promise( function ( resolve ) {
		var supportTests = getSessionSupportTests();
		if ( supportTests ) {
			resolve( supportTests );
			return;
		}

		if ( supportsWorkerOffloading() ) {
			try {
				// Note that the functions are being passed as arguments due to minification.
				var workerScript =
					'postMessage(' +
					testEmojiSupports.toString() +
					'(' +
					[
						JSON.stringify( tests ),
						browserSupportsEmoji.toString(),
						emojiSetsRenderIdentically.toString(),
						emojiRendersEmptyCenterPoint.toString()
					].join( ',' ) +
					'));';
				var blob = new Blob( [ workerScript ], {
					type: 'text/javascript'
				} );
				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
				worker.onmessage = function ( event ) {
					supportTests = event.data;
					setSessionSupportTests( supportTests );
					worker.terminate();
					resolve( supportTests );
				};
				return;
			} catch ( e ) {}
		}

		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

				settings.supports.everything =
					settings.supports.everything && settings.supports[ test ];

				if ( 'flag' !== test ) {
					settings.supports.everythingExceptFlag =
						settings.supports.everythingExceptFlag &&
						settings.supports[ test ];
				}
			}

			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;
			};
		} )
		.then( function () {
			return domReadyPromise;
		} )
		.then( function () {
			// When the browser can not render everything we need to load a polyfill.
			if ( ! settings.supports.everything ) {
				settings.readyCallback();

				var 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 id='wp-emoji-styles-inline-css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://countervortex.org/wp-includes/css/dist/block-library/style.css?ver=6.8.5' media='all' />
<style id='wp-block-library-theme-inline-css'>
.wp-block-audio :where(figcaption){
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme .wp-block-audio :where(figcaption){
  color:#ffffffa6;
}

.wp-block-audio{
  margin:0 0 1em;
}

.wp-block-code{
  border:1px solid #ccc;
  border-radius:4px;
  font-family:Menlo,Consolas,monaco,monospace;
  padding:.8em 1em;
}

.wp-block-embed :where(figcaption){
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme .wp-block-embed :where(figcaption){
  color:#ffffffa6;
}

.wp-block-embed{
  margin:0 0 1em;
}

.blocks-gallery-caption{
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme .blocks-gallery-caption{
  color:#ffffffa6;
}

:root :where(.wp-block-image figcaption){
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme :root :where(.wp-block-image figcaption){
  color:#ffffffa6;
}

.wp-block-image{
  margin:0 0 1em;
}

.wp-block-pullquote{
  border-bottom:4px solid;
  border-top:4px solid;
  color:currentColor;
  margin-bottom:1.75em;
}
.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{
  color:currentColor;
  font-size:.8125em;
  font-style:normal;
  text-transform:uppercase;
}

.wp-block-quote{
  border-left:.25em solid;
  margin:0 0 1.75em;
  padding-left:1em;
}
.wp-block-quote cite,.wp-block-quote footer{
  color:currentColor;
  font-size:.8125em;
  font-style:normal;
  position:relative;
}
.wp-block-quote:where(.has-text-align-right){
  border-left:none;
  border-right:.25em solid;
  padding-left:0;
  padding-right:1em;
}
.wp-block-quote:where(.has-text-align-center){
  border:none;
  padding-left:0;
}
.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote:where(.is-style-plain){
  border:none;
}

.wp-block-search .wp-block-search__label{
  font-weight:700;
}

.wp-block-search__button{
  border:1px solid #ccc;
  padding:.375em .625em;
}

:where(.wp-block-group.has-background){
  padding:1.25em 2.375em;
}

.wp-block-separator.has-css-opacity{
  opacity:.4;
}

.wp-block-separator{
  border:none;
  border-bottom:2px solid;
  margin-left:auto;
  margin-right:auto;
}
.wp-block-separator.has-alpha-channel-opacity{
  opacity:1;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
  width:100px;
}
.wp-block-separator.has-background:not(.is-style-dots){
  border-bottom:none;
  height:1px;
}
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){
  height:2px;
}

.wp-block-table{
  margin:0 0 1em;
}
.wp-block-table td,.wp-block-table th{
  word-break:normal;
}
.wp-block-table :where(figcaption){
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme .wp-block-table :where(figcaption){
  color:#ffffffa6;
}

.wp-block-video :where(figcaption){
  color:#555;
  font-size:13px;
  text-align:center;
}
.is-dark-theme .wp-block-video :where(figcaption){
  color:#ffffffa6;
}

.wp-block-video{
  margin:0 0 1em;
}

:root :where(.wp-block-template-part.has-background){
  margin-bottom:0;
  margin-top:0;
  padding:1.25em 2.375em;
}
</style>
<style id='classic-theme-styles-inline-css'>
/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
.wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
	box-shadow: none;
	text-decoration: none;

	/* The extra 2px are added to size solids the same as the outline versions.*/
	padding: calc(0.667em + 2px) calc(1.333em + 2px);

	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #ffffff;
	text-decoration: none;
}

</style>
<style id='global-styles-inline-css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='better-recent-comments-css' href='https://countervortex.org/wp-content/plugins/better-recent-comments/assets/css/better-recent-comments.min.css?ver=6.8.5' media='all' />
<link rel='stylesheet' id='gn-frontend-gnfollow-style-css' href='https://countervortex.org/wp-content/plugins/gn-publisher/assets/css/gn-frontend-gnfollow.css?ver=1.5.23' media='all' />
<link rel='stylesheet' id='lightSlider-css' href='https://countervortex.org/wp-content/plugins/hootkit/assets/lightSlider.css?ver=1.1.2' media='' />
<link rel='stylesheet' id='font-awesome-css' href='https://countervortex.org/wp-content/plugins/hootkit/assets/font-awesome.css?ver=5.0.10' media='' />
<link rel='stylesheet' id='hootkit-css' href='https://countervortex.org/wp-content/plugins/hootkit/assets/hootkit.css?ver=2.0.21' media='' />
<link rel='stylesheet' id='simple-life-css' href='https://countervortex.org/wp-content/themes/simple-life/style.css?ver=6.8.5' media='all' />
<link rel='stylesheet' id='simple-life-child-css' href='https://countervortex.org/wp-content/themes/countervortex/style.css?ver=0.0.1' media='all' />
<link rel='stylesheet' id='simple-life-style-open-sans-css' href='https://countervortex.org/wp-content/fonts/1662671c90aa01f6b570fd5b5927f9f6.css?ver=3.0.0' media='all' />
<link rel='stylesheet' id='simple-life-style-bootstrap-css' href='https://countervortex.org/wp-content/themes/simple-life/third-party/bootstrap/css/bootstrap.css?ver=3.3.6' media='all' />
<link rel='stylesheet' id='fontawesome-css' href='https://countervortex.org/wp-content/themes/simple-life/third-party/font-awesome/css/font-awesome.css?ver=4.7.0' media='all' />
<link rel='stylesheet' id='simple-life-style-meanmenu-css' href='https://countervortex.org/wp-content/themes/simple-life/third-party/meanmenu/meanmenu.css?ver=2.0.8' media='all' />
<link rel='stylesheet' id='simple-life-style-css' href='https://countervortex.org/wp-content/themes/countervortex/style.css?ver=3.0.0' media='all' />
<script src="https://countervortex.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="https://countervortex.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<link rel="https://api.w.org/" href="https://countervortex.org/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://countervortex.org/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.8.5" />
<meta property="og:title" name="og:title" content="CounterVortex" />
<meta property="og:type" name="og:type" content="website" />
<meta property="og:image" name="og:image" content="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1.png" />
<meta property="og:description" name="og:description" content="Resisting Humanity&#039;s Downward Spiral" />
<meta property="og:locale" name="og:locale" content="en_US" />
<meta property="og:site_name" name="og:site_name" content="CounterVortex" />
<meta property="twitter:card" name="twitter:card" content="summary" />
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><link rel="icon" href="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1-300x300.png" sizes="32x32" />
<link rel="icon" href="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1-300x300.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1-300x300.png" />
<meta name="msapplication-TileImage" content="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1-300x300.png" />
<!-- favicon code from realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ff0000">
<!-- end favicon code -->
</head>

<body class="home blog wp-custom-logo wp-embed-responsive wp-theme-simple-life wp-child-theme-countervortex group-blog">
<div id="page" class="hfeed site">
	<a class="skip-link screen-reader-text" href="#content">Skip to content</a>

	
	<header id="masthead" class="site-header container" role="banner">
		<div class="site-branding">
			<a href="https://countervortex.org/" class="custom-logo-link" rel="home" aria-current="page"><img width="500" height="500" src="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1.png" class="custom-logo" alt="CounterVortex" decoding="async" fetchpriority="high" srcset="https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1.png 500w, https://countervortex.org/wp-content/uploads/2019/02/newsflash_logo-1-300x300.png 300w" sizes="(max-width: 500px) 100vw, 500px" /></a>			<div class="site-branding-text">
				<!--p class="site-description text-left">Bill Weinberg's</p-->
  				<h1 class="site-title text-left"><a href="https://countervortex.org/" rel="home">CounterVortex</a></h1>
				<p class="site-description text-left">Resisting Humanity&#039;s Downward Spiral</p>
			</div>
<div id="boxes" class="text-right">
  <div id="podcast">
    <a href="https://soundcloud.com/user-752167240"><img width="75" src="/sites/default/files/logo_001_podcast.jpg"></a>
  </div>
  <div id="patreon">
    <a href="https://www.patreon.com/countervortex" data-patreon-widget-type="become-patron-button"><img style="height: 31px" src="/sites/default/files/become_a_patron_button.png" alt="Become a Patron!"></a>
  </div>
  <div id="paypal">
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input name="cmd" type="hidden" value="_xclick" /> <input name="business" type="hidden" value="billw@riseup.net" /> <input name="item_name" type="hidden" value="SUPPORT THE REPORT!!" /> <input name="item_number" type="hidden" value="SUPPORT THE REPORT!!" /><input alt="Make payments with PayPal - it's fast, free and secure!" border="0" name="submit" src="/sites/default/files/x-click-but04.gif" type="image" style="display: block; margin: 0 auto; padding: 0" /></form>
  </div>
  <div id="plea">
    SUPPORT&nbsp;US!
  </div>
</div>
		</div>
		
		<nav id="site-navigation" class="main-navigation" role="navigation">
			<button class="menu-toggle" aria-hidden="true">Primary Menu</button>
			<div class="menu-menu-horizontal-container"><ul id="primary-menu" class="menu"><li id="menu-item-16710" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16710"><a href="/?post_type=blog">Daily Report</a>
<ul class="sub-menu">
	<li id="menu-item-16733" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16733"><a href="/?post_type=blog&#038;author=4">Bill Weinberg&#8217;s Blog</a></li>
	<li id="menu-item-16734" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16734"><a href="/?post_type=blog&#038;author=8">CounterVortex</a></li>
	<li id="menu-item-16735" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16735"><a href="/?post_type=blog&#038;author=14">New Jewish Resistance</a></li>
	<li id="menu-item-23728" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-23728"><a href="https://countervortex.org/author/jurist/">JURIST</a></li>
</ul>
</li>
<li id="menu-item-16731" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16731"><a href="/tag/features">Features</a>
<ul class="sub-menu">
	<li id="menu-item-16737" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16737"><a href="/back-issues/">Back Issues</a></li>
	<li id="menu-item-16755" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16755"><a href="https://countervortex.org/documents-2/">Documents</a></li>
	<li id="menu-item-16967" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16967"><a href="https://countervortex.org/search-archive-pre-2004/">Search Archive (pre-2004)</a></li>
	<li id="menu-item-19043" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19043"><a href="https://classic.countervortex.org/">CounterVortex Classic</a></li>
</ul>
</li>
<li id="menu-item-16738" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16738"><a href="/?tag=podcasts&#038;post_type=blog">Audio</a></li>
<li id="menu-item-16739" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16739"><a href="/?tag=vlog&#038;post_type=blog">Video</a></li>
<li id="menu-item-16744" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16744"><a href="https://countervortex.org/support-us-2/">Support Us</a></li>
<li id="menu-item-16746" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-16746"><a href="https://countervortex.org/about-us-2/">About Us</a>
<ul class="sub-menu">
	<li id="menu-item-16747" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16747"><a href="https://countervortex.org/mission-statement/">Our Mission</a></li>
	<li id="menu-item-16748" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16748"><a href="https://countervortex.org/free-speech-policy/">Posting Policy</a></li>
	<li id="menu-item-16749" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16749"><a href="https://countervortex.org/contact-us/">Contact Us</a></li>
</ul>
</li>
<li id="menu-item-16751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16751"><a href="https://countervortex.org/links-2/">Links</a></li>
<li id="menu-item-19811" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19811"><a href="https://countervortex.substack.com/">Subscribe</a></li>
</ul></div>		</nav><!-- #site-navigation -->

	</header><!-- #masthead -->

	
	<div id="content" class="site-content container">
		<div class="row">
	<div id="primary" class="content-area col-sm-8 pull-left col-xs-12">
		<main id="main" class="site-main" role="main">
<!--h2 class="entry-title">post_type = , isPaged = , isfront = 1, get = 0</h2>
<h2>attachment=feed</h2-->

																
			<h2 class="entry-title daily-report-lead">From our Daily Report:</h2>
								
				<div class="tile-blog">
<article id="post-25228" class="post-25228 blog type-blog status-publish has-post-thumbnail hentry tag-africa-region tag-genocide tag-south-sudan">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Africa</span>						</div>
									 					 				<a href="https://countervortex.org/blog/forced-mass-evacuations-in-south-sudan/">
			 					<img width="1" height="1" src="https://countervortex.org/wp-content/uploads//sites/default/files/South_Sudan_022.jpg" class="aligncenter wp-post-image" alt="South Sudan" decoding="async" loading="lazy" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/forced-mass-evacuations-in-south-sudan/" rel="bookmark" >Forced mass evacuations in South Sudan</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/21/" rel="bookmark"><time class="entry-date published" datetime="2026-04-21T12:37:34-04:00">April 21, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/jurist/">Jurist</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>South Sudan&#8217;s military and opposition forces have <a href="https://www.hrw.org/news/2026/04/12/south-sudan-both-sides-blocking-aid-displacing-civilians" target="_blank" rel="noopener">blocked</a> humanitarian access and unjustifiably ordered civilians to evacuate populated areas, Human Rights Watch found. The country&#8217;s military has issued multiple evacuation orders since late 2025, at least three of which have been &#8220;sweeping in nature.&#8221; Over the same period, opposition forces occupying areas of the country have also issued at least three such orders. As a result, hundreds of thousands of civilians have been <a href="https://www.jurist.org/news/2026/04/un-experts-call-for-immediate-provision-of-humanitarian-aid-in-south-sudan/" target="_blank" rel="noopener">forced to flee</a> their homes. Following some evacuation orders, the government launched indiscriminate aerial bombings of the cleared areas. The government has additionally imposed &#8220;no-flight&#8221; zones that effectively limit humanitarian-worker access to opposition-held areas. (Photo: <a href="https://commons.wikimedia.org/wiki/File:South_Sudan_022.jpg">Wikimedia Commons</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25226" class="post-25226 blog type-blog status-publish has-post-thumbnail hentry tag-africa-region tag-cameroon tag-central-africa tag-peace-initiatives tag-trumpism tag-vatican tag-west-africa">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Africa</span>						</div>
									 					 				<a href="https://countervortex.org/blog/pope-wins-pause-in-cameroon-conflict/">
			 					<img width="800" height="418" src="https://countervortex.org/wp-content/uploads/2026/04/St.-Josephs-Cathedral-Bamenda-Bamenda.jpeg" class="aligncenter wp-post-image" alt="Bamenda" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/St.-Josephs-Cathedral-Bamenda-Bamenda.jpeg 1080w, https://countervortex.org/wp-content/uploads/2026/04/St.-Josephs-Cathedral-Bamenda-Bamenda-1024x535.jpeg 1024w, https://countervortex.org/wp-content/uploads/2026/04/St.-Josephs-Cathedral-Bamenda-Bamenda-300x157.jpeg 300w, https://countervortex.org/wp-content/uploads/2026/04/St.-Josephs-Cathedral-Bamenda-Bamenda-768x401.jpeg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/pope-wins-pause-in-cameroon-conflict/" rel="bookmark" >Pope wins pause in Cameroon conflict</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/20/" rel="bookmark"><time class="entry-date published" datetime="2026-04-20T14:37:28-04:00">April 20, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/irin/">TNH</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>While Pope Leo XIV&#8217;s castigation of<a href="https://www.theguardian.com/world/2026/mar/29/pope-rebuke-trump-leaders-with-hands-full-of-blood" target="_blank" rel="noopener"> warmongers</a> has so far failed to turn around the hawks in the current US administration, it has won Cameroonians a temporary reprieve from secessionist violence. To mark the pope&#8217;s visit, anglophone separatist groups said they would<a href="https://www.yahoo.com/news/articles/cameroon-separatists-pause-fighting-ahead-112851719.html?guccounter=1" target="_blank" rel="noopener"> pause their fighting</a> and allow the free movement of people. The pontiff may have stopped short of trying to mediate the nearly decade-long conflict in the majority French-speaking country, but he did urge President Paul Biya to root out corruption—and then lashed out at <a href="https://www.bbc.com/news/articles/c5yj796plqmo" target="_blank" rel="noopener">foreign exploitation</a> of the continent. Leo also returned to his<a href="https://edition.cnn.com/2026/04/17/americas/trump-pope-us-vatican-iran-war-intl" target="_blank" rel="noopener"> spiritual feud</a> with the US administration. &#8220;Woe to those who manipulate religion and the very name of God for their own military, economic and political gain, dragging that which is sacred into darkness and filth,&#8221; he<a href="https://www.theguardian.com/world/2026/apr/16/pope-leo-xiv-tyrants-trump-spat" target="_blank" rel="noopener"> told a gathering</a> at Saint Joseph Cathedral in the city of Bamenda, within the conflicted region. (Photo: <a href="https://www.jhia.ac.ke/newsletter/hope-in-the-cathedral-a-personal-reflection-on-the-popes-visit-to-bamenda/">Jesuit Historical Institute in Africa</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25224" class="post-25224 blog type-blog status-publish has-post-thumbnail hentry tag-alberto-fujimori tag-central-europe tag-european-region tag-great-game tag-hungary tag-morc tag-peru tag-planet-watch tag-podcasts tag-police-state tag-andean-region tag-trumpism">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Planet Watch</span>						</div>
									 					 				<a href="https://countervortex.org/blog/podcast-hungary-peru-and-the-electoral-struggle/">
			 					<img width="800" height="554" src="https://countervortex.org/wp-content/uploads/2026/04/sanchez.jpg" class="aligncenter wp-post-image" alt="Roberto Sánchez" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/sanchez.jpg 2045w, https://countervortex.org/wp-content/uploads/2026/04/sanchez-1024x709.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/04/sanchez-300x208.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/sanchez-768x531.jpg 768w, https://countervortex.org/wp-content/uploads/2026/04/sanchez-1536x1063.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/podcast-hungary-peru-and-the-electoral-struggle/" rel="bookmark" >Podcast: Hungary, Peru &#038; the electoral struggle</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/19/" rel="bookmark"><time class="entry-date published" datetime="2026-04-19T14:07:06-04:00">April 19, 2026</time><time class="updated" datetime="2026-04-21T02:02:44-04:00">April 21, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/bill-weinberg/">Bill Weinberg</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>In <a href="https://soundcloud.com/user-752167240/hungary-peru-and-the-electoral">Episode 323</a> of the <a href="https://soundcloud.com/user-752167240">CounterVortex podcast</a>, <strong>Bill Weinberg</strong> offers a comparison of the simultaneous elections in <a href="https://countervortex.org/blog/reversal-for-hard-right-in-hungary-peru-in-the-balance/">Hungary and Peru</a>—in which questions of democratic norms <em>versus </em>authoritarian rule both stood in the balance. The defeat of long-ruling quasi-dictator Viktor Orbán is being hailed as a blow to the emerging authoritarian bloc in Europe. But the incoming center-right prime minister Péter Magyar may not mean a complete de-Orbánification. In Peru, the outcome is still pending, as the perennial candidate of the hard right, Keiko Fujimori, faces a run-off with a contender from the populist left, Roberto Sánchez. Keiko is the unapologetic daughter of the late ex-dictator Alberto Fujimori; her victory could mean a re-Fujimorification of the country, and a fatal blow to Peru&#8217;s deeply troubled democracy. A Sánchez victory, meanwhile, would heighten the social contradictions in Peru—with both opportunities for a more meaningful democracy, and dangers of a backlash from the conservative establishment. (Photo: Anali Marquez Huanca via <a href="https://www.facebook.com/photo/?fbid=1287866403439811&amp;set=pcb.1287867863439665">Facebook</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25222" class="post-25222 blog type-blog status-publish has-post-thumbnail hentry tag-alberto-fujimori tag-belarus tag-central-europe tag-china-in-latin-america tag-european-region tag-france tag-great-game tag-hungary tag-israel tag-italy tag-mining tag-narco-wars tag-peru tag-planet-watch tag-police-state tag-radical-right tag-serbia tag-slovakia tag-andean-region tag-trumpism tag-vatican">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Planet Watch</span>						</div>
									 					 				<a href="https://countervortex.org/blog/reversal-for-hard-right-in-hungary-peru-in-the-balance/">
			 					<img width="800" height="495" src="https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú.jpg" class="aligncenter wp-post-image" alt="Lima" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú.jpg 1920w, https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú-1024x633.jpg 1024w, https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú-300x185.jpg 300w, https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú-768x475.jpg 768w, https://countervortex.org/wp-content/uploads/2022/02/Lima_-_Palacio_de_Gobierno_del_Perú-1536x950.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/reversal-for-hard-right-in-hungary-peru-in-the-balance/" rel="bookmark" >Reversal for hard right in Hungary; Peru in the balance</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/18/" rel="bookmark"><time class="entry-date published" datetime="2026-04-18T14:37:42-04:00">April 18, 2026</time><time class="updated" datetime="2026-04-19T00:53:34-04:00">April 19, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/bill-weinberg/">Bill Weinberg</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The defeat of Hungary&#8217;s quasi-dictator Viktor Orbán in the recent elections has heartened progressive forces around the world—despite the fact that the victorious Péter Magyar is a creature of the center-right. A more stark contest is emerging in Peru, where the right-wing authoritarian presidential candidate Keiko Fujimori faces a run-off with a contender from the populist left, Roberto Sánchez, who has broad support from the traditionally excluded campesinos of the country&#8217;s Andean interior. (Photo: <a href="https://en.wikipedia.org/wiki/Government_Palace,_Peru">Wikipedia</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25220" class="post-25220 blog type-blog status-publish has-post-thumbnail hentry tag-china tag-east-asia-region tag-central-asia-region tag-labor tag-petro-oligarchy tag-russia tag-siberia">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">East Asia</span>						</div>
									 					 				<a href="https://countervortex.org/blog/chinese-workers-protest-in-russias-far-east/">
			 					<img width="800" height="450" src="https://countervortex.org/wp-content/uploads/2026/04/rosneft.jpg" class="aligncenter wp-post-image" alt="Rosneft" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/rosneft.jpg 1360w, https://countervortex.org/wp-content/uploads/2026/04/rosneft-1024x576.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/04/rosneft-300x169.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/rosneft-768x432.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/chinese-workers-protest-in-russias-far-east/" rel="bookmark" >Chinese workers protest in Russia&#8217;s Far East</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/17/" rel="bookmark"><time class="entry-date published" datetime="2026-04-17T13:33:19-04:00">April 17, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Chinese construction workers building a fuel-production unit at a Rosneft refinery in Far East Russia&#8217;s Khabarovsk krai took to the streets to protest unpaid wages, regional authorities<a href="https://t.me/khabkraj/47883">said</a>. At least 200 employees of the Russian-Chinese contractor Petro-Hehua marched through the city of Komsomolsk-na-Amure demanding back payments and<a href="https://t.me/Govorit_NeMoskva/61715?single"> help</a> from both the Russian government and Rosneft in returning to China. After the march, some workers <a title="https://t.me/vkomsomolske/29204" href="https://t.me/vkomsomolske/29204" target="_blank" rel="noopener">staged</a> a sit-in at a nearby park. Following the protest, the Komsomolsk-on-Amur prosecutor&#8217;s office said it had opened an inquiry into possible labor law violations, but at least four protesters were fined for illegal assembly. (Photo: <a href="https://www.themoscowtimes.com/2026/04/13/chinese-workers-protest-unpaid-wages-in-russias-far-east-a92482">The Moscow Times</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25218" class="post-25218 blog type-blog status-publish has-post-thumbnail hentry tag-drones tag-european-region tag-politics-of-cyberspace tag-robotocracy tag-russia tag-ukraine">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Europe</span>						</div>
									 					 				<a href="https://countervortex.org/blog/ukrainian-robots-break-through-russian-lines/">
			 					<img width="729" height="429" src="https://countervortex.org/wp-content/uploads/2026/04/warbot.jpg.webpcopy2.png" class="aligncenter wp-post-image" alt="UGV" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/warbot.jpg.webpcopy2.png 729w, https://countervortex.org/wp-content/uploads/2026/04/warbot.jpg.webpcopy2-300x177.png 300w" sizes="auto, (max-width: 729px) 100vw, 729px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/ukrainian-robots-break-through-russian-lines/" rel="bookmark" >Ukrainian robots break through Russian lines</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/16/" rel="bookmark"><time class="entry-date published" datetime="2026-04-16T13:11:43-04:00">April 16, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Ukrainian forces have captured a Russian position using only drones and unmanned ground vehicles (UGVs), President Volodymyr Zelensky boasted, describing the operation as a milestone in the evolution of modern warfare. &#8220;For the first time in the history of this war, an enemy position was taken exclusively by unmanned platforms—UGVs and drones. The occupiers surrendered, and this operation was carried out without the participation of infantry and without losses on our side,&#8221; Zelensky said in a <a href="https://www.president.gov.ua/en/news/kozhna-nova-ukrayinska-rozrobka-skorochuye-distanciyu-do-mir-103809">video statement</a>. The video showed Zelensky speaking in a room full of various drones and UGVs. He did not give a precise location for the territory taken in the operation. (Photo via <a href="https://nashaniva.com/amp/en/392778">Nashaniva.com</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25215" class="post-25215 blog type-blog status-publish has-post-thumbnail hentry tag-anarchists tag-chiapas tag-control-of-oil tag-cuba tag-iran-region tag-israel tag-mexico-region tag-palestine-region tag-planet-watch tag-trumpism tag-venezuela tag-world-war-4 tag-zapatistas">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Planet Watch</span>						</div>
									 					 				<a href="https://countervortex.org/blog/zapatistas-nation-state-under-attack/">
			 					<img width="800" height="398" src="https://countervortex.org/wp-content/uploads/2026/04/Cint6asesionTarde.jpg" class="aligncenter wp-post-image" alt="EZLN" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/Cint6asesionTarde.jpg 953w, https://countervortex.org/wp-content/uploads/2026/04/Cint6asesionTarde-300x149.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/Cint6asesionTarde-768x382.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/zapatistas-nation-state-under-attack/" rel="bookmark" >Zapatistas: &#8216;nation-state under attack&#8217;</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/15/" rel="bookmark"><time class="entry-date published" datetime="2026-04-15T13:46:11-04:00">April 15, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/bill-weinberg/">Bill Weinberg</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Mexico&#8217;s Zapatista rebels—who have observed a long ceasefire but still have a zone of control in the back-country of Chiapas state—held an international gathering in the highland city of San Cristóbal de Las Casas. Featured speaker was a ski-masked &#8220;Captain Marcos,&#8221; presumably the same charismatic spokesman once known as &#8220;Subcommander <a href="https://countervortex.org/blog/subcommander-marcos-ceases-to-exist/">Marcos</a>.&#8221; He delivered an exegesis entitled &#8220;A Peephole into the Storm in the World: Nation-States Under Attack&#8221; (<a href="https://enlacezapatista.ezln.org.mx/2026/04/03/tercera-sesion-viernes-3-de-abril-del-2026-1300-hrs-semillero-abril-del-2026-la-tormenta-dentro-y-fuera-segun-las-comunidades-y-pueblos-zapatistas-2/">Una mirilla a la Tormenta en el Mundo: Los Estados-Nación bajo ataque</a>). Marcos portrayed a supra-national imperialism under Donald Trump, in which &#8220;the nation-state has no decision-making power.&#8221; Marcos decried the &#8220;kidnapping&#8221; of Nicolás Maduro from Venezuela, and the US oil blockade on Cuba, noting that Mexico has been <a href="https://www.reuters.com/business/energy/president-sheinbaum-defends-mexicos-right-supply-oil-cuba-2026-03-30/">effectively barred</a> from shipping oil to the Caribbean island nation. He also asserted that in the US-Israeli war against Iran, the big oil companies are the ones who benefit, as the <a href="https://countervortex.org/blog/wfp-mass-food-insecurity-if-mideast-conflict-continues/">price of oil rises</a>. &#8220;That&#8217;s what needs to be discussed: who is profiting from these wars?&#8221; (Image: <a href="https://enlacezapatista.ezln.org.mx/">Enlace Zapatista</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25212" class="post-25212 blog type-blog status-publish has-post-thumbnail hentry tag-central-america-region tag-china tag-china-in-latin-america tag-control-of-water tag-corporate-rule tag-denmark tag-great-game tag-hong-kong tag-panama tag-united-kingdom">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Central America</span>						</div>
									 					 				<a href="https://countervortex.org/blog/hong-kong-firm-challenges-breach-of-panama-contract/">
			 					<img width="800" height="450" src="https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port.jpg" class="aligncenter wp-post-image" alt="Balboa" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port.jpg 1920w, https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port-1024x575.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port-300x169.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port-768x432.jpg 768w, https://countervortex.org/wp-content/uploads/2026/04/Balboa_Panama_Port-1536x863.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/hong-kong-firm-challenges-breach-of-panama-contract/" rel="bookmark" >Hong Kong firm challenges breach of Panama contract</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/14/" rel="bookmark"><time class="entry-date published" datetime="2026-04-14T14:33:33-04:00">April 14, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/jurist/">Jurist</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Panama Ports Company SA (PPC), a subsidiary of the Hong Kong-based conglomerate CK Hutchison, <a href="https://www.ckh.com.hk/upload/attachments/en/pr/PPC_PressStatement_7April2026_e.pdf" target="_blank" rel="noopener">commenced</a> arbitration proceedings against <span id="_U2jdae6lHqeqw8cPguCysQk_54" class="K6pdKd wtBS9">Danish shipping</span> firm Maersk over the planned takeover by Maersk of PPC&#8217;s port terminals in Panama. The case comes after Panama&#8217;s Supreme Court ruled that a concession allowing the PPC to control and operate the Balboa and Cristóbal ports was <a href="https://www.nbcnews.com/world/asia/hong-kong-company-concession-panama-canal-ports-ruled-unconstitutional-rcna256664" target="_blank" rel="noopener">unconstitutional</a>. As a result of the ruling, Panama’s central government seized control of both ports—much to the dismay of China, and the open delight of the Trump administration. (Photo: <a title="User:Editorpana" href="https://commons.wikimedia.org/wiki/User:Editorpana">Editorpana</a> via <a href="https://commons.wikimedia.org/wiki/File:Balboa_Panama_Port.jpg">Wikimedia Commons</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25210" class="post-25210 blog type-blog status-publish has-post-thumbnail hentry tag-european-region tag-fear-of-music tag-police-state tag-politics-of-cyberspace tag-russia tag-siberia tag-ukraine">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Europe</span>						</div>
									 					 				<a href="https://countervortex.org/blog/russia-un-experts-decry-repression-of-civil-society/">
			 					<img width="800" height="418" src="https://countervortex.org/wp-content/uploads/2026/04/Moscow_Kremlin_8281675670.jpg" class="aligncenter wp-post-image" alt="Kremlin" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/Moscow_Kremlin_8281675670.jpg 986w, https://countervortex.org/wp-content/uploads/2026/04/Moscow_Kremlin_8281675670-300x157.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/Moscow_Kremlin_8281675670-768x401.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/russia-un-experts-decry-repression-of-civil-society/" rel="bookmark" >Russia: UN experts decry repression of civil society</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/13/" rel="bookmark"><time class="entry-date published" datetime="2026-04-13T15:07:44-04:00">April 13, 2026</time><time class="updated" datetime="2026-04-13T17:52:54-04:00">April 13, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/jurist/">Jurist</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>UN Special Rapporteurs <a href="https://www.ohchr.org/en/press-releases/2026/04/strategy-blatant-abuse-counter-terrorism-and-extremism-laws-destroy-russian" target="_blank" rel="noopener">condemned</a> an ongoing strategy by Russian authorities to silence dissent, human rights advocacy, and anti-war expression. They warned that this represents a &#8220;systematic dismantling&#8221; of civil society under the guise of protecting national security and public safety. Over 343 organizations have been deemed &#8220;undesirable,&#8221; 1,173 individuals and groups have been designated as &#8220;foreign agents,&#8221; and 830 organizations and 20,813 individuals have been put on &#8220;terrorist&#8221; and &#8220;extremist&#8221; watch lists. This has recently escalated with the targeting of several key Russian human rights organizations, feminist groups and advocates for indigenous peoples. (Photo: Pavel Kazachkov via <a href="https://en.wikipedia.org/wiki/Moscow_Kremlin#/media/File:Kremlin_from_Bolshoy_kamenny_bridge.jpg">Wikipedia</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25208" class="post-25208 blog type-blog status-publish has-post-thumbnail hentry tag-gaza-strip tag-genocide tag-iran-region tag-israel tag-lebanon tag-morc tag-netherlands tag-podcasts tag-propaganda tag-russia tag-sahel tag-sudan tag-trumpism tag-ukraine">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Iran</span>						</div>
									 					 				<a href="https://countervortex.org/blog/podcast-trump-to-the-hague/">
			 					<img width="800" height="440" src="https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190.jpg" class="aligncenter wp-post-image" alt="ICC" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190.jpg 1912w, https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190-1024x563.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190-300x165.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190-768x423.jpg 768w, https://countervortex.org/wp-content/uploads/2026/04/International_Criminal_Court_at_The_Hague_ICC_54032051190-1536x845.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/podcast-trump-to-the-hague/" rel="bookmark" >Podcast: Trump to The Hague!</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/12/" rel="bookmark"><time class="entry-date published" datetime="2026-04-12T19:56:32-04:00">April 12, 2026</time><time class="updated" datetime="2026-04-13T02:13:23-04:00">April 13, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/bill-weinberg/">Bill Weinberg</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The <a href="https://www.middleeasteye.net/live-blog/live-blog-update/trump-says-iranians-animals-when-asked-why-he-would-bomb-power-plants">exterminationist rhetoric</a> that has accompanied Trump&#8217;s <a href="https://www.nytimes.com/interactive/2026/04/09/world/middleeast/us-israel-strikes-iran-structures-damage.html">massive bombardment</a> of civilian infrastructure in Iran is <a href="https://www.amnesty.org/en/latest/news/2026/04/iran-president-trumps-apocalyptic-threats-of-large-scale-civilian-devastation-demand-urgent-global-action-to-prevent-atrocity-crimes/">condemned by Amnesty International</a> as possible incitement to genocide—itself a crime under <a href="https://www.ohchr.org/en/instruments-mechanisms/instruments/convention-prevention-and-punishment-crime-genocide">international law</a>. Can Trump join <a href="https://countervortex.org/blog/icc-seeks-arrest-of-benjamin-netanyahu/">Benjamin Netanyahu</a> and <a href="https://countervortex.org/blog/icc-issues-arrest-warrant-for-putin/">Vladimir Putin</a> as the next world leader to face charges before the International Criminal Court? Yes, if Iran follows <a href="https://countervortex.org/blog/fatah-under-attack-over-statehood-proposal/#comment-452671">Palestine</a> and <a href="https://countervortex.org/blog/ukraine-becomes-state-party-to-rome-statute/">Ukraine</a> in <a href="https://dawnmena.org/iran-grant-international-criminal-court-jurisdiction-over-apparent-crimes/">granting jurisdiction</a> to the ICC for crimes committed on its territory. This is legally valid, despite intransigence <a href="https://countervortex.org/blog/us-imposes-sanctions-on-two-more-icc-judges/">from the United States</a>, <a href="https://countervortex.org/blog/icc-prosecutor-rejects-bibis-anti-semitism-charge/">Israel</a> and <a href="https://countervortex.org/blog/un-denounces-russian-conviction-of-icc-prosecutor/">Russia</a> alike. The next three <a href="https://countervortex.org/blog/icc-convicts-ex-militia-leader-of-darfur-war-crimes/">convictions by the ICC</a> could be the first of figures from outside the African continent—undermining <a href="https://countervortex.org/blog/mali-niger-burkina-faso-announce-withdrawal-from-icc/">accusations of a double standard</a> that have hindered the Court&#8217;s effectiveness. In Episode 322 of the <a href="https://soundcloud.com/user-752167240">CounterVortex podcast</a>, <strong>Bill Weinberg</strong> makes the case—politically and practically—for sending Trump to a prison cell at The Hague. (Photo: <a href="https://www.flickr.com/people/87296837@N00" rel="nofollow">Tony Webster</a> via <a href="https://commons.wikimedia.org/wiki/File:International_Criminal_Court_at_The_Hague_%28ICC%29_%2854032051190%29.jpg">Wikimedia Commons</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25207" class="post-25207 blog type-blog status-publish has-post-thumbnail hentry tag-bahrain tag-china tag-control-of-oil tag-great-game tag-greater-middle-east tag-gulf-states tag-hezbollah tag-iran-region tag-israel tag-jordan tag-kuwait tag-lebanon tag-pakistan tag-peace-initiatives tag-qatar tag-russia tag-saudi-arabia tag-trumpism">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">Greater Middle East</span>						</div>
									 					 				<a href="https://countervortex.org/blog/uncertain-ceasefire-in-iran/">
			 					<img width="800" height="394" src="https://countervortex.org/wp-content/uploads/2021/02/syria-1034467_1280.jpg" class="aligncenter wp-post-image" alt="Iran" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2021/02/syria-1034467_1280.jpg 1272w, https://countervortex.org/wp-content/uploads/2021/02/syria-1034467_1280-1024x505.jpg 1024w, https://countervortex.org/wp-content/uploads/2021/02/syria-1034467_1280-300x148.jpg 300w, https://countervortex.org/wp-content/uploads/2021/02/syria-1034467_1280-768x379.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/uncertain-ceasefire-in-iran/" rel="bookmark" >Uncertain ceasefire in Iran; aerial terror in Lebanon</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/11/" rel="bookmark"><time class="entry-date published" datetime="2026-04-11T14:29:47-04:00">April 11, 2026</time><time class="updated" datetime="2026-04-17T21:21:21-04:00">April 17, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/irin/">TNH</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>After five weeks of war, the US and Iran agreed to a two-week ceasefire brokered by Pakistan. Its basic details, however, and to what extent it will be implemented, are surrounded by uncertainty. A main sticking point is the question of whether Lebanon was included in the deal. Iranian and Pakistani officials are insisting it was, but the US and Israel say that it wasn&#8217;t. Meanwhile, Israel has continued to carry out devastating attacks on Beirut and other parts of Lebanon. (Image: <a href="https://pixabay.com/photos/syria-middle-east-map-globe-iraq-1034467/">Pixabay</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
					
								
				<div class="tile-blog">
<article id="post-25205" class="post-25205 blog type-blog status-publish has-post-thumbnail hentry tag-climate-destabilization tag-control-of-oil tag-cuba tag-peak-food tag-russia tag-caribbean-region tag-trumpism">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
											<div class="region-badge">
<span class="region-badge-tag">The Caribbean</span>						</div>
									 					 				<a href="https://countervortex.org/blog/cuba-un-issues-urgent-call-for-humanitarian-aid/">
			 					<img width="800" height="542" src="https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba.jpg" class="aligncenter wp-post-image" alt="Cuba" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba.jpg 1920w, https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba-1024x693.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba-300x203.jpg 300w, https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba-768x520.jpg 768w, https://countervortex.org/wp-content/uploads/2026/04/Santa_Clara_Cuba-1536x1040.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
		 					<h2 class="entry-title"><a href="https://countervortex.org/blog/cuba-un-issues-urgent-call-for-humanitarian-aid/" rel="bookmark" >Cuba: UN issues urgent call for humanitarian aid</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/04/10/" rel="bookmark"><time class="entry-date published" datetime="2026-04-10T13:22:33-04:00">April 10, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/jurist/">Jurist</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The United Nations <a href="https://news.un.org/en/story/2026/04/1167254" target="_blank" rel="noopener">called upon</a> the international community to provide immediate support for Cuba amid a worsening humanitarian crisis compounded by the effects of <a href="https://www.unocha.org/news/six-things-know-about-hurricane-melissas-impact-cuba" target="_blank" rel="noopener">Hurricane Melissa</a>, which struck the country in October 2025. The UN resident coordinator in Cuba, Francisco Pichon, said the humanitarian situation has reached a critical point following the US <a href="https://www.ohchr.org/en/press-releases/2026/02/un-experts-condemn-us-executive-order-imposing-fuel-blockade-cuba#:~:text=GENEVA%20%E2%80%93%20UN%20human%20rights%20experts,of%20extraordinary%20and%20coercive%20powers." target="_blank" rel="noopener">oil blockade</a> imposed in January. He added that the population remains in need of urgent humanitarian aid despite an <a href="https://www.reuters.com/business/energy/russian-oil-tanker-has-arrived-cuba-interfax-reports-2026-03-30/" target="_blank" rel="noopener">oil shipment</a> from Russia in late March that the US administration chose not to interfere with. (Photo: <a title="User:Виктор Пинчук" href="https://commons.wikimedia.org/wiki/User:%D0%92%D0%B8%D0%BA%D1%82%D0%BE%D1%80_%D0%9F%D0%B8%D0%BD%D1%87%D1%83%D0%BA">Виктор Пинчук</a> via <a href="https://commons.wikimedia.org/wiki/File:Santa_Clara_(Cuba).jpg">Wikimedia Commons</a>)</p>
																						 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->
													<span class="more-headlines">
				<a href="/page/2/?post_type=blog" class="readmore">More Headlines
				<span class="fa fa-angle-double-right" aria-hidden="true"></span>
				</a>
			</span>
			<h1 class="main-title">Featured Stories <!--span class="fa fa-angle-double-down" aria-hidden="true"></span--></h1>
						
				
											
				<div class="tile-post">
<article id="post-25150" class="post-25150 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/orbital-data-centers-in-legal-vacuum/">
			 					<img width="800" height="531" src="https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise.jpg" class="aligncenter wp-post-image" alt="cislunar orbit" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise.jpg 1599w, https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise-1024x680.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise-300x199.jpg 300w, https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise-768x510.jpg 768w, https://countervortex.org/wp-content/uploads/2026/03/1599px-Sunrise-1536x1020.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/orbital-data-centers-in-legal-vacuum/" rel="bookmark" >ORBITAL DATA CENTERS IN LEGAL VACUUM</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/03/16/" rel="bookmark"><time class="entry-date published" datetime="2026-03-16T23:20:07-04:00">March 16, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>With a landmark filing to the Federal Communications Commission, SpaceX proposed a network of one million solar-powered satellites designed not for communication, but for computation. This &#8220;Orbital Data Center&#8221; system, bolstered by the recent SpaceX-xAI merger, aims to place massive AI server farms into outer space—opening a jurisdictional dilemma. We are witnessing the birth of &#8220;Digital Soil,&#8221; a new form of territory where power is exercised not by planting flags, but by controlling space-based data processing. For emerging economies and Global South democracies, the implications are severe. If orbital infrastructure becomes the backbone of global AI, exclusion from its governance will translate directly into a new form of digital dependency. In a commentary for <strong>JURIST</strong> website, <strong>Vishal Sharma</strong> of NALSAR University in Hyderabad argues that the United Nations must designate orbital strata as &#8220;International Data Commons&#8221; to ensure that the &#8220;Digital Soil&#8221; of our future remains a global public good.</p>
													<a class="more-link" href="https://countervortex.org/orbital-data-centers-in-legal-vacuum/">Continue Reading<span class="screen-reader-text">ORBITAL DATA CENTERS IN LEGAL VACUUM</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-25127" class="post-25127 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/no-authorization-no-imminence-no-plan/">
			 					<img width="800" height="533" src="https://countervortex.org/wp-content/uploads/2026/03/USS_Spruance_launching_Tomahawk_during_Operation_Epic_Fury.jpg" class="aligncenter wp-post-image" alt="USS Spruance" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/03/USS_Spruance_launching_Tomahawk_during_Operation_Epic_Fury.jpg 1200w, https://countervortex.org/wp-content/uploads/2026/03/USS_Spruance_launching_Tomahawk_during_Operation_Epic_Fury-1024x683.jpg 1024w, https://countervortex.org/wp-content/uploads/2026/03/USS_Spruance_launching_Tomahawk_during_Operation_Epic_Fury-300x200.jpg 300w, https://countervortex.org/wp-content/uploads/2026/03/USS_Spruance_launching_Tomahawk_during_Operation_Epic_Fury-768x512.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/no-authorization-no-imminence-no-plan/" rel="bookmark" >NO AUTHORIZATION, NO IMMINENCE, NO PLAN</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/03/07/" rel="bookmark"><time class="entry-date published" datetime="2026-03-07T22:34:14-05:00">March 7, 2026</time><time class="updated" datetime="2026-03-11T14:15:45-04:00">March 11, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Given the absence of congressional authorization, UN Security Council approval, or any credible showing of imminence, the Trump administration&#8217;s strikes on Iran constitute violations of both US constitutional law and foundational international norms, setting a dangerous precedent for unchecked executive war-making. <strong>Mohamed Arafa</strong>, professor of law at Egypt&#8217;s Alexandria University, makes the case in a commentary for <strong>JURIST</strong>.</p>
													<a class="more-link" href="https://countervortex.org/no-authorization-no-imminence-no-plan/">Continue Reading<span class="screen-reader-text">NO AUTHORIZATION, NO IMMINENCE, NO PLAN</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-25063" class="post-25063 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/the-lunar-jurisdictional-trap/">
			 					<img width="746" height="360" src="https://countervortex.org/wp-content/uploads/2026/02/moon-earth.jpg" class="aligncenter wp-post-image" alt="moon" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2026/02/moon-earth.jpg 746w, https://countervortex.org/wp-content/uploads/2026/02/moon-earth-300x145.jpg 300w" sizes="auto, (max-width: 746px) 100vw, 746px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/the-lunar-jurisdictional-trap/" rel="bookmark" >THE LUNAR JURISDICTIONAL TRAP</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2026/02/03/" rel="bookmark"><time class="entry-date published" datetime="2026-02-03T23:03:57-05:00">February 3, 2026</time><time class="updated" datetime="2026-02-08T22:47:25-05:00">February 8, 2026</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The recent unveiling of Russia&#8217;s Selena project, a nuclear power plant slated for the lunar surface by 2035 under the joint Russo-Chinese International Lunar Research Station program, has been hailed as an unprecedented ambition of engineering. But beneath the proposed cooling towers lies a volatile reality. We are about to place the highest-stakes technologies of the 21st century—autonomous artificial intelligence (AI) and nuclear fission—on a legal foundation that has been frozen since the Cold War. In a commentary for <strong>JURIST</strong> website, <strong>Vishal Sharma</strong> of NALSAR University in Hyderabad argues that we need a new <em>Lex Spacialis</em> to fill the vacuum of space before it is filled by the strongest unaccountable power, with no human oversight.</p>
													<a class="more-link" href="https://countervortex.org/the-lunar-jurisdictional-trap/">Continue Reading<span class="screen-reader-text">THE LUNAR JURISDICTIONAL TRAP</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24971" class="post-24971 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/burma-junta-controlled-electoral-sham/">
			 					<img width="800" height="450" src="https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11.jpg" class="aligncenter wp-post-image" alt="Burma" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11.jpg 1600w, https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11-1024x576.jpg 1024w, https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11-300x169.jpg 300w, https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11-768x432.jpg 768w, https://countervortex.org/wp-content/uploads/2025/12/Protest_in_Myanmar_against_Military_Coup_14-Feb-2021_11-1536x864.jpg 1536w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/burma-junta-controlled-electoral-sham/" rel="bookmark" >BURMA: JUNTA-CONTROLLED ELECTORAL &#8216;SHAM&#8217;</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/12/23/" rel="bookmark"><time class="entry-date published" datetime="2025-12-23T16:30:29-05:00">December 23, 2025</time><time class="updated" datetime="2025-12-29T00:15:23-05:00">December 29, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Trouble-torn Burma is heading for the first general elections since the military coup of February 2021 that ousted a democratically elected government. The seating of a new parliament will mark the re-opening of the bicameral body which was suspended when the military junta seized power. However, several prominent political parties will be barred from the three-phase polling to start on December 28—including Aung San Suu Kyi&#8217;s National League for Democracy, which won the last general elections held in November 2020. The new elections, with only parties approved by the military junta participating, are rejected by the opposition as a &#8220;sham.&#8221; And there will be no voting in the nearly half of the country now under the control of the armed resistance loyal to the rebel parallel government, <strong>CounterVortex</strong> correspondent <strong>Nava Thakuria</strong> speaks to opposition activists in clandestinity, who demand that the world reject the junta&#8217;s controlled elections.</p>
													<a class="more-link" href="https://countervortex.org/burma-junta-controlled-electoral-sham/">Continue Reading<span class="screen-reader-text">BURMA: JUNTA-CONTROLLED ELECTORAL &#8216;SHAM&#8217;</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24940" class="post-24940 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/when-citizenship-becomes-caste/">
			 					<img width="800" height="449" src="https://countervortex.org/wp-content/uploads/2025/01/Fourteenth-Amendment.jpg" class="aligncenter wp-post-image" alt="Fourteenth Amendment" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/01/Fourteenth-Amendment.jpg 1367w, https://countervortex.org/wp-content/uploads/2025/01/Fourteenth-Amendment-1024x575.jpg 1024w, https://countervortex.org/wp-content/uploads/2025/01/Fourteenth-Amendment-300x169.jpg 300w, https://countervortex.org/wp-content/uploads/2025/01/Fourteenth-Amendment-768x431.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/when-citizenship-becomes-caste/" rel="bookmark" >WHEN CITIZENSHIP BECOMES CASTE</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/12/09/" rel="bookmark"><time class="entry-date published" datetime="2025-12-09T14:04:44-05:00">December 9, 2025</time><time class="updated" datetime="2025-12-09T14:07:16-05:00">December 9, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Birthright citizenship in the United States was never a bureaucratic detail or an immigration loophole. It was a direct assault on white supremacy&#8217;s original theory of the nation—that Black presence was permissible only as labor, never as belonging. The framers of the Fourteenth Amendment sought to end that theory for good. That amendment did not just welcome formerly enslaved Black people into the civic body; it attempted to inoculate the Constitution itself against the return of caste. Yet white supremacy, in every generation, finds new ways to renegotiate the boundaries of who counts as fully American. The Supreme Court has agreed to hear the consolidated case challenging lower-court rulings that struck down Trump&#8217;s attempt to repeal birthright citizenship. This signals that the highest court in the land is willing to consider whether whiteness may once again serve as the gatekeeper of America&#8217;s future. <strong>Timothy Benston</strong> of <strong>The Black Eye</strong> Substack writes that if this administration and this Court seek to restore whiteness as the measure of full belonging, they must face resistance equal to the enormity of that threat.</p>
													<a class="more-link" href="https://countervortex.org/when-citizenship-becomes-caste/">Continue Reading<span class="screen-reader-text">WHEN CITIZENSHIP BECOMES CASTE</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24915" class="post-24915 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/the-paradox-of-trumps-drug-war/">
			 					<img width="800" height="466" src="https://countervortex.org/wp-content/uploads/2025/12/caribmil2.png" class="aligncenter wp-post-image" alt="Operation Southern Spear" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/12/caribmil2.png 1400w, https://countervortex.org/wp-content/uploads/2025/12/caribmil2-1024x597.png 1024w, https://countervortex.org/wp-content/uploads/2025/12/caribmil2-300x175.png 300w, https://countervortex.org/wp-content/uploads/2025/12/caribmil2-768x448.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/the-paradox-of-trumps-drug-war/" rel="bookmark" >THE PARADOX OF TRUMP&#8217;S DRUG WAR</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/12/06/" rel="bookmark"><time class="entry-date published" datetime="2025-12-06T00:25:05-05:00">December 6, 2025</time><time class="updated" datetime="2025-12-07T00:28:40-05:00">December 7, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>This week, President Donald Trump pardoned a man federal prosecutors described as the architect of a &#8220;narco-state&#8221; who moved 400 tons of cocaine to United States shores. In September, the US military began killing people on Caribbean vessels based on unproven suspicions they were doing the same thing on a far smaller scale. The strikes have drawn allegations of war crimes; the contradiction has drawn bipartisan scrutiny. In an explainer for <strong>JURIST</strong>, <strong>Ingrid Burke Friedman</strong> examines the White House legal justifications for the air-strikes, and the response from international law experts. She also dissects the politics behind the divergent approaches to the pardoned Honduran ex-president Juan Orlando Hernández and the incumbent Venezuelan leader Nicolás Maduro—who faces trafficking charges in the US, and a destabilization campaign.</p>
													<a class="more-link" href="https://countervortex.org/the-paradox-of-trumps-drug-war/">Continue Reading<span class="screen-reader-text">THE PARADOX OF TRUMP&#8217;S DRUG WAR</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24635" class="post-24635 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/chinas-mega-hydro-scheme-sparks-outcry-in-india/">
			 					<img width="640" height="417" src="https://countervortex.org/wp-content/uploads/2025/08/Yarlung_Tsangpo_map.png" class="aligncenter wp-post-image" alt="Yarlung Tsangpo" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/08/Yarlung_Tsangpo_map.png 640w, https://countervortex.org/wp-content/uploads/2025/08/Yarlung_Tsangpo_map-300x195.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/chinas-mega-hydro-scheme-sparks-outcry-in-india/" rel="bookmark" >CHINA&#8217;S MEGA-HYDRO SCHEME SPARKS OUTCRY IN INDIA</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/08/06/" rel="bookmark"><time class="entry-date published" datetime="2025-08-06T13:34:47-04:00">August 6, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The Chinese state&#8217;s hydro-electric activities on Tibet&#8217;s Yarlung Tsangpo River—known in India as the Brahmaputra—have long been a source of tension with the downstream countries of India and Bangladesh, which cite a risk of ecological disaster. Now Beijing has started building a colossal dam at the Tsangpo&#8217;s great bend in southeastern Tibet, close to the border with the Indian state of Arunachal Pradesh. Chinese Premier Li Qiang just attended the groundbreaking ceremony for the Medog Hydropower Station in Nyingchi, Tibet Autonomous Region, and <a href="https://www.scmp.com/news/china/science/article/3319175/china-building-worlds-biggest-hydropower-dam-why-india-worried">hailed</a> it as the &#8220;project of the century.&#8221; But the $168 billion hydro-dam, which will be the world&#8217;s largest when it is completed, is <a href="https://indianexpress.com/article/explained/chinas-mega-dam-on-brahmaputra-concerns-in-india-10151594/">described</a> by Arunachal Pradesh leaders as an &#8220;existential threat.&#8221; <strong>CounterVortex</strong> correspondent <strong>Nava Thakuria</strong> reports from Northeast India.</p>
													<a class="more-link" href="https://countervortex.org/chinas-mega-hydro-scheme-sparks-outcry-in-india/">Continue Reading<span class="screen-reader-text">CHINA&#8217;S MEGA-HYDRO SCHEME SPARKS OUTCRY IN INDIA</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24260" class="post-24260 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/pkk-dissolution-the-long-farewell-to-vanguardism/">
			 					<img width="800" height="533" src="https://countervortex.org/wp-content/uploads/2025/05/Rojava_by_Montecruz_Foto.jpg" class="aligncenter wp-post-image" alt="Rojava" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/05/Rojava_by_Montecruz_Foto.jpg 800w, https://countervortex.org/wp-content/uploads/2025/05/Rojava_by_Montecruz_Foto-300x200.jpg 300w, https://countervortex.org/wp-content/uploads/2025/05/Rojava_by_Montecruz_Foto-768x512.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/pkk-dissolution-the-long-farewell-to-vanguardism/" rel="bookmark" >PKK DISSOLUTION: THE LONG FAREWELL TO VANGUARDISM</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/05/28/" rel="bookmark"><time class="entry-date published" datetime="2025-05-28T15:32:30-04:00">May 28, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>The formal dissolution of the Kurdistan Workers&#8217; Party (PKK), which had waged an armed insurgency against the Turkish state since 1984, has implications beyond the borders of Turkey, as the ideology of imprisoned leader Abdullah Öcalan has won a following among militant Kurds in Syria, Iraq, Iran and the greater diaspora. In an analysis for Britain&#8217;s anarchist-oriented <strong>Freedom News</strong>, writer <strong>Blade Runner</strong> argues that the PKK dissolution does not necessarily represent a retreat, but is the culmination of a long rethinking of the precepts of vanguardism, ethno-nationalism and separatism in favor of a broader strategic vision emphasizing gender liberation, pluralism and local democracy.</p>
													<a class="more-link" href="https://countervortex.org/pkk-dissolution-the-long-farewell-to-vanguardism/">Continue Reading<span class="screen-reader-text">PKK DISSOLUTION: THE LONG FAREWELL TO VANGUARDISM</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24148" class="post-24148 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/syrians-stand-up-for-palestine/">
			 					<img width="800" height="546" src="https://countervortex.org/wp-content/uploads/2025/04/damascus4palestine.jpeg" class="aligncenter wp-post-image" alt="#Damascus4Palestine" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/04/damascus4palestine.jpeg 1213w, https://countervortex.org/wp-content/uploads/2025/04/damascus4palestine-1024x699.jpeg 1024w, https://countervortex.org/wp-content/uploads/2025/04/damascus4palestine-300x205.jpeg 300w, https://countervortex.org/wp-content/uploads/2025/04/damascus4palestine-768x524.jpeg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/syrians-stand-up-for-palestine/" rel="bookmark" >FREE SYRIANS STAND UP FOR PALESTINE</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/04/09/" rel="bookmark"><time class="entry-date published" datetime="2025-04-09T17:31:09-04:00">April 9, 2025</time><time class="updated" datetime="2025-05-28T15:57:42-04:00">May 28, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p data-end="667" data-start="424">In an unprecedented wave of demonstrations across government-held territory, the Syrian people have <a href="https://ahdath-alyom.com/uncategorized/17728/%D8%B3%D9%88%D8%B1%D9%8A%D8%A7-%D9%85%D8%B8%D8%A7%D9%87%D8%B1%D8%A7%D8%AA-%D8%AD%D8%A7%D8%B4%D8%AF%D8%A9-%D8%AA%D9%86%D8%AF%D9%8A%D8%AF%D8%A7%D9%8B-%D8%A8%D8%A7%D9%84%D8%A7%D8%B9%D8%AA%D8%AF%D8%A7%D8%A1%D8%A7%D8%AA-%D8%A7%D9%84%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84%D9%8A%D8%A9-%D9%88%D8%AA%D8%B6%D8%A7%D9%85%D9%86%D8%A7%D9%8B-%D9%85%D8%B9-%D8%BA%D8%B2%D8%A9---%D8%A3%D8%AD%D8%AF%D8%A7%D8%AB-%D8%A7%D9%84%D9%8A%D9%88%D9%85.html" target="_blank" rel="noopener">taken to the streets</a> not to challenge their own leadership, but to protest Israel’s ongoing human rights <a href="https://www.jurist.org/news/2025/04/un-experts-urge-states-to-join-hague-group-and-hold-israel-accountable/" target="_blank" rel="noopener">atrocities</a> in Gaza and its repeated <a href="https://www.washingtonpost.com/world/2025/04/04/israel-syria-strikes-turkey-hama-homs/" target="_blank" rel="noopener">military strikes</a> on Syrian soil. An explainer by <strong>JURIST</strong> breaks down what’s fueling the anger, what it signals about a country emerging from decades of harsh internal rule, and why Syrians are rallying around a cause that reaches well beyond their own country&#8217;s borders.</p>
													<a class="more-link" href="https://countervortex.org/syrians-stand-up-for-palestine/">Continue Reading<span class="screen-reader-text">FREE SYRIANS STAND UP FOR PALESTINE</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-24037" class="post-24037 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/leonard-peltier-heads-home-at-last/">
			 					<img width="717" height="525" src="https://countervortex.org/wp-content/uploads/2025/02/leonard-1.jpg" class="aligncenter wp-post-image" alt="Leonard Peltier," decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2025/02/leonard-1.jpg 717w, https://countervortex.org/wp-content/uploads/2025/02/leonard-1-300x220.jpg 300w" sizes="auto, (max-width: 717px) 100vw, 717px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/leonard-peltier-heads-home-at-last/" rel="bookmark" >LEONARD PELTIER HEADS HOME —AT LAST</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2025/02/19/" rel="bookmark"><time class="entry-date published" datetime="2025-02-19T14:55:56-05:00">February 19, 2025</time><time class="updated" datetime="2025-02-20T04:54:00-05:00">February 20, 2025</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>Native American activist Leonard Peltier, one of the longest-serving federal prisoners in US history, has been released to home confinement after spending nearly five decades behind bars. His imprisonment stems from a controversial 1977 conviction in the shooting deaths of two FBI agents on South Dakota’s Pine Ridge Indian Reservation, a case that has been harshly contested between activists and law enforcement for generations. As Peltier returns to his birthplace on North Dakota&#8217;s Turtle Mountain Indian Reservation, his case continues to raise questions about justice, reconciliation, and the relationship between the federal government and Native American nations. In an explainer for <strong>JURIST</strong>, <strong>Ingrid Burke Friedman</strong> looks back on his case and its legacy.</p>
													<a class="more-link" href="https://countervortex.org/leonard-peltier-heads-home-at-last/">Continue Reading<span class="screen-reader-text">LEONARD PELTIER HEADS HOME —AT LAST</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-23572" class="post-23572 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/revolution-9/">
			 					<img width="800" height="421" src="https://countervortex.org/wp-content/uploads/2024/06/9Bleecker_FB.dc45afbceebca5f372febdc68ef9d741.jpg" class="aligncenter wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://countervortex.org/wp-content/uploads/2024/06/9Bleecker_FB.dc45afbceebca5f372febdc68ef9d741.jpg 1191w, https://countervortex.org/wp-content/uploads/2024/06/9Bleecker_FB.dc45afbceebca5f372febdc68ef9d741-1024x539.jpg 1024w, https://countervortex.org/wp-content/uploads/2024/06/9Bleecker_FB.dc45afbceebca5f372febdc68ef9d741-300x158.jpg 300w, https://countervortex.org/wp-content/uploads/2024/06/9Bleecker_FB.dc45afbceebca5f372febdc68ef9d741-768x404.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/revolution-9/" rel="bookmark" >REVOLUTION 9</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2024/06/25/" rel="bookmark"><time class="entry-date published" datetime="2024-06-25T02:45:32-04:00">June 25, 2024</time><time class="updated" datetime="2024-06-28T01:26:12-04:00">June 28, 2024</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>In a brief memoir written for Canada&#8217;s <strong>Skunk</strong> magazine, <strong>CounterVortex</strong> editor <strong>Bill Weinberg</strong> recalls his days as a young neo-Yippie in the 1980s. A remnant faction of the 1960s counterculture group adopted a punk aesthetic for the Reagan era, launched the US branch of the Rock Against Racism movement, brought chaos to the streets at Republican and Democratic political conventions, defied the police in open cannabis &#8220;smoke-ins&#8221; —and won a landmark Supreme Court ruling for free speech. The Yippie clubhouse at 9 Bleecker Street, the hub for all these activities, has long since succumbed to the gentrification of the East Village, but it survived long enough to provide inspiration to a new generation of radical youth during Occupy Wall Street.</p>
													<a class="more-link" href="https://countervortex.org/revolution-9/">Continue Reading<span class="screen-reader-text">REVOLUTION 9</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

					
								
				<div class="tile-post">
<article id="post-23530" class="post-23530 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-features content-layout-excerpt-thumb">
	
			 			
			
					<div class="entry-summary entry-summary-with-thumbnail">
									 					 				<a href="https://countervortex.org/chiquita-to-pay-for-paramilitary-terror/">
			 					<img width="1" height="1" src="https://countervortex.org/wp-content/uploads//sites/default/files/colombia_paramilitares-770x400.jpg" class="aligncenter wp-post-image" alt="paramilitaries" decoding="async" loading="lazy" />			 				</a>
				 			<header class="entry-header">
					<div class="entry-post-format">
							</div>
		 					<h2 class="entry-title"><a href="https://countervortex.org/chiquita-to-pay-for-paramilitary-terror/" rel="bookmark" >CHIQUITA TO PAY FOR PARAMILITARY TERROR IN COLOMBIA</a></h2>		
				<!--div class="entry-meta">
			<span class="posted-on"><i class="fa fa-calendar" aria-hidden="true"></i> <a href="https://countervortex.org/2024/06/15/" rel="bookmark"><time class="entry-date published" datetime="2024-06-15T22:35:07-04:00">June 15, 2024</time><time class="updated" datetime="2024-06-17T00:15:21-04:00">June 17, 2024</time></a></span><span class="byline"> <i class="fa fa-user" aria-hidden="true"></i> <span class="author vcard"><a class="url fn n" href="https://countervortex.org/author/countervortex/">CounterVortex</a></span></span>		</div--><!-- .entry-meta -->
			</header><!-- .entry-header -->

				 		<!--?php wp_trim_words( get_the_excerpt(), 10, ''); ?-->
				 		<p>In 2007, Chiquita—one of the world&#8217;s largest banana producers—admitted that for years it had been knowingly paying a Colombian terrorist organization to protect its operations in the country. The consequence was predictably violent, resulting in thousands of murders, disappearances, and acts of torture. This week, nearly two decades later, a federal jury in South Florida ordered the company to pay upwards of $38 million in damages in the first of multiple waves of wrongful death and disappearance lawsuits. In an explainer for <strong>JURIST</strong>, <strong>Ingrid Burke Friedman</strong> explores the factors that drove the multinational to make these payments, the consequences, and the legal impact.</p>
													<a class="more-link" href="https://countervortex.org/chiquita-to-pay-for-paramilitary-terror/">Continue Reading<span class="screen-reader-text">CHIQUITA TO PAY FOR PARAMILITARY TERROR IN COLOMBIA</span>&nbsp;<span class="fa fa-angle-double-right" aria-hidden="true"></span></a>									 		</div>

			 	

		

		</article><!-- #post-## -->
</div><!-- .tile-post -->

				
			<!--?php simple_life_paging_nav(); ?-->
	<nav class="navigation posts-navigation" role="navigation" aria-label="Posts">
		<h2 class="screen-reader-text">Posts navigation</h2>
		<div class="nav-links"><div class="nav-previous"><a href="/tag/features/page/2/" ><span class="meta-nav"><i class="fa fa-chevron-left" aria-hidden="true"></i></span> Previous Features</a></div></div>
	</nav>


				
		</main><!-- #main -->
	</div><!-- #primary -->

<div id="secondary" class="widget-area container clearfix col-sm-4" role="complementary">
	<aside id="search-2" class="widget clearfix widget_search"><form role="search" method="get" id="searchform" class="search-form" action="https://countervortex.org/">
	<div>
		<label class="screen-reader-text" for="s"></label>
		<input type="text" value="" name="s" id="s" placeholder="Search..." class="search-field" />
		<input type="submit" class="search-submit screen-reader-text" id="searchsubmit" value="Search" />
	</div>
</form><!-- .search-form -->
</aside><aside id="custom_html-4" class="widget_text widget clearfix widget_custom_html"><h3 class="widget-title">Regions</h3><div class="textwidget custom-html-widget"><div class="small_globe">
<a href="/regions">
<img class="small_globe_img" alt="World Globe" src="/sites/default/files/pogos_world.svg.png">
</a>
</div></div></aside><aside id="custom_html-5" class="widget_text widget clearfix widget_custom_html"><div class="textwidget custom-html-widget"><div class="region-links">
<div class="region-set">
<a href="/tag/iraq-region/" class="region-list">Iraq</a> - <a href="/tag/syria/" class="region-list">Syria</a><br>
<a href="/tag/iran-region/" class="region-list">Iran</a> - <a href="/tag/yemen/" class="region-list">Yemen</a><br>
<a href="/tag/afghanistan/" class="region-list">Afghanistan</a><br>
<a href="/tag/palestine-region/" class="region-list">Palestine</a><br><a href="/tag/kurdistan/" class="region-list">Kurdistan</a><br>
<a href="/tag/greater-middle-east/" class="region-list">Greater Mideast</a>
</div>
<div class="region-set">
<a href="/tag/africa-region/" class="region-list">Africa</a><br>
<a href="/tag/Sahel" class="region-list">Sahel</a> - <a href="/tag/horn-of-africa" class="region-list">Horn</a><br>
<a href="/tag/west-africa" class="region-list">West Africa</a><br>
<a href="/tag/north-africa-region/" class="region-list">North Africa</a><br>
	<a href="/tag/central-africa/" class="region-list">Central Africa</a><br><a href="/tag/sudan/" class="region-list">Sudan</a><br>
</div>
<div class="region-set">
<a href="/tag/south-asia-region/" class="region-list">South Asia</a><br>
<a href="/tag/southeast-asia-region/" class="region-list">Southeast Asia</a><br>
<a href="/tag/oceania-region/" class="region-list">Oceania</a><br>
<a href="/tag/east-asia-region/" class="region-list">East Asia</a><br>
<a href="/tag/central-asia-region/" class="region-list">Inner Asia</a><br>
</div>
<div class="region-set">
<a href="/tag/european-region/" class="region-list">Europe</a><br>
	<a href="/tag/central-europe/" class="region-list">Central Europe</a><br>
	<a href="/tag/balkans/" class="region-list">Balkans</a><br>
		<a href="/tag/ukraine/" class="region-list">Ukraine</a><br>
<a href="/tag/caucasus-region/" class="region-list">Caucasus</a><br>

</div>
<div class="region-set">
<a href="/tag/mexico-region/" class="region-list">Mexico</a><br>
<a href="/tag/central-america-region/" class="region-list">Central America</a><br>
<a href="/tag/caribbean-region/" class="region-list">Caribbean</a><br>
</div>
<div class="region-set">
<a href="/tag/andean-region/" class="region-list">Andes</a><br>
<a href="/tag/amazon-region/" class="region-list">Amazon</a><br>
<a href="/tag/southern-cone/" class="region-list">Southern Cone</a><br>
</div>
<div class="region-set">
<a href="/tag/homeland-region/" class="region-list">North America</a><br>
<a href="/tag/new-york-city/" class="region-list">New York City</a><br>
</div>
<div class="region-set">
<a href="/tag/watching-the-shadows/" class="region-list">Shadow Watch</a><br>
<a href="/tag/planet-watch/" class="region-list">Planet Watch</a><br>
</div>
</div>
</div></aside><aside id="recent-comments-2" class="widget clearfix widget_recent_countervortex_comments"><h3 class="widget-title">Recent Updates</h3><ul id="recentcomments"><li class="recentcomments"><a href="https://countervortex.org/blog/nyc-outrage-over-automotive-terror-at-last/#comment-10017682">More automotive terror in Queens</a></li><li class="recentcomments"><a href="https://countervortex.org/blog/french-firm-charged-with-abetting-isis-atrocities/#comment-10017681">French company guilty in payoffs to ISIS</a></li><li class="recentcomments"><a href="https://countervortex.org/blog/ukrainian-robots-break-through-russian-lines/#comment-10017680">Relentless drone terror in Ukraine</a></li><li class="recentcomments"><a href="https://countervortex.org/blog/ongoing-us-air-strikes-on-vessels-in-caribbean/#comment-10017679">Relentless US strikes on 'drug boats'</a></li><li class="recentcomments"><a href="https://countervortex.org/blog/un-rights-chief-expresses-alarm-over-deaths-in-ice-custody/#comment-10017678">Sheinbaum hits back at Trump over migrant deaths</a></li></ul></aside>
		<aside id="recent-posts-2" class="widget clearfix widget_recent_entries">
		<h3 class="widget-title">Features</h3>
		<ul>
											<li>
					<a href="https://countervortex.org/orbital-data-centers-in-legal-vacuum/">ORBITAL DATA CENTERS IN LEGAL VACUUM</a>
									</li>
											<li>
					<a href="https://countervortex.org/no-authorization-no-imminence-no-plan/">NO AUTHORIZATION, NO IMMINENCE, NO PLAN</a>
									</li>
											<li>
					<a href="https://countervortex.org/the-lunar-jurisdictional-trap/">THE LUNAR JURISDICTIONAL TRAP</a>
									</li>
											<li>
					<a href="https://countervortex.org/burma-junta-controlled-electoral-sham/">BURMA: JUNTA-CONTROLLED ELECTORAL &#8216;SHAM&#8217;</a>
									</li>
											<li>
					<a href="https://countervortex.org/when-citizenship-becomes-caste/">WHEN CITIZENSHIP BECOMES CASTE</a>
									</li>
					</ul>

		</aside><aside id="custom_html-3" class="widget_text widget clearfix widget_custom_html"><h3 class="widget-title">Links</h3><div class="textwidget custom-html-widget"><div class="link-list">
<p><a href="https://soundcloud.com/user-752167240"><img alt="CounterVortex" src="/sites/default/files/podcast.jpg" style="width: 100px; height: 100px;" /></a></p>
<p>
	 
	<a href="http://www.globalganjareport.com" target="_new"><img alt="" class="image image-_original" src="/sites/default/files/96-Msvd_thirdSmLgo.jpg" style="height:133px; width:133px" title="" /></a></p>
<p>
	<a href="http://globaljusticeecology.org/" target="_new"><img alt="" class="image image-_original" src="/sites/default/files/logo.jpg" style="height:148px; width:142px" title="" /></a></p>
	<p>
		<a href="http://www.bdsmovement.net/" target="_new"><img alt="" class="image image-_original" src="/sites/default/files/BDS.gif" style="width:140px" title="" /></a></p>
<p>
	<a href="https://enlacezapatista.ezln.org.mx/" target="_new"><img alt="EZLN" class="image image-_original" src="/wp-content/uploads/2019/04/ezln-zapatista-liberation-national.gif" style="width: 140px;" title="" /></a></p>
<p>
	<a href="https://www.onic.org.co" target="_new"><img alt="ONIC" class="image image-_original" src="/sites/default/files/CABECERA_WEB-SITE4.jpg" style="width: 140px;" title="" /></a></p>
<p><a href="http://www.rawa.org/" target="_new"><img alt="RAWA" class="image image-_original" src="/sites/default/files/RAWA.jpg" style="height: 150px; width: 150px;" title="" /></a></p>
 
<p><a href="https://www.marxisthumanistinitiative.org/" target="_new"><img alt="Marxist-Humanist Initiative" class="image image-_original" src="/wp-content/uploads/2021/02/mhi_logo-3.png" style="height: 150px; width: 150px;" title="" /></a></p>	

<p>
	<a href="http://www.morc.info" target="_new"><img alt="morc" class="image img_assist_custom" src="/sites/default/files/MORC-radio-logo_98_0.jpg" style="height:143px; width:81px" title="morc" /></a></p>
	<p><strong>We depend on our readers.</strong></p><p><strong>Please support us:</strong></p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input name="cmd" type="hidden" value="_xclick" /> <input name="business" type="hidden" value="billw@riseup.net" /> <input name="item_name" type="hidden" value="SUPPORT THE REPORT!!" /> <input name="item_number" type="hidden" value="SUPPORT THE REPORT!!" /> <input alt="Make payments with PayPal - it's fast, free and secure!" border="0" name="submit" src="/sites/default/files/x-click-but04.gif" type="image" /></form>
</div>
</div></aside><aside id="meta-2" class="widget clearfix widget_meta"><h3 class="widget-title">Login</h3>
		<ul>
						<li><a href="https://countervortex.org/wp-login.php">Log in</a></li>
			<li><a href="https://countervortex.org/feed/">Entries feed</a></li>
			<li><a href="https://countervortex.org/comments/feed/">Comments feed</a></li>

			<li><a href="https://wordpress.org/">WordPress.org</a></li>
		</ul>

		</aside></div><!-- #secondary -->
	</div> <!-- .row -->
	</div><!-- #content -->

	<div class="container" id="footer_widgets_wrap" ><div class="row"><div class="col-sm-12 footer-widget-area"></div><!-- .footer-widget-area --></div><!-- .row --></div>
	<footer id="colophon" class="site-footer container" role="contentinfo">

				
		
		
			<div id="copyright-wrap">
				<div class="copyright-text">&copy; 2026 All rights reserved</div>
			</div>

		
		
		
	</footer><!-- #colophon -->
	</div><!-- #page -->

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/countervortex\/*","\/wp-content\/themes\/simple-life\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<style id='core-block-supports-inline-css'>
/**
 * Core styles: block-supports
 */

</style>
<script src="https://countervortex.org/wp-content/plugins/hootkit/assets/jquery.lightSlider.js?ver=1.1.2" id="jquery-lightSlider-js"></script>
<script src="https://countervortex.org/wp-content/plugins/hootkit/assets/widgets.js?ver=2.0.21" id="hootkit-widgets-js"></script>
<script src="https://countervortex.org/wp-content/themes/simple-life/js/navigation.js?ver=3.0.0" id="simple-life-navigation-js"></script>
<script src="https://countervortex.org/wp-content/themes/simple-life/third-party/meanmenu/jquery.meanmenu.js?ver=2.0.8" id="simple-life-meanmenu-script-js"></script>
<script id="simple-life-custom-js-extra">
var simpleLifeScreenReaderText = {"expand":"expand menu","collapse":"collapse menu"};
</script>
<script src="https://countervortex.org/wp-content/themes/simple-life/js/custom.js?ver=3.0.0" id="simple-life-custom-js"></script>
</body>
</html>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 

Served from: countervortex.org @ 2026-04-22 09:54:52 by W3 Total Cache
-->