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
- Lenin and Stalin in Contemporary Russia: What the Data Actually Shows - In Defense of Communism - April 12th, 2026 [April 12th, 2026]
- China Before Communism: Seattle Theatergoers Find Joy in Shen Yun - NTD News - April 12th, 2026 [April 12th, 2026]
- Exploring the Asian conflicts and campaign against communism - Upper Yarra Star Mail - April 12th, 2026 [April 12th, 2026]
- From Sputnik 1 and Yuri Gagarin to Artemis II: The Socialist Origins of Spaceflight - In Defense of Communism - April 10th, 2026 [April 10th, 2026]
- Tudeh Party of Iran: Statement on the provisional ceasefire between Iran and the U.S - In Defense of Communism - April 10th, 2026 [April 10th, 2026]
- After 50 years of being branded a 'pinko,' man cleared of violating anti-communism law - Korea JoongAng Daily - April 10th, 2026 [April 10th, 2026]
- Vietnamese refugees will be left off Victims of Communism memorial: documents - unpublished.ca - April 10th, 2026 [April 10th, 2026]
- Zohran Mamdani accused of pushing race communism in New York City - Sky News Australia - April 10th, 2026 [April 10th, 2026]
- Exploring the Asian conflicts and campaign against communism - Ferntree Gully Star Mail - April 10th, 2026 [April 10th, 2026]
- Putins United Russia, Communist Party (CPRF) in talks to form National Unity Party - In Defense of Communism - April 5th, 2026 [April 5th, 2026]
- The Castro who could save Cuba from communism - The Telegraph - April 5th, 2026 [April 5th, 2026]
- Lawmakers pass bill mandating anti-communism instruction in schools - The Tennessean - March 28th, 2026 [March 28th, 2026]
- Communist Party of Swaziland: "Taiwan's president Lai Ching-te is unwelcome" - In Defense of Communism - March 28th, 2026 [March 28th, 2026]
- The Forgotten Buffy Episode That Secretly Endorsed Communism - Yahoo - March 28th, 2026 [March 28th, 2026]
- Latvian series gain momentum at Series Mania thanks to Aurora. Newsroom and The Last Divorce of Communism - Cineuropa - March 28th, 2026 [March 28th, 2026]
- The Forgotten Buffy Episode That Secretly Endorsed Communism - Giant Freakin Robot - March 26th, 2026 [March 26th, 2026]
- Ukraine: Zelenskys regime intensifies persecution of the Kononovich Brothers - In Defense of Communism - March 26th, 2026 [March 26th, 2026]
- Nepals election marks a rare democratic defeat of communism - The Hill - March 24th, 2026 [March 24th, 2026]
- What If Cuba Had Nuclear Weapons? The Limits of Peaceful Coexistence - In Defense of Communism - March 24th, 2026 [March 24th, 2026]
- TN bill would create 'Victims of Communism Day' - The Tomahawk - March 24th, 2026 [March 24th, 2026]
- Russian Communist Youth Congress in Moscow highlights need for a new Communist Party - In Defense of Communism - March 24th, 2026 [March 24th, 2026]
- Workers Representatives Council established in Turkey at the initiative of the Communist Party - In Defense of Communism - March 24th, 2026 [March 24th, 2026]
- Lights out: Cubas blackout exposes the hollow promise of communism - Washington Examiner - March 24th, 2026 [March 24th, 2026]
- European Communist Action: The anti-imperialist struggle of the peoples must be strengthened - In Defense of Communism - March 24th, 2026 [March 24th, 2026]
- Book review: Red Dawn Over China: How Communism Conquered a Quarter of Humanity - The Financial Express - March 24th, 2026 [March 24th, 2026]
- Massive KKE rally in Greece sends message of solidarity with Cuba: CUBA IS NOT ALONE! - In Defense of Communism - March 13th, 2026 [March 13th, 2026]
- Communist and Workers' Parties of America denounce Trump's "Shield of the Americas Summit" - In Defense of Communism - March 13th, 2026 [March 13th, 2026]
- Jordanian Communist Party strongly condemns the arrest of two members of its Political Bureau - In Defense of Communism - March 13th, 2026 [March 13th, 2026]
- Israeli communist MP warns: "Trump and Netanyahu risk dragging world into a forever war'" - In Defense of Communism - March 13th, 2026 [March 13th, 2026]
- Anti-imperialist rally in Cyprus calls for closure of British and U.S. bases - In Defense of Communism - March 13th, 2026 [March 13th, 2026]
- Trump to CNN: Cuba will fall soon, after 50 years of communism - cna.al - March 7th, 2026 [March 7th, 2026]
- ECA: Statement on the 107th anniversary of the founding of the Communist International - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- Communist Party of Turkey: "NATO bases must be closed immediately and U.S soldiers must be expelled" - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- Communists from Iran, Israel and the United States condemn Trump-Netanyahu war in the Middle East - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- AKEL: The attack on British bases confirms the dangers that their presence poses to Cyprus - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- KKE calls for popular mobilization to disengage Greece from the USIsraeli war in the Middle East - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- Communist Initiative of Cyprus: The island is becoming a target for retaliation - Shut down the British bases - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- Tudeh Party of Iran on the death of Ali Khamenei and the right of the Iranian people to decide their future - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- Shut Down All U.SBritish Bases in Greece and Cyprus! - In Defense of Communism - March 7th, 2026 [March 7th, 2026]
- The posters that helped topple communism go on display in Westminster - ianVisits - March 7th, 2026 [March 7th, 2026]
- Communist Party of Mexico: On the violence in Jalisco and the "war against drug cartels" - In Defense of Communism - February 27th, 2026 [February 27th, 2026]
- KKE: Response to the slanderous attack by the Russian CWP and the CP of the Russian Federation - In Defense of Communism - February 27th, 2026 [February 27th, 2026]
- Letter from the TKP to the KKE regarding the historical documents on the 200 communists in Kaisariani - In Defense of Communism - February 27th, 2026 [February 27th, 2026]
- KKE condemns the threats by the US and the state of Israel against Iran - In Defense of Communism - February 27th, 2026 [February 27th, 2026]
- Shen Yun Shares With Indianapolis Theatergoers Its Mission to Revive China Before Communism - NTD News - February 27th, 2026 [February 27th, 2026]
- Red Dawn Over China: How Communism Conquered a Quarter of Humanity brutality behind the propaganda - Financial Times - February 14th, 2026 [February 14th, 2026]
- Colonialism and communism hand-in-hand: why West Bengal embraces the hammer and sickle - ndsmcobserver.com - February 11th, 2026 [February 11th, 2026]
- Communist Parties from across the world condemn U.S aggression and threats against Cuba - In Defense of Communism - February 11th, 2026 [February 11th, 2026]
- KKE calls on Mitsotakis government to reject Trumps Peace Council invitation - In Defense of Communism - February 11th, 2026 [February 11th, 2026]
- China Before Communism: Shen Yun Displays a World Almost Lost to Theatergoers in Tampa - NTD News - February 11th, 2026 [February 11th, 2026]
- Opinion | Conservatives see the bogeyman of communism everywhere - The Boston Globe - February 7th, 2026 [February 7th, 2026]
- Opinion: Alaska would thrive under communism - Anchorage Daily News - February 7th, 2026 [February 7th, 2026]
- The Epstein scandal is an offspring of capitalism - In Defense of Communism - February 7th, 2026 [February 7th, 2026]
- KKE in EU Parliament: In the face of new threats from the US, we demand: hands off Cuba! - In Defense of Communism - February 7th, 2026 [February 7th, 2026]
- Dr Brian Benfield on the regulatory state: A protection racket and the rise of new communism - BizNews - February 7th, 2026 [February 7th, 2026]
- Commemorations held in Bulgaria for victims of communism - The Sofia Globe - February 7th, 2026 [February 7th, 2026]
- Quote of the Day by Karl Marx: 'Necessity is blind until it'Inspiring quotes by the father of communism - The Economic Times - January 18th, 2026 [January 18th, 2026]
- Free the Economy podcast: Total boomer luxury communism with Russ Greene - Competitive Enterprise Institute - January 16th, 2026 [January 16th, 2026]
- Communism, Islamism and the 50 countries that most persecute Christians in 2026 - Contando Estrelas - January 16th, 2026 [January 16th, 2026]
- REPLAY: Victims of Communism Memorial Foundation Reflects on 60 Years of Cuban Terror - NTD News - January 16th, 2026 [January 16th, 2026]
- Communism in India is let down by its own incoherence - The Indian Express - January 16th, 2026 [January 16th, 2026]
- Texas requires students learn about 'perils of communism' in sweeping new curriculum overhaul - Fox News - December 31st, 2025 [December 31st, 2025]
- When communism is the only option - The Japan Times - December 27th, 2025 [December 27th, 2025]
- How a Wounded Tusk Is Rehabilitating Communism - The European Conservative - December 7th, 2025 [December 7th, 2025]
- Communism Defeated Fascism Eighty Years Ago and Will Defeat it Again: The Forty-Eighth Newsletter (2025) - Tricontinental: Institute for Social... - November 28th, 2025 [November 28th, 2025]
- Transcript: Ive Got No Problem With Communism: Hasan Piker on TRIGGERnometry Podcast - The Singju Post - November 28th, 2025 [November 28th, 2025]
- This weeks top comments from Tampabay.com include Cold-War communism and ACA benefits. - Tampa Bay Times - November 7th, 2025 [November 7th, 2025]
- Trump in Miami: We have a choice between Communism and Common Sense - The Pavlovic Today - November 7th, 2025 [November 7th, 2025]
- Trump says New Yorkers will seek refuge from communism in Miami - The Business Journals - November 7th, 2025 [November 7th, 2025]
- In memory of the millions lost to Communism - The Institute Of Public Affairs - November 7th, 2025 [November 7th, 2025]
- 19 People From Former Soviet Republics Are Sharing What Others "Just Don't Get" About Communism - BuzzFeed - November 3rd, 2025 [November 3rd, 2025]
- 35 years later/ Why the monstrous crimes of communism in Albania were never punished - cna.al - November 3rd, 2025 [November 3rd, 2025]
- The Pope gives the green light to 11 new blessed individuals killed under Nazism and Communism - Rome Reports - October 30th, 2025 [October 30th, 2025]
- Pope gives true light to the beatification of 11 martyrs of Nazism and Communism - omnesmag.com - October 26th, 2025 [October 26th, 2025]
- Are communism and socialism the same? - MinnPost - October 24th, 2025 [October 24th, 2025]
- Pope approves beatification for priests martyred under Nazism and Communism - Vatican News - October 24th, 2025 [October 24th, 2025]
- Analyst: World Split Between Communism and FreedomUS Only Now Waking Up - NTD News - October 24th, 2025 [October 24th, 2025]
- Pope Leo XIV authorizes beatification of 20th-century martyrs of Nazism and Communism - CatholicVote org - October 24th, 2025 [October 24th, 2025]
- Does communism have a future in India? - Scroll.in - October 24th, 2025 [October 24th, 2025]
- Trump Jr. says Mamdani victory may be needed to stop disease of communism in US - Washington Examiner - October 24th, 2025 [October 24th, 2025]