Joyce’s Thought of the Day 6/21/22 -The plague of communism 850 WFTL – 850 WFTL
Joyce's Thought of the Day 6/21/22 -The plague of communism 850 WFTL ';this.div = document.querySelectorAll(this.divSelector)[0];this.div.appendChild(html);if(this.div.getElementsByClassName('app-badge-google').length > 0 && browser && browser.name && browser.name == 'ios') { this.div.getElementsByClassName('app-badge-google')[0].classList.add('hide');}jQuery('.play-button').first().clone().appendTo('.play-button-mobile');document.body.classList.add('has-livebar');document.body.classList.add('livebar-'+this.station_type);}// set heightthis.setHeight = function() { // TODO variable heightvar innerDocContentHeight = 80;this.div.style.height = innerDocContentHeight + "px";}this.removeUrlProtocol = function(url) { var newstr = url.replace('http://', '//'); return newstr;};// subscribe eventsthis.subscribeEvents = function() {var _this = this;for (var i in this.configChannels) {var channelName = this.configChannels[i];var channel = this.pusher.subscribe(channelName);for (var j in this.events) {var eventName = this.events[j];channel.bind(eventName, function(data) {_this.pusherEvent(channelName, eventName, data);});}_this.channels.push(channel);}};// process real time `cue` event from Pusher.comthis.pusherEvent = function(channelName, eventName, pusherData) {this.processTrackOrEvent(pusherData);};this.latestEpisode = function() {var episode = this.latest_episode;var data = {type: 'podcast',artist: '', // episode.podcast_title,trackName: this.truncate(episode.post_title, 71),art: episode.post_thumbnail,url: episode.url}this.processTrackOrEvent(data);}// grabs the latest track from the apithis.ajaxLatestTrack = function() {var endpoint = this.endpoint + '/hll_widget_livebar_cues.php';var data = {'limit': '1'};var _this = this;var httpRequest = new XMLHttpRequest();httpRequest.open('POST', endpoint);httpRequest.setRequestHeader("Content-type", "application/json");httpRequest.send(JSON.stringify(data));httpRequest.onreadystatechange = function () {if (httpRequest.readyState == 4 && httpRequest.status == 200) {var json = JSON.parse(httpRequest.responseText);_this.processTrackOrEvent(json.data.response[0]);}}};// grabs the latest event from the api this.ajaxLatestEvent = function() { var endpoint = this.endpoint + '/hll_widget_livebar_events.php'; var data = {'limit': '3'}; var _this = this; var httpRequest = new XMLHttpRequest(); httpRequest.open('POST', endpoint); httpRequest.setRequestHeader("Content-type", "application/json"); httpRequest.send(JSON.stringify(data)); httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { var json = JSON.parse(httpRequest.responseText); _this.processTrackOrEvent(json.data.response[0]); } } };// grabs the latest podcast episode from the wp-json api this.ajaxLatestEpisode = function() { var endpoint = '/wp-json/hbi/v1/liveplayer/latestepisode'; var _this = this; var httpRequest = new XMLHttpRequest(); httpRequest.open('GET', endpoint); httpRequest.setRequestHeader("Content-type", "application/json"); httpRequest.send(); httpRequest.onreadystatechange = function () { if (httpRequest.readyState == 4 && httpRequest.status == 200) { var episode = JSON.parse(httpRequest.responseText); var data = { type: 'podcast', artist: '', // episode.podcast_title, trackName: _this.truncate(episode.post_title, 71), art: episode.post_thumbnail, url: episode.url } _this.processTrackOrEvent(data); } } };// process the track or event data and update the HTMLthis.processTrackOrEvent = function(d) {// debug: print data to console// window.console.log('processTrackOrEvent',d);// workaround: ignore spots for nowvar type = d.type;if (type !== 'podcast' && type !== 'song' && type !== 'show' && type !== 'special-event' && type !== 'guest' && type !== 'other') {return;}if(type == 'song') {var trackId = d.data.musicbrainz_recording;var artist = d.data.artist || '';var trackName = d.data.description || '';var art = this.removeUrlProtocol(d.data.art_url || "https://www.850wftl.com/wp-content/plugins/hbi-player-widgets//assets/img/track.png");art = art + '?ver=3';}else if(type == 'podcast') {var artist = d.artist || '';var trackName = d.trackName || '';var art = this.removeUrlProtocol(d.art || "https://www.850wftl.com/wp-content/plugins/hbi-player-widgets//assets/img/track.png");this.setEpisodeTimer();}else { var trackId = d.id;var timeRange = function() {let start_date = moment(d.start_date);let end_date = moment(d.end_date);let default_format = 'h:mma';let start_day_format = (default_format);let end_day_format = (default_format);// If start and end dates both fall in AM or PM, make it brief// Example: 10:00-11:00am vs 10:00am-11:00amif(start_date.format('a') === end_date.format('a')) {start_day_format = 'h:mm';}// Remove minutes if 00if(start_date.minutes() == 0) { start_day_format = 'h';}if(end_date.minutes() == 0) { end_day_format = 'ha';}return start_date.format(start_day_format) + "-" + end_date.format(end_day_format); };var artist = timeRange();var trackName = d.name || '';var art = this.removeUrlProtocol(d.photo || "https://www.850wftl.com/wp-content/plugins/hbi-player-widgets//assets/img/event.png");// Start timer this.setEventTimer();}// This block retrieves art work as a blob so we can render it in the DOM// ... and additionally process its color swatches in a canvas context via Vibrant.js// ... with only ONE network request.// https://stackoverflow.com/questions/23013871/how-to-parse-into-base64-string-the-binary-image-from-response// https://stackoverflow.com/questions/33902299/using-jquery-ajax-to-download-a-binary-filefetchBlob(art, function(arrayBuffer) {var blob = new Blob([arrayBuffer], {type: "image/jpeg"});var url = URL.createObjectURL(blob);// Set artwork in DOMdocument.getElementsByClassName('album-art-img')[0].src=url;document.getElementsByClassName('album-art-img')[0].classList.remove('d-none');document.getElementsByClassName('live-player-background')[0].src=url;// Use live player button color if set in Customizerif(window.livePlayerButtonColor) {// set color of large and compact play buttons with customizer colorArray.from(document.getElementsByClassName('play-circle-outline-path')).forEach(function(element) {element.style.fill = window.livePlayerButtonColor;// display play button if hidden (avoids color flash on load)document.getElementById('play-button-column').classList.remove('invisible');});return;}// If live player button color is not manually set, automatically get album art color from vibrant.jsvar img = document.getElementsByClassName('album-art-img')[0];img.addEventListener('load', function() {var vibrant = new Vibrant(img);var swatches = vibrant.swatches();var swatch = swatches['LightVibrant'] || swatches['Vibrant'] || swatches['Muted'] || swatches['DarkMuted'];// trap edge case where Vibrant.js doesn't return a swatchif(swatch !== undefined) {// get hex from swatch libraryvar hex = swatch.getHex();// set color of large and compact play buttonsArray.from(document.getElementsByClassName('play-circle-outline-path')).forEach(function(element) {element.style.fill = hex;});}// display play button if hidden (avoids color flash on load)document.getElementById('play-button-column').classList.remove('invisible');});});this.div.getElementsByClassName('onair-artist')[0].innerHTML = artist;this.div.getElementsByClassName('onair-track')[0].innerHTML = trackName;// link to episode if live player is in podcast modeif(type == 'podcast') {jQuery('.play-button a, #circles, .album-art a, .track a').attr('href',d.url).removeAttr('target');jQuery('.onair-artist').hide();}// Skip TextFit step for podcast episodesif(this.station_type == 'podcast') {return;}// Dynamically size long track titles - https://github.com/STRML/textFit// var textFitOptions = {// alignVert: false, // if true, textFit will align vertically using css tables// alignHoriz: false, // if true, textFit will set text-align: center// multiLine: false, // if true, textFit will not set white-space: no-wrap// detectMultiLine: false, // disable to turn off automatic multi-line sensing// minFontSize: 11, // in px// maxFontSize: 40, // in px// reProcess: true, // if true, textFit will re-process already-fit nodes. Set to 'false' for better performance// widthOnly: false, // if true, textFit will fit text to element width, regardless of text height// alignVertWithFlexbox: false, // if true, textFit will use flexbox for vertical alignment// }if (textFit !== "undefined") {textFit(this.div.getElementsByClassName('onair-track')[0], {alignVert: false, // if true, textFit will align vertically using css tablesalignHoriz: false, // if true, textFit will set text-align: centermultiLine: false, // if true, textFit will not set white-space: no-wrapdetectMultiLine: false, // disable to turn off automatic multi-line sensingminFontSize: 13, // in pxmaxFontSize: 31, // in pxreProcess: true, // if true, textFit will re-process already-fit nodes. Set to 'false' for better performancewidthOnly: false, // if true, textFit will fit text to element width, regardless of text heightalignVertWithFlexbox: true, // if true, textFit will use flexbox for vertical alignment});textFit(this.div.getElementsByClassName('onair-artist')[0], {alignVert: false, // if true, textFit will align vertically using css tablesalignHoriz: false, // if true, textFit will set text-align: centermultiLine: false, // if true, textFit will not set white-space: no-wrapdetectMultiLine: false, // disable to turn off automatic multi-line sensingminFontSize: 11, // in pxmaxFontSize: 30, // in pxreProcess: true, // if true, textFit will re-process already-fit nodes. Set to 'false' for better performancewidthOnly: false, // if true, textFit will fit text to element width, regardless of text heightalignVertWithFlexbox: true, // if true, textFit will use flexbox for vertical alignment});}}// Set timer for event refresh this.setEventTimer = function() { var _this = this; setTimeout(function(){ _this.ajaxLatestEvent(); }, this.eventRefreshTime); };// Set timer for episode refresh this.setEpisodeTimer = function() { var _this = this; setTimeout(function(){ _this.ajaxLatestEpisode(); }, this.eventRefreshTime); }; // https://stackoverflow.com/questions/1199352/smart-way-to-truncate-long-strings this.truncate = function(str, n){ return (str.length > n) ? str.substr(0, n-1) + '' : str; };// https://stackoverflow.com/questions/23013871/how-to-parse-into-base64-string-the-binary-image-from-responsefunction fetchBlob(uri, callback) { var xhr = new XMLHttpRequest(); xhr.open('GET', uri, true); xhr.responseType = 'arraybuffer'; xhr.onload = function(e) {if (this.status == 200) { var blob = this.response; if (callback) {callback(blob); }} }; xhr.send();};}// Set and intializevar hllLiveBarWidget = new hllLiveBarWidgetObject('player-widget-livebar');hllLiveBarWidget.init();
Link:
Joyce's Thought of the Day 6/21/22 -The plague of communism 850 WFTL - 850 WFTL
- Christianity, Islam and communism and the global conquest - The Hans India - June 29th, 2025 [June 29th, 2025]
- New York turns to full-blown Communism - Schiff Sovereign - June 28th, 2025 [June 28th, 2025]
- Trkiye's answer to Disco Elysium just broke cover, featuring more lawyers, fewer cops, an indeterminate amount of communism and twin fistfuls of guilt... - June 28th, 2025 [June 28th, 2025]
- A Cuban woman surprises the President of Madrid in Miami: I am here because of communism. - CiberCuba - June 24th, 2025 [June 24th, 2025]
- The essence of revolutionary communism: new introduction to the 'Classics of Marxism' - In Defence of Marxism - June 22nd, 2025 [June 22nd, 2025]
- Elicer vila and Destino exchange fire on social media: "Those of us who fled communism value the freedom of the U.S." - CiberCuba - June 22nd, 2025 [June 22nd, 2025]
- The progressive "West" and the ghost of monarchy - In Defense of Communism - June 20th, 2025 [June 20th, 2025]
- 39th Congress of the Communist Party of Sweden (SKP): Statements on Palestine and the Ukraine War - In Defense of Communism - June 20th, 2025 [June 20th, 2025]
- First Nations are mired in 'soft communism.' This leader has the fix - National Post - June 20th, 2025 [June 20th, 2025]
- Reactions by Communist Parties on Israel-Iran War - In Defense of Communism - June 20th, 2025 [June 20th, 2025]
- Czech Blog: Wine and War A Glimpse Into the Legacies of Communism - Global Atlanta - June 14th, 2025 [June 14th, 2025]
- Communist Party of Israel and Hadash stand against Netanyahu government's attack on Iran - In Defense of Communism - June 14th, 2025 [June 14th, 2025]
- Anticommunism in Kyrgyzstan: The world's largest monument dedicated to Lenin to be dismantled - In Defense of Communism - June 10th, 2025 [June 10th, 2025]
- Communism Survivor on Revoking Chinese Student Visas: Beware the Enemy Within - NTD News - June 1st, 2025 [June 1st, 2025]
- The specter of communism still looms over the Balkans - The Spectator Australia - June 1st, 2025 [June 1st, 2025]
- Campus Communism: How the CCP Compromised Harvard and US Higher Education - Hudson Institute - May 30th, 2025 [May 30th, 2025]
- How the Portuguese Communist Party assesses the negative electoral result of 18 May - In Defense of Communism - May 30th, 2025 [May 30th, 2025]
- The shadow of communism still looms over the Balkans - The Spectator - May 30th, 2025 [May 30th, 2025]
- Texas House Advances Bill Requiring Schools to Teach History and 'Atrocities' of Communism - The Texan - May 24th, 2025 [May 24th, 2025]
- Bill teaching children dangers of communism passed in the Texas House - Washington Examiner - May 24th, 2025 [May 24th, 2025]
- Communists in Greece block trucks with ammunition heading to Ukraine - In Defense of Communism - May 24th, 2025 [May 24th, 2025]
- Communist Party of India (Marxist) condemns the killing of 27 Maoists by state forces in Chhattisgarh - In Defense of Communism - May 24th, 2025 [May 24th, 2025]
- Dr Oz Ridiculed for Urging Parents to Feed Their Kids 'Real Food': 'When Michelle Obama Said This It Was Communism' - Latin Times - May 24th, 2025 [May 24th, 2025]
- Bill to teach Texas kids the dangers of communism but not fascism OK'd by House - WOAI - May 22nd, 2025 [May 22nd, 2025]
- Bill to teach Texas kids the dangers of communism but not fascism OK'd by House - The Texas Tribune - May 22nd, 2025 [May 22nd, 2025]
- Poland: Don Streich, another victim of communism, will be beatified - Exaudi - May 22nd, 2025 [May 22nd, 2025]
- Can degrowth communism save the world? - resilience.org - May 19th, 2025 [May 19th, 2025]
- "You blocked the system": A Cuban asks a robot with artificial intelligence when communism will fall in Cuba, and this is what it said -... - May 19th, 2025 [May 19th, 2025]
- Joint statement by the KKE, AKEL, PCP and KSM in the European Parliament against anti-communist initiative - In Defense of Communism - May 17th, 2025 [May 17th, 2025]
- The Pope Who Foresaw the Horrors of Communism - RealClearMarkets - May 17th, 2025 [May 17th, 2025]
- Communist Party of Turkey: NATO Foreign Ministers are unwelcome in Antalya! - In Defense of Communism - May 17th, 2025 [May 17th, 2025]
- East vs west? Romanias biggest vote since the fall of communism - Channel 4 - May 17th, 2025 [May 17th, 2025]
- Nazi collaborator's name initially engraved on the Victims of Communism memorial - Yahoo News Canada - May 17th, 2025 [May 17th, 2025]
- Communist Party of Turkey on the dissolution of the Kurdish PKK group - In Defense of Communism - May 17th, 2025 [May 17th, 2025]
- 80th anniversary of the Anti-Fascist Victory: When the Communists saved humanity from the Nazi monster - In Defense of Communism - May 11th, 2025 [May 11th, 2025]
- Communist Party of Pakistan: Down with chauvinism and war hysteria, long live proletarian internationalism - In Defense of Communism - May 11th, 2025 [May 11th, 2025]
- Shen Yun brings 'China Before Communism' to Proctors Theater for two-night performance - WRGB - April 23rd, 2025 [April 23rd, 2025]
- BBC accused of giving children 'dishonest' view of communism after failing to mention mass killings - GB News - April 23rd, 2025 [April 23rd, 2025]
- FSU Shooting Suspect Was Forced to Leave Political Club After Insisting Communism Was 'Ruining America', Student Says - Latin Times - April 23rd, 2025 [April 23rd, 2025]
- Blushing Bolsheviks! Not even fathers of Soviet communism did what Colorado may do to parents by sanctifying transgenderism - Read Lion - April 23rd, 2025 [April 23rd, 2025]
- Blushing Bolsheviks! Not even fathers of Soviet communism did what Colorado may do to parents by sanctifying transgenderism - The Heartlander - April 23rd, 2025 [April 23rd, 2025]
- Partisans for Peace: On the 80th anniversary of Italy's liberation - Against rearmament and imperialist war - In Defense of Communism - April 16th, 2025 [April 16th, 2025]
- 'Red Scare' revisits the fear of Communism that gripped post-WWII America - KNAU Arizona Public Radio - March 18th, 2025 [March 18th, 2025]
- Republican U.S. Senators Introduce Bill to Teach Students the Dangers of Communism - Sierra Sun Times - March 18th, 2025 [March 18th, 2025]
- A bill in the U.S. seeks to teach the dangers of communism in schools - CiberCuba - March 18th, 2025 [March 18th, 2025]
- Letter to the editor: What happened to being anti-Communism? - Pierce County Journal - March 18th, 2025 [March 18th, 2025]
- Beyond The Iron Curtain: How Polish Posters Subverted Hollywood Under Communism - Deadline - March 13th, 2025 [March 13th, 2025]
- Linda Rama: This is what the world can learn from the fall of communism - MSNBC - March 13th, 2025 [March 13th, 2025]
- Christian training center in northern China amid communism, Islam, and poverty - Mission Network News - February 27th, 2025 [February 27th, 2025]
- Gulys: Remembering victims of communism is both a task and a duty - Budapest Times - February 27th, 2025 [February 27th, 2025]
- Love and Torture The Stories of Russian Women Who Married Albanians During Communism - Euronews Albania - February 27th, 2025 [February 27th, 2025]
- Communist Knesset member Cassif: "They are trying to silence us, theres a fascist atmosphere in Israel" - In Defense of Communism - February 27th, 2025 [February 27th, 2025]
- It allowed us to survive, to not go mad: the CIA book smuggling operation that helped bring down communism - The Guardian - February 23rd, 2025 [February 23rd, 2025]
- Nazism, Fascism, And Communism: Warring Sons To A Common Father OpEd - Eurasia Review - February 23rd, 2025 [February 23rd, 2025]
- State Capitol news in brief: Communism lesson bill goes to Sanders | Senate to convene despite icy weather - Arkansas Online - February 23rd, 2025 [February 23rd, 2025]
- USAID was created to counter communism, but came to a nearly opposite agenda - The Times and Democrat - February 23rd, 2025 [February 23rd, 2025]
- My Dear Mother, The Last Divorce of Communism, Von Fock Tease New Chapter for Baltic TV Shows: Culturally Specific and Universally Relevant - AOL - February 23rd, 2025 [February 23rd, 2025]
- Canada: Marxist School 2025 studying the pillars of communism to prepare for turbulent times - In Defence of Marxism - February 23rd, 2025 [February 23rd, 2025]
- Cottons new book on China aims to ring the alarm bell on Taiwan and communism - coloradopolitics.com - February 23rd, 2025 [February 23rd, 2025]
- Sean McMeekin: Don't Whitewash the History of Communism - Reason - February 14th, 2025 [February 14th, 2025]
- Don't Whitewash the History of Communism - RealClearPolicy - February 14th, 2025 [February 14th, 2025]
- The Socialist State in Latvia: From the revolutionary triumph to the drama of dissolution - In Defense of Communism - February 14th, 2025 [February 14th, 2025]
- Nothing says 'communism' like this $165 poverty-chic plastic bag based on Disco Elysium, aka 'the level of greed that they talk about in the Bible' -... - February 7th, 2025 [February 7th, 2025]
- Texas Audience Delighted to See Universal Beliefs in China Before Communism Through Shen Yun - NTD - February 7th, 2025 [February 7th, 2025]
- Communist Workers Platform USA: The Class Struggle in America and the Communist Strategy - In Defense of Communism - February 7th, 2025 [February 7th, 2025]
- Communist Party of Turkey: Ahmed Al-Shara is an ISIS remnant and a war criminal - In Defense of Communism - February 7th, 2025 [February 7th, 2025]
- Vietnam's Communist Party marks 95th anniversary - In Defense of Communism - February 7th, 2025 [February 7th, 2025]
- The Beauty of China Before Communism Was Eye-Opening, Says Houston Theatergoer - NTD - February 3rd, 2025 [February 3rd, 2025]
- Pastor Delighted to See Shen Yun Express Love for Traditional Ways Before Communism - NTD - January 27th, 2025 [January 27th, 2025]
- KKE's leader Koutsoumbas on the 80th anniversary of the liberation of Auschwitz by the Red Army - In Defense of Communism - January 27th, 2025 [January 27th, 2025]
- Elon Musk and the Dictatorship of the Capital - In Defense of Communism - January 27th, 2025 [January 27th, 2025]
- Another shameful anticommunist resolution of the European Parliament, full of unhistorical references - In Defense of Communism - January 27th, 2025 [January 27th, 2025]
- Education panel backs expansion of tuition waivers for guardsmen, voices concern over bill to teach perils of communism - Northwest Arkansas... - January 26th, 2025 [January 26th, 2025]
- Gaza: By whatever name you call It Is Genocide! - In Defense of Communism - January 26th, 2025 [January 26th, 2025]
- Eduard Kuznetsov, Soviet dissident whose death sentence exposed the plight of Jews under communism - Yahoo! Voices - January 1st, 2025 [January 1st, 2025]
- The International Communist Movement at a critical crossroads: The necessity of revolutionary regroupment - In Defense of Communism - January 1st, 2025 [January 1st, 2025]
- 66th anniversary of the Cuban Revolution: Statement by the European Communist Action - In Defense of Communism - January 1st, 2025 [January 1st, 2025]
- Celebrating the Centenary of Communist Movement in India: Uphold the Banner of Communism in the Struggle against Fascism - Communist Party of India... - January 1st, 2025 [January 1st, 2025]
- Eduard Kuznetsov, Soviet dissident whose death sentence exposed the plight of Jews under communism - The Telegraph - January 1st, 2025 [January 1st, 2025]
- Book Review: Marx in the Anthropocene: Towards the Idea of Degrowth Communism - Information Technology and Innovation Foundation - December 22nd, 2024 [December 22nd, 2024]