'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Richard Wolff

Richard Wolff may refer to:

  • Richard Wolff (speedway rider), Czech motorcycle speedway rider
  • Richard D. Wolff (born 1942), North American Marxian economist
  • Richard Keith Wolff (born 1947), British-born photographer, painter and short filmmaker
  • Rick Wolff (writer), former minor league baseball second baseman, coach, author and sports psychologist
  • See also

  • Richard Wolffe, journalist
  • Richard Wolf, record producer/songwriter/remixer and composer
  • Dick Wolf, TV creator
  • Dick Wolf (American football)
  • Richard Wolff (speedway rider)

    Found teamyear, Found career, Found teamhonour, Found indivhonour, Found years, Found indivyear,

    Richard Wolff (born 12 June 1976 in Prague, Czechoslovakia) is a motorcycle speedway rider who first rode in the UK for the Trelawny Tigers in the Premier League. He stayed with the Tigers until their closure in 2003. He then spent the 2005 season with the Reading Racers.

    Honours

  • Individual European Championship:
    • 2003 - 14th place (3 points)
    • 2004 - 15th place (2 points)
  • 2003 - 14th place (3 points)
  • 2004 - 15th place (2 points)
  • European Club Champions' Cup:
    • 2004 - 4th place (12 points)
    • 2006 - 4th place in Semi-Final 2 (2 points)
    • 2007 - 3rd place in Semi-Final 2 (7 points)
  • 2004 - 4th place (12 points)
  • 2006 - 4th place in Semi-Final 2 (2 points)
  • 2007 - 3rd place in Semi-Final 2 (7 points)
  • References

    Podcasts:

    • Economic Update: Understanding Communism Part Two

      [EU S14 E37] Understanding Communism Pt. 2 On this week’s episode of Economic Update, Professor Richard Wolff offers a special episode to continue the previous discussion on communism. We will discuss how socialism's history evolved into separating socialism from communism and creating multiple, different meanings of what is considered communism today. Click to view Part 1. https://www.youtube.com/watch?v=-L9rxsESNGU&t=1036s If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info As always, we thank you for your attention, support, and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free...

      published: 23 Sep 2024
    • Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?

      Richard D. Wolff is Professor of Economics Emeritus, University of Massachusetts, Amherst where he taught economics from 1973 to 2008. He is currently a Visiting Professor in the Graduate Program in International Affairs of the New School University, New York City. Earlier he taught economics at Yale University (1967-1969) and at the City College of the City University of New York (1969-1973). In 1994, he was a Visiting Professor of Economics at the University of Paris (France), I (Sorbonne). Wolff was also a regular lecturer at the Brecht Forum in New York City. (https://www.rdwolff.com/about)

      published: 21 Sep 2024
    • Richard Wolff responds to Jordan B. Peterson

      WANT MORE PROF. WOLFF CONTENT? Check out https://www.youtube.com/@democracyatwrk Prof. Wolff responds to Jordan Peterson's assertions about Marxism. Support Prof. Wolff on Patreon: www.patreon.com/democracyatwork Professor Wolff's Website: https://www.rdwolff.com Follow Prof. Wolff on Twitter: https://twitter.com/profwolff Permission to reprint Professor Wolff's writing and videos is granted on an individual basis. Please contact profwolff@rdwolff.com to request permission. We reserve the right to refuse or rescind permission at any time.

      published: 17 Oct 2018
    • Wolff Responds: "How Scapegoating Immigrants does the Oligarch's Dirty Work" September 18, 2024

      Today's "Wolff Responds", Professor Wolff discusses the current discourse surrounding immigration and migrants coming to the United States Professor Wolff's latest book "Understanding Capitalism" is available now for purchase: https://linktr.ee/understandingcapitalism Follow Professor Wolff ONLINE: Patreon: https://www.patreon.com/democracyatwork/posts Web: https://www.rdwolff.com Twitter: https://twitter.com/profwolff Subscribe to the EU podcast: http://economicupdate.libsyn.com Shop for EU merchandise: https://democracy-at-work-shop.myshopify.com/

      published: 18 Sep 2024
    • Economic Update: The Phenomenon of China

      [EU S14 E17] The Phenomenon of China This week’s Economic Update Professor Richard Wolff dedicates the entire show to the economic developmental achievement of China, together with the historical background that motivated that achievement. We analyze the uniqueness of both the economic philosophy and the politics of China. If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info And as always, we thank for your attention, support and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free of ads and rely on viewer support to continue doing so. You can support our work by joining our Patreon ...

      published: 29 Apr 2024
    • RESOURCE WARS and the Economics of Scarcity with Richard D. Wolff

      Water wars, oil wars, even lithium wars — as the climate crisis intensifies and the global population swells, we are often told that our future will be marked by a frightening scramble for natural resources. “Increased competition over scarce resources is likely to contribute to internal tensions within countries, as well as external tensions between countries,” warned the Pentagon in 2021. For Episode #8 of The International, renowned economist Richard D. Wolff asks: Is it true? Are we really doomed to a Mad Max–style future of scarcity, competition, and violence? Or is there another way? Subscribe to the channel, hit the like button and notification bell to stay up to date with upcoming episodes of “The International.” Jacobin is a leading voice of the American left, offering sociali...

      published: 04 Sep 2024
    • Economic Update: How Deficits and Debts Rip Us Off

      [EU S14 E29] How Deficits and Debts Rip Us Off On this week’s Economic Update, Professor Wolff devotes the entire program to explaining clearly and accessibly what government deficits are, why they occur, and who benefits from them. We show how deficits and debts reward corporations and the rich at the expense of the mass of employees. This show will equip our audience to see through the misuse of deficits and debts in the 2024 election campaigns. If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info As always, we thank you for your attention, support, and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point t...

      published: 29 Jul 2024
    • Richard Wolff: Israel, Ukraine, China, and the End of the American Empire

      Patreon: https://bit.ly/3v8OhY7 Richard Wolff is Professor Emeritus of Economics at the University of Massachusetts Amherst and a visiting professor at The New School, where he works on economics in the Marxist tradition. This is Richard’s fourth appearance on Robinson’s Podcast. In episode #127, he and Robinson discussed some of the most profound criticisms of capitalism; in #154, they focused on the myths surrounding Marxism and Marx himself; and in #190 they covered the Israel-Palestine conflict from a Marxist perspective. In this wide-ranging episode, Richard and Robinson talk about the end of the American empire. More particularly they discuss the wars in Russia, Ukraine, Israel, and Palestine, the rivalry between China and the United States, the global interplay between capitalism a...

      published: 25 Aug 2024
    • Capitalism Has 'Abandoned' The U.S. | Richard Wolff

      Richard D. Wolff, author, economics professor, and Founder of Democracy At Work, discusses the decline of the American Empire, the gradual process of de-dollarization around the world, and the faults of capitalism in our society. *This video was recorded on May 31, 2023 FOLLOW RICHARD D. WOLFF: Richard Wolff website: https://www.rdwolff.coma Twitter (@profwolff): https://twitter.com/profwolff Democracy At Work: https://www.youtube.com/@democracyatwrk FOLLOW DAVID LIN: Twitter (@davidlin_TV): https://twitter.com/davidlin_TV TikTok (@davidlin_TV): https://www.tiktok.com/@davidlin_tv Instagram (@davidlin_TV): https://www.instagram.com/davidlin_tv/ For business inquiries, reach me at david@thedavidlinreport.com *This video is not financial advice. The channel is not responsible for the p...

      published: 01 Jun 2023
    • U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolff

      Richard Wolff, Founder of Democracy At Work, discusses the recent escalations in Ukraine, the ongoing war in the Middle East, and how sanctions against Russia have backfired. Get 20% off on Doug Casey's "Crisis Investing" newsletter by using this link: https://www.CrisisInvesting.com/Davidlin Richard Wolff vs. Arthur Laffer debate: https://youtu.be/HWMlhAAfKcg?si=aZJU276UAv9jckce Capitalism Has 'Abandoned' The U.S.: https://youtu.be/o_pDOYyJamo?si=PRLbMmz_Y9LKaGDl *This video was recorded on May 31, 2024 Listen on Spotify: https://open.spotify.com/show/510WZMFaqeh90Xk4jcE34s Listen on Apple Podcasts: https://podcasters.spotify.com/pod/show/the-david-lin-report FOLLOW RICHARD D. WOLFF: Richard Wolff website: https://www.rdwolff.coma Twitter (@profwolff): https://twitter.com/profwolff D...

      published: 02 Jun 2024
    Economic Update: Understanding Communism Part Two
    30:06

    Economic Update: Understanding Communism Part Two

    • Order:
    • Duration: 30:06
    • Uploaded Date: 23 Sep 2024
    • views: 10664
    [EU S14 E37] Understanding Communism Pt. 2 On this week’s episode of Economic Update, Professor Richard Wolff offers a special episode to continue the previous discussion on communism. We will discuss how socialism's history evolved into separating socialism from communism and creating multiple, different meanings of what is considered communism today. Click to view Part 1. https://www.youtube.com/watch?v=-L9rxsESNGU&t=1036s If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info As always, we thank you for your attention, support, and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free of ads and rely on viewer support to continue doing so. You can support our work by joining our Patreon community: https://www.patreon.com/democracyatwork Or you can go to our website: https://www.democracyatwork.info/donate Every donation counts and helps us provide a larger audience with the information they need to better understand the events around the world they can't get anywhere else. We want to thank our devoted community of supporters who help make this show and the others we produce possible each week. We kindly ask you to also support the work we do by encouraging others to subscribe to our YouTube channel and website: www.democracyatwork.info Professor Wolff's latest book "Understanding Capitalism" is available now for purchase: https://linktr.ee/understandingcapitalism
    https://wn.com/Economic_Update_Understanding_Communism_Part_Two
    Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?
    57:50

    Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?

    • Order:
    • Duration: 57:50
    • Uploaded Date: 21 Sep 2024
    • views: 53491
    Richard D. Wolff is Professor of Economics Emeritus, University of Massachusetts, Amherst where he taught economics from 1973 to 2008. He is currently a Visiting Professor in the Graduate Program in International Affairs of the New School University, New York City. Earlier he taught economics at Yale University (1967-1969) and at the City College of the City University of New York (1969-1973). In 1994, he was a Visiting Professor of Economics at the University of Paris (France), I (Sorbonne). Wolff was also a regular lecturer at the Brecht Forum in New York City. (https://www.rdwolff.com/about)
    https://wn.com/Richard_D._Wolff_Is_A_Peaceful_Multipolar_World_Even_Possible_Without_Massive_Wars
    Richard Wolff responds to Jordan B. Peterson
    4:54

    Richard Wolff responds to Jordan B. Peterson

    • Order:
    • Duration: 4:54
    • Uploaded Date: 17 Oct 2018
    • views: 442704
    WANT MORE PROF. WOLFF CONTENT? Check out https://www.youtube.com/@democracyatwrk Prof. Wolff responds to Jordan Peterson's assertions about Marxism. Support Prof. Wolff on Patreon: www.patreon.com/democracyatwork Professor Wolff's Website: https://www.rdwolff.com Follow Prof. Wolff on Twitter: https://twitter.com/profwolff Permission to reprint Professor Wolff's writing and videos is granted on an individual basis. Please contact profwolff@rdwolff.com to request permission. We reserve the right to refuse or rescind permission at any time.
    https://wn.com/Richard_Wolff_Responds_To_Jordan_B._Peterson
    Wolff Responds: "How Scapegoating Immigrants does the Oligarch's Dirty Work" September 18, 2024
    9:23

    Wolff Responds: "How Scapegoating Immigrants does the Oligarch's Dirty Work" September 18, 2024

    • Order:
    • Duration: 9:23
    • Uploaded Date: 18 Sep 2024
    • views: 5763
    Today's "Wolff Responds", Professor Wolff discusses the current discourse surrounding immigration and migrants coming to the United States Professor Wolff's latest book "Understanding Capitalism" is available now for purchase: https://linktr.ee/understandingcapitalism Follow Professor Wolff ONLINE: Patreon: https://www.patreon.com/democracyatwork/posts Web: https://www.rdwolff.com Twitter: https://twitter.com/profwolff Subscribe to the EU podcast: http://economicupdate.libsyn.com Shop for EU merchandise: https://democracy-at-work-shop.myshopify.com/
    https://wn.com/Wolff_Responds_How_Scapegoating_Immigrants_Does_The_Oligarch's_Dirty_Work_September_18,_2024
    Economic Update: The Phenomenon of China
    30:41

    Economic Update: The Phenomenon of China

    • Order:
    • Duration: 30:41
    • Uploaded Date: 29 Apr 2024
    • views: 363705
    [EU S14 E17] The Phenomenon of China This week’s Economic Update Professor Richard Wolff dedicates the entire show to the economic developmental achievement of China, together with the historical background that motivated that achievement. We analyze the uniqueness of both the economic philosophy and the politics of China. If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info And as always, we thank for your attention, support and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free of ads and rely on viewer support to continue doing so. You can support our work by joining our Patreon community: https://www.patreon.com/democracyatwork Or you can go to our website: https://www.democracyatwork.info/donate Every donation counts and helps us provide a larger audience with the information they need to better understand the events around the world they can't get anywhere else. We want to thank our devoted community of supporters who help make this show and others we produce possible each week. We kindly ask you to also support the work we do by encouraging others to subscribe to our YouTube channel and website: www.democracyatwork.info
    https://wn.com/Economic_Update_The_Phenomenon_Of_China
    RESOURCE WARS and the Economics of Scarcity with Richard D. Wolff
    11:20

    RESOURCE WARS and the Economics of Scarcity with Richard D. Wolff

    • Order:
    • Duration: 11:20
    • Uploaded Date: 04 Sep 2024
    • views: 34303
    Water wars, oil wars, even lithium wars — as the climate crisis intensifies and the global population swells, we are often told that our future will be marked by a frightening scramble for natural resources. “Increased competition over scarce resources is likely to contribute to internal tensions within countries, as well as external tensions between countries,” warned the Pentagon in 2021. For Episode #8 of The International, renowned economist Richard D. Wolff asks: Is it true? Are we really doomed to a Mad Max–style future of scarcity, competition, and violence? Or is there another way? Subscribe to the channel, hit the like button and notification bell to stay up to date with upcoming episodes of “The International.” Jacobin is a leading voice of the American left, offering socialist perspectives on politics, economics, and culture. Find out more at https://jacobin.com/ and https://twitter.com/jacobin The Progressive International unites, organizes, and mobilizes progressive forces around the world. Find out more at https://progressive.international/ and https://twitter.com/ProgIntl Subscribe to Jacobin in print for just $10: https://jacobin.com/subscribe/?code=JACOBINYT
    https://wn.com/Resource_Wars_And_The_Economics_Of_Scarcity_With_Richard_D._Wolff
    Economic Update: How Deficits and Debts Rip Us Off
    29:45

    Economic Update: How Deficits and Debts Rip Us Off

    • Order:
    • Duration: 29:45
    • Uploaded Date: 29 Jul 2024
    • views: 83127
    [EU S14 E29] How Deficits and Debts Rip Us Off On this week’s Economic Update, Professor Wolff devotes the entire program to explaining clearly and accessibly what government deficits are, why they occur, and who benefits from them. We show how deficits and debts reward corporations and the rich at the expense of the mass of employees. This show will equip our audience to see through the misuse of deficits and debts in the 2024 election campaigns. If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info As always, we thank you for your attention, support, and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free of ads and rely on viewer support to continue doing so. You can support our work by joining our Patreon community: https://www.patreon.com/democracyatwork Or you can go to our website: https://www.democracyatwork.info/donate Every donation counts and helps us provide a larger audience with the information they need to better understand the events around the world they can't get anywhere else. We want to thank our devoted community of supporters who help make this show and the others we produce possible each week. We kindly ask you to also support the work we do by encouraging others to subscribe to our YouTube channel and website: www.democracyatwork.info Professor Wolff's latest book "Understanding Capitalism" is available now for purchase: https://linktr.ee/understandingcapitalism
    https://wn.com/Economic_Update_How_Deficits_And_Debts_Rip_US_Off
    Richard Wolff: Israel, Ukraine, China, and the End of the American Empire
    3:03:45

    Richard Wolff: Israel, Ukraine, China, and the End of the American Empire

    • Order:
    • Duration: 3:03:45
    • Uploaded Date: 25 Aug 2024
    • views: 831092
    Patreon: https://bit.ly/3v8OhY7 Richard Wolff is Professor Emeritus of Economics at the University of Massachusetts Amherst and a visiting professor at The New School, where he works on economics in the Marxist tradition. This is Richard’s fourth appearance on Robinson’s Podcast. In episode #127, he and Robinson discussed some of the most profound criticisms of capitalism; in #154, they focused on the myths surrounding Marxism and Marx himself; and in #190 they covered the Israel-Palestine conflict from a Marxist perspective. In this wide-ranging episode, Richard and Robinson talk about the end of the American empire. More particularly they discuss the wars in Russia, Ukraine, Israel, and Palestine, the rivalry between China and the United States, the global interplay between capitalism and socialism, the distinction between socialism and communism, the conflict between the BRICS and G7 nations, and more. Richard’s latest book is Understanding Capitalism (Democracy at Work, 2024). Understanding Capitalism (Book): ⁠https://www.democracyatwork.info/understanding_capitalism⁠ Class Theory and History (Book): ⁠https://a.co/d/ht4trZN⁠ Understanding the 2024 Elections (Article): ⁠https://asiatimes.com/2024/08/capitalism-mass-anger-and-2024-elections/⁠ Richard’s Website: ⁠https://www.rdwolff.com⁠ Economic Update: ⁠https://www.democracyatwork.info/economicupdate⁠ OUTLINE 00:00 Introduction 03:10 On the Trauma of His Family Background 10:50 Academia’s War on Marxism  22:45 Economics as the Secret Undercurrent of History 28:01 Will Ukraine Defeat Russia? 31:52 Is China the Empire of the New World? 39:04 The Best American Strategy Against China 45:24 How Trump Won and Lost America 56:22 Is Israel a Colonialist State? 01:03:23 On the Expulsion of the Palestinians from Israel 01:10:49 Israel as America’s Economic Baby 01:18:08 Global Capitalism as the Enemy of the Islamic World 01:23:00 Why You Should Distrust Wartime Propaganda 01:33:03 Zelensky and the Ukrainian Chess Match 01:42:53 The Economic Conspiracy Behind the American Pick-Up Truck 01:49:31 Israel, Ukraine, and the New Cold War 01:54:20 The Many Taboos of Socialism and Communism 01:58:54 The War Between Socialism and Capitalism 02:07:51 Is Socialism More Efficient than Capitalism? 02:16:58 World War I and the Rise of Socialism 02:22:58 The Failed American Attempt to Destroy Russian Communism 02:27:26 Why Did Russia Choose Communism over Socialism? 02:38:06 Communism, Socialism, and the War for the Workplace 02:43:00 Is China Secretly Capitalist? 02:53:18 America’s Choice Between Equality or Subservience to China 02:58:45 Europe’s Hidden Economic Apocalypse Robinson’s Website: ⁠http://robinsonerhardt.com⁠ Robinson Erhardt researches symbolic logic and the foundations of mathematics at Stanford University. Join him in conversations with philosophers, scientists, historians, economists, and everyone in-between.
    https://wn.com/Richard_Wolff_Israel,_Ukraine,_China,_And_The_End_Of_The_American_Empire
    Capitalism Has 'Abandoned' The U.S. | Richard Wolff
    57:42

    Capitalism Has 'Abandoned' The U.S. | Richard Wolff

    • Order:
    • Duration: 57:42
    • Uploaded Date: 01 Jun 2023
    • views: 217852
    Richard D. Wolff, author, economics professor, and Founder of Democracy At Work, discusses the decline of the American Empire, the gradual process of de-dollarization around the world, and the faults of capitalism in our society. *This video was recorded on May 31, 2023 FOLLOW RICHARD D. WOLFF: Richard Wolff website: https://www.rdwolff.coma Twitter (@profwolff): https://twitter.com/profwolff Democracy At Work: https://www.youtube.com/@democracyatwrk FOLLOW DAVID LIN: Twitter (@davidlin_TV): https://twitter.com/davidlin_TV TikTok (@davidlin_TV): https://www.tiktok.com/@davidlin_tv Instagram (@davidlin_TV): https://www.instagram.com/davidlin_tv/ For business inquiries, reach me at david@thedavidlinreport.com *This video is not financial advice. The channel is not responsible for the performance of sponsors and affiliates. 0:00 - Intro 2:20 - Is U.S. becoming more Marxist? 8:22 - Marxism and dictatorship 18:20 - De-dollarization 35:10 - Why is American Empire declining? 40:30 - Migration 22:10 - AI and UBI 48:45 - Entrepreneurship and capitalism 53:30 - "Democracy At Work" #economics #capitalism #communism
    https://wn.com/Capitalism_Has_'Abandoned'_The_U.S._|_Richard_Wolff
    U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolff
    59:01

    U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolff

    • Order:
    • Duration: 59:01
    • Uploaded Date: 02 Jun 2024
    • views: 574993
    Richard Wolff, Founder of Democracy At Work, discusses the recent escalations in Ukraine, the ongoing war in the Middle East, and how sanctions against Russia have backfired. Get 20% off on Doug Casey's "Crisis Investing" newsletter by using this link: https://www.CrisisInvesting.com/Davidlin Richard Wolff vs. Arthur Laffer debate: https://youtu.be/HWMlhAAfKcg?si=aZJU276UAv9jckce Capitalism Has 'Abandoned' The U.S.: https://youtu.be/o_pDOYyJamo?si=PRLbMmz_Y9LKaGDl *This video was recorded on May 31, 2024 Listen on Spotify: https://open.spotify.com/show/510WZMFaqeh90Xk4jcE34s Listen on Apple Podcasts: https://podcasters.spotify.com/pod/show/the-david-lin-report FOLLOW RICHARD D. WOLFF: Richard Wolff website: https://www.rdwolff.coma Twitter (@profwolff): https://twitter.com/profwolff Democracy At Work: https://www.youtube.com/@democracyatwrk FOLLOW DAVID LIN: Twitter (@davidlin_TV): https://twitter.com/davidlin_TV TikTok (@davidlin_TV): https://www.tiktok.com/@davidlin_tv Instagram (@davidlin_TV): https://www.instagram.com/davidlin_tv/ For business inquiries, reach me at david@thedavidlinreport.com *This video is not financial advice. The channel is not responsible for the performance of sponsors and affiliates. 0:00 - Intro 2:03 - Escalations in Ukraine War 18:43 - What is Putin's endgame? 22:22 - How to prevent WW3? 25:00 - Sanctions backfired 32:35 - U.S. power fading 35:31 - Israel-Palestine 41:23 - Price controls vs. inflation 52:55 - Workplace democracy #economy #geopolitics #economics
    https://wn.com/U.S._Escalates_‘Nuclear’_Risk_World_Stands_On_'Edge'_Of_Destruction_|_Richard_Wolff
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Economic Update: Understanding Communism Part Two
      30:06
      Economic Update: Understanding Communism Part Tworemove from playlist
    • Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?
      57:50
      Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?remove from playlist
    • Richard Wolff responds to Jordan B. Peterson
      4:54
      Richard Wolff responds to Jordan B. Petersonremove from playlist
    • Wolff Responds:
      9:23
      Wolff Responds: "How Scapegoating Immigrants does the Oligarch's Dirty Work" September 18, 2024remove from playlist
    • Economic Update: The Phenomenon of China
      30:41
      Economic Update: The Phenomenon of Chinaremove from playlist
    • RESOURCE WARS and the Economics of Scarcity with Richard D. Wolff
      11:20
      RESOURCE WARS and the Economics of Scarcity with Richard D. Wolffremove from playlist
    • Economic Update: How Deficits and Debts Rip Us Off
      29:45
      Economic Update: How Deficits and Debts Rip Us Offremove from playlist
    • Richard Wolff: Israel, Ukraine, China, and the End of the American Empire
      3:03:45
      Richard Wolff: Israel, Ukraine, China, and the End of the American Empireremove from playlist
    • Capitalism Has 'Abandoned' The U.S. | Richard Wolff
      57:42
      Capitalism Has 'Abandoned' The U.S. | Richard Wolffremove from playlist
    • U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolff
      59:01
      U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolffremove from playlist
    PLAYLIST TIME: 0:00 / 7:54:27

    Economic Update: Understanding Communism Part Two

    [EU S14 E37] Understanding Communism Pt. 2 On this week’s episode of Economic Update, Professor Richard Wolff offers a special episode to continue the previous discussion on communism. We will discuss how socialism's history evolved into separating socialism from communism and creating multiple, different meanings of what is considered communism today. Click to view Part 1. https://www.youtube.com/watch?v=-L9rxsESNGU&t=1036s If you haven't already, please subscribe to our channel, follow us on social media and of course be sure to sign up on our website: www.democracyatwork.info As always, we thank you for your attention, support, and solidarity. The d@w Team Economic Update with Richard D. Wolff is a DemocracyatWork.info Inc. production. We make it a point to provide the show free of ads and rely on viewer support to continue doing so. You can support our work by joining our Patreon community: https://www.patreon.com/democracyatwork Or you can go to our website: https://www.democracyatwork.info/donate Every donation counts and helps us provide a larger audience with the information they need to better understand the events around the world they can't get anywhere else. We want to thank our devoted community of supporters who help make this show and the others we produce possible each week. We kindly ask you to also support the work we do by encouraging others to subscribe to our YouTube channel and website: www.democracyatwork.info Professor Wolff's latest book "Understanding Capitalism" is available now for purchase: https://linktr.ee/understandingcapitalism
    30:06
    Economic Update: Understanding Communism Part Two
    [EU S14 E37] Understanding Communism Pt. 2 On this week’s episode of Economic Update, Pro...
    published: 23 Sep 2024
    Play in Full Screen
    57:50
    Richard D. Wolff: Is a Peaceful Multipolar World Even Possible Without Massive Wars?
    Richard D. Wolff is Professor of Economics Emeritus, University of Massachusetts, Amherst ...
    published: 21 Sep 2024
    Play in Full Screen
    4:54
    Richard Wolff responds to Jordan B. Peterson
    WANT MORE PROF. WOLFF CONTENT? Check out https://www.youtube.com/@democracyatwrk Prof. Wo...
    published: 17 Oct 2018
    Play in Full Screen
    9:23
    Wolff Responds: "How Scapegoating Immigrants does the Oligarch's Dirty Work" September 18, 2024
    Today's "Wolff Responds", Professor Wolff discusses the current discourse surrounding immi...
    published: 18 Sep 2024
    Play in Full Screen
    30:41
    Economic Update: The Phenomenon of China
    [EU S14 E17] The Phenomenon of China This week’s Economic Update Professor Richard Wolff ...
    published: 29 Apr 2024
    Play in Full Screen
    11:20
    RESOURCE WARS and the Economics of Scarcity with Richard D. Wolff
    Water wars, oil wars, even lithium wars — as the climate crisis intensifies and the global...
    published: 04 Sep 2024
    Play in Full Screen
    29:45
    Economic Update: How Deficits and Debts Rip Us Off
    [EU S14 E29] How Deficits and Debts Rip Us Off On this week’s Economic Update, Professor ...
    published: 29 Jul 2024
    Play in Full Screen
    3:03:45
    Richard Wolff: Israel, Ukraine, China, and the End of the American Empire
    Patreon: https://bit.ly/3v8OhY7 Richard Wolff is Professor Emeritus of Economics at the U...
    published: 25 Aug 2024
    Play in Full Screen
    57:42
    Capitalism Has 'Abandoned' The U.S. | Richard Wolff
    Richard D. Wolff, author, economics professor, and Founder of Democracy At Work, discusses...
    published: 01 Jun 2023
    Play in Full Screen
    59:01
    U.S. Escalates ‘Nuclear’ Risk: World Stands On 'Edge' Of Destruction | Richard Wolff
    Richard Wolff, Founder of Democracy At Work, discusses the recent escalations in Ukraine, ...
    published: 02 Jun 2024
    Play in Full Screen

    Richard Wolff

    Richard Wolff may refer to:

  • Richard Wolff (speedway rider), Czech motorcycle speedway rider
  • Richard D. Wolff (born 1942), North American Marxian economist
  • Richard Keith Wolff (born 1947), British-born photographer, painter and short filmmaker
  • Rick Wolff (writer), former minor league baseball second baseman, coach, author and sports psychologist
  • See also

  • Richard Wolffe, journalist
  • Richard Wolf, record producer/songwriter/remixer and composer
  • Dick Wolf, TV creator
  • Dick Wolf (American football)
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×