'+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; })); }); -->

Neocolonialism

Neocolonialism, neo-colonialism or neo-imperialism is the geopolitical practice of using capitalism, business globalization, and cultural imperialism to influence a country, in lieu of either direct military control (imperialism) or indirect political control (hegemony).

In post-colonial studies, the term neo-colonialism describes the influence of countries from the developed world in the respective internal affairs of the countries of the developing world; that, despite the decolonisation that occurred in the aftermath of the Second World War (1939–45), the (former) colonial powers continue to apply existing and past international economic arrangements with their former colony countries, and so maintain colonial control. A neo-colonialism critique can include de facto colonialism (imperialist or hegemonic), and an economic critique of the disproportionate involvement of modern capitalist business in the economy of a developing country, whereby multinational corporations continue to exploit the natural resources of the former colony; that such economic control is inherently neo-colonial, and thus is akin to the imperial and hegemonic varieties of colonialism practiced by the United States and the empires of Great Britain, France, and other European countries, from the 16th to the 20th centuries. The ideology and praxis of neo-colonialism are discussed in the works of Jean-Paul Sartre (Colonialism and Neo-colonialism, 1964) and Noam Chomsky (The Washington Connection and Third World Fascism, 1979).

Podcasts:

  • What is Neocolonialism?

    This video lecture discusses very briefly the meaning of Neocolonialism. Transcript of this video lecture is available at: https://philonotes.com/2023/03/what-is-neocolonialism *** For more Whiteboard editions from PHILO-notes, SUBSCRIBE NOW! https://www.youtube.com/c/PHILOnotes For more discussions about Philosophy, VISIT OUR WEBSITE: http://philonotes.com FOLLOW US! Facebook: https://www.facebook.com/philonotes.j... Twitter: https://twitter.com/philonotes_jeff Feel free to share your thoughts in the “comments” section below, or hit the "Like" button if you find this material helpful! Thanks! PHILO-notes

    published: 23 Jun 2022
  • NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISIS

    The intricate web of neocolonialism is shaping regions and countries in the Middle East, Greece, Africa, and Latin and South America with the use of modern imperialism and influence on global socio-economic structures. The mechanisms through which neocolonial forces operate, from the exploitation of natural resources to the imposition of economic dependencies, neocolonialism manifests in various forms, often disguised beneath the rhetoric of progress and development. By examining case studies such as Iran and the global south, we can uncover the hidden agendas and systemic inequalities that define the contemporary global order. Subscribe to my channel for more insightful content on geopolitics, technology, and societal issues. Together, let's decode the algorithms of power and strive for ...

    published: 18 Feb 2024
  • Neocolonialism Explained

    What is neo-colonialism? We interviewed the Vice Chairperson of the Communist Party of Kenya, Booker Ngesa Omole, who argues that "neo-colonialism basically means that the colonizers never left." The East African country has been hit by several protest waves in recent months against the government of William Ruto, which according to the CPK is controlled by Western interests. Watch Booker breakdown the various aspects of neo-colonialism, whose roots are anchored in military, economic, and political relations. #KenyaProtests #NeoColonialism #panafricanism Produced by: Hüseyin Dogru Follow us: https://tiktok.com/@redstreamnet https://instagram.com/redstreamnet/ https://twitter.com/redstreamnet https://facebook.com/redstreamnet/

    published: 06 Sep 2023
  • Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalism

    Support on Patreon: https://www.patreon.com/MarxismToday Twitter: https://twitter.com/PaulConnollyMT Ko-Fi (One-time donation): https://ko-fi.com/marxistpaul --- Livestream Channel: https://www.youtube.com/channel/UChqbQHIrqk8KqBo36s3c44A --- Works Cited (in order of appearance) Connolly, 1897. Socialism and Nationalism. https://www.marxists.org/archive/connolly/1897/01/socnat.htm Lenin, 1916. Imperialism. https://www.marxists.org/archive/lenin/works/1916/imp-hsc/ch06.htm The Red Flag, 2021. NOTES ON BUREAUCRATIC-COMPRADOR CAPITALISM, ARTICLE ONE: “Pasaron”. https://the-red-flag.org/en/notes-on-bureaucratic-comprador-capitalism-article-one-pasaron/ PCP General Political Line, 1988. https://gplpcp.wordpress.com/line-of-the-democratic-revolution-of-the-communist-party-of-peru/ Ajith, 20...

    published: 11 Feb 2022
  • RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.

    NEOCOLONIALISM, THE LAST STAGE OF IMPERIALISM Neocolonialism is the last stage of imperialism. Colonization ended but additionally opened a new door for new age colonialism in Africa often referred to as neocolonialism. When most African countries attained independence, they adopted the colonizers way of governance and even the borders. These ways have been used to promote neocolonialism even into the 21st century. The neocolonialists are also working with collaborators who have enhanced neocolonialism through donor funding which essentially promotes their interests in the different projects. In this episode of LUMUMBA Explains, he tackles the emergence of new partnerships in Africa. Russia and China continue to express interests and build partnerships across Africa and key to note is bo...

    published: 15 Dec 2023
  • How the US dollar system reinforces neocolonialism

    Political economist Radhika Desai explains the imperialist nature of the US dollar-dominated financial system, which systematically undervalues currencies, labor, and resources in the Global South. The US often wages war on countries that try to create alternatives, such as Libya and Iraq. Full video here: https://youtube.com/watch?v=0cQak6RWT6o ‘World becoming more multipolar’, Western hegemony declining, admits European Central Bank: https://geopoliticaleconomy.com/2023/04/19/world-multipolar-hegemony-ecb-lagarde || Geopolitical Economy Report || Please consider supporting us at https://GeopoliticalEconomy.com/Support Patreon: https://Patreon.com/GeopoliticalEconomy Podcast: https://Soundcloud.com/GeopoliticalEconomy Newsletter: https://GeopoliticalEconomy.Substack.com

    published: 23 Apr 2023
  • What is neocolonialism?

    Daniel Rodriguez, Brown University. More videos with Rodriguez: https://www.choices.edu/scholar/daniel-rodriguez This video is part of the following Choices Program curriculum units: History, Revolution, and Reform: New Directions for Cuba - https://www.choices.edu/cuba Imperial America: U.S. Global Expansion, 1890-1915 - https://www.choices.edu/imperialism Perspectives from history. Choices for today. https://www.choices.edu History and Current Issues curriculum for secondary school and introductory level college courses.

    published: 28 Sep 2021
  • How France (Still) Controls Africa

    France's African empire ended in the 1960s...but not really. Ismael Loutfi explains. Sources here: https://bit.ly/3NVakq9 These videos are entirely funded by small donations. In order to expand what we do, we need your help. Please join us on Patreon if you can: https://www.patreon.com/gravelinstitute Or, if you prefer, give a one-time donation: https://secure.actblue.com/donate/br-gi-5kmatch/?refcode=yt&amount=19 ERRATA: At 5:16 we show a map of several European countries, not just those that use the Euro. We regret the error!

    published: 08 Apr 2022
  • Captain Ibrahim Traoré's Defiant Response to France's Call for Recolonization of Africa.

    In a stunning display of defiance, Captain Ibrahim Traoré, the esteemed military leader of Burkina Faso, has delivered a resounding rebuke to French General Lecointre's audacious proposal for the recolonization of Africa. Traoré's response, characterized by eloquence and resolve, has reverberated across the continent, sparking a fervent debate on colonialism, sovereignty, and the future of Africa. In his impassioned address, Traoré unequivocally rejects General Lecointre's assertion that Africa requires recolonization to address its myriad challenges. With unwavering conviction, Traoré asserts that Africa's struggles stem not from a lack of colonial oversight, but from centuries of exploitation, oppression, and systemic inequality imposed by colonial powers. Traoré emphasizes Africa's ri...

    published: 25 Apr 2024
  • What is Neo-Colonialism?

    Colonialism ended in the 20th century and with it many free nations were born, but why aren't more of them prosperous? What could be holding them back? Well, many say its neocolonialism. But what is neocolonialism and why is it important? This video has all that information and more! If you like what you see, please subscribe, like and send the video to someone who needs to know more about Neocolonialism! You can follow me on other platforms as well! Twitter: https://twitter.com/BoluAkinola2 Instagram: https://www.instagram.com/subsaharanvisionary

    published: 31 Dec 2020
What is Neocolonialism?
3:56

What is Neocolonialism?

  • Order:
  • Duration: 3:56
  • Uploaded Date: 23 Jun 2022
  • views: 61350
This video lecture discusses very briefly the meaning of Neocolonialism. Transcript of this video lecture is available at: https://philonotes.com/2023/03/what-is-neocolonialism *** For more Whiteboard editions from PHILO-notes, SUBSCRIBE NOW! https://www.youtube.com/c/PHILOnotes For more discussions about Philosophy, VISIT OUR WEBSITE: http://philonotes.com FOLLOW US! Facebook: https://www.facebook.com/philonotes.j... Twitter: https://twitter.com/philonotes_jeff Feel free to share your thoughts in the “comments” section below, or hit the "Like" button if you find this material helpful! Thanks! PHILO-notes
https://wn.com/What_Is_Neocolonialism
NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISIS
11:05

NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISIS

  • Order:
  • Duration: 11:05
  • Uploaded Date: 18 Feb 2024
  • views: 2277
The intricate web of neocolonialism is shaping regions and countries in the Middle East, Greece, Africa, and Latin and South America with the use of modern imperialism and influence on global socio-economic structures. The mechanisms through which neocolonial forces operate, from the exploitation of natural resources to the imposition of economic dependencies, neocolonialism manifests in various forms, often disguised beneath the rhetoric of progress and development. By examining case studies such as Iran and the global south, we can uncover the hidden agendas and systemic inequalities that define the contemporary global order. Subscribe to my channel for more insightful content on geopolitics, technology, and societal issues. Together, let's decode the algorithms of power and strive for a more equitable world. ----------------------------------------------------------------------------------------------------------- ➤ Instagram: instagram.com/ozymandiasv2/ ➤ Discord Server: https://discord.gg/bhEbNbRBWu Remember to join the Discord Server for channel updates, announcements, and memes/bonding. ----------------------------------------------- ---------------------------------------------------------- Subscribe to my channel if you like my content, and like the video! #neocolonialism #economics #geopolitics #breadtube #videoessay #leftist #communism #politics #political #history #worldhistory #economy #europe #unitedstates #educational #socialism #debate #historical #immigration #republican #democrat #america #crashcourse ---------------------------------------------- ---------------------------------------------------------- Sources: https://www.npr.org/sections/money/2021/10/05/1042518732/-the-greatest-heist-in-history-how-haiti-was-forced-to-pay-reparations-for-freed https://history.state.gov/milestones/1914-1920/haiti https://history.state.gov/milestones/1914-1920/haiti#:~:text=Following%20the%20assassination%20of%20the,This%20occupation%20continued%20until%201934. https://www.globalzero.org/updates/the-legacy-of-french-nuclear-testing-in-algeria-shows-how-nuclear-weapons-perpetuate-colonialism/ https://www.bbc.com/news/world-africa-56799670 https://history.state.gov/milestones/1784-1800/haitian-rev#:~:text=Jefferson%20refused%20to%20recognize%20Haitian,as%20a%20sovereign%2C%20independent%20nation. https://2001-2009.state.gov/r/pa/ho/time/wwi/88275.htm https://archive.nytimes.com/www.nytimes.com/library/world/mideast/041600iran-cia-chapter1.html https://history.state.gov/historicaldocuments/frus1951-54Iran/d319 https://www.imf.org/external/pubs/ft/seminar/1999/reforms/white.htm Imf.org https://www.esm.europa.eu/publications/safeguarding-euro/enter-troika-european-commission-imf-ecb https://www.reuters.com/investigates/special-report/imf-greece/ https://www.brookings.edu/articles/the-imfs-dilemma-in-argentina-time-for-a-new-approach-to-lending/#:~:text=Finally%2C%20in%20December%202001%2C%20when,allowed%20the%20peso%20to%20fall. https://www.imf.org/external/np/ieo/2004/arg/eng/pdf/exesum.pdf https://apnews.com/article/5111167bcaf84892b01eea93eea4bc01
https://wn.com/Neocolonialism_The_Force_Behind_Poverty_And_The_Mass_Immigration_Crisis
Neocolonialism Explained
3:08

Neocolonialism Explained

  • Order:
  • Duration: 3:08
  • Uploaded Date: 06 Sep 2023
  • views: 4366
What is neo-colonialism? We interviewed the Vice Chairperson of the Communist Party of Kenya, Booker Ngesa Omole, who argues that "neo-colonialism basically means that the colonizers never left." The East African country has been hit by several protest waves in recent months against the government of William Ruto, which according to the CPK is controlled by Western interests. Watch Booker breakdown the various aspects of neo-colonialism, whose roots are anchored in military, economic, and political relations. #KenyaProtests #NeoColonialism #panafricanism Produced by: Hüseyin Dogru Follow us: https://tiktok.com/@redstreamnet https://instagram.com/redstreamnet/ https://twitter.com/redstreamnet https://facebook.com/redstreamnet/
https://wn.com/Neocolonialism_Explained
Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalism
22:35

Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalism

  • Order:
  • Duration: 22:35
  • Uploaded Date: 11 Feb 2022
  • views: 40526
Support on Patreon: https://www.patreon.com/MarxismToday Twitter: https://twitter.com/PaulConnollyMT Ko-Fi (One-time donation): https://ko-fi.com/marxistpaul --- Livestream Channel: https://www.youtube.com/channel/UChqbQHIrqk8KqBo36s3c44A --- Works Cited (in order of appearance) Connolly, 1897. Socialism and Nationalism. https://www.marxists.org/archive/connolly/1897/01/socnat.htm Lenin, 1916. Imperialism. https://www.marxists.org/archive/lenin/works/1916/imp-hsc/ch06.htm The Red Flag, 2021. NOTES ON BUREAUCRATIC-COMPRADOR CAPITALISM, ARTICLE ONE: “Pasaron”. https://the-red-flag.org/en/notes-on-bureaucratic-comprador-capitalism-article-one-pasaron/ PCP General Political Line, 1988. https://gplpcp.wordpress.com/line-of-the-democratic-revolution-of-the-communist-party-of-peru/ Ajith, 2020. The Working of the Neo-Colonial Mind in “Of Concepts Methods”. p.116. https://foreignlanguages.press/wp-content/uploads/2021/11/N09-Of-Concepts-_-Methods-2nd-Printing.pdf --- Lenin, 1916. Imperialism. https://www.marxists.org/archive/lenin/works/1916/imp-hsc/ch06.htm Kwame Nkrumah (1965). Neo-Colonialiam: The Last Stage of Imperialism: https://www.prisoncensorship.info/archive/books/Economics/Neo-Colonialism_KwameNkrumah.pdf PCP General Political Line, 1988. https://gplpcp.wordpress.com/line-of-the-democratic-revolution-of-the-communist-party-of-peru/ The Red Flag, 2021. NOTES ON BUREAUCRATIC-COMPRADOR CAPITALISM, ARTICLE ONE: “Pasaron”. https://the-red-flag.org/en/notes-on-bureaucratic-comprador-capitalism-article-one-pasaron/ The Red Flag, 2021. APPENDIX TO NOTES ON BUREAUCRATIC-COMPRADOR CAPITALISM, ARTICLE ONE. https://the-red-flag.org/en/appendix-to-notes-on-bureaucratic-comprador-capitalism-article-one-the-case-of-italy-or-how-to-distinguish-an-imperialist-nation-from-an-oppressed-one/ Ajith, 2020. The Working of the Neo-Colonial Mind in “Of Concepts Methods”. p.116. https://foreignlanguages.press/wp-content/uploads/2021/11/N09-Of-Concepts-_-Methods-2nd-Printing.pdf Costello, 2018. “Who Owns the Ground Rent in Ireland” in Revolutionary Works, p.34-41: https://foreignlanguages.press/wp-content/uploads/2021/11/S13-Costello-6th-Printing.pdf --- 00:00 Introduction 02:07 What Is a Semi-Colony? 04:39 Semi-Colonialism in Ireland's 26-County Free State 08:16 Neo-Colonialism or Semi-Colonialism? 11:10 The Semi-Colonial Base 15:24 Semi-Colonial Superstructure 18:28 Conclusion 19:47 Further Reading 21:36 Credits
https://wn.com/Colonialism_Never_Ended_|_Neo_Colonialism,_Semi_Colonies_Bureaucrat_Capitalism
RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.
30:25

RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.

  • Order:
  • Duration: 30:25
  • Uploaded Date: 15 Dec 2023
  • views: 31562
NEOCOLONIALISM, THE LAST STAGE OF IMPERIALISM Neocolonialism is the last stage of imperialism. Colonization ended but additionally opened a new door for new age colonialism in Africa often referred to as neocolonialism. When most African countries attained independence, they adopted the colonizers way of governance and even the borders. These ways have been used to promote neocolonialism even into the 21st century. The neocolonialists are also working with collaborators who have enhanced neocolonialism through donor funding which essentially promotes their interests in the different projects. In this episode of LUMUMBA Explains, he tackles the emergence of new partnerships in Africa. Russia and China continue to express interests and build partnerships across Africa and key to note is both countries have their military bases in Africa, Lumumba explains why this is happening. #lumumbaexplains #plolumumba #africa #kenya #theealfahouse #Neocolonialism #colonization #Russia #China EP 6 – Neocolonialism, the last stage of Imperialism 00:00- Neocolonialism and how it finds its roots. 1:44 – Chinua Achebe, things fall apart. 2:46 – Colonial boundaries inheritance and the effects in Africa 3:56 – The colonizer’s governance system continued post-independence. 5:01 – French neocolonialism in Africa 5:45– Neocolonial projects in Africa 6:00 – USA vs the Soviet Union neocolonialism in Africa 8:00 – African systems - Ujamaa, Humanism, African socialism & common man’s charter. 10:20 – Neocolonialist and the collaborators 11:11 – French, the vicious neocolonialists 13:30 – The question of NGOs and donor funding control in Africa 14:40 – Africa can’t breathe! 15:48 – Coups are necessary sometimes. 17:06 – Russia - China imperial interests in Africa 19:15 – Russia-China respect Africa but must be checked. 20:10 – Why China- Russia have military bases in Africa. 21:30 – The African revolution in the 21st century 25:48 – Governance crisis in Africa, what’s the solution?
https://wn.com/Russia_Never_Tried_To_Colonise_Africa…_Is_It_Plo_Lumumba._Ep_7_Neocolonialism.
How the US dollar system reinforces neocolonialism
6:37

How the US dollar system reinforces neocolonialism

  • Order:
  • Duration: 6:37
  • Uploaded Date: 23 Apr 2023
  • views: 13080
Political economist Radhika Desai explains the imperialist nature of the US dollar-dominated financial system, which systematically undervalues currencies, labor, and resources in the Global South. The US often wages war on countries that try to create alternatives, such as Libya and Iraq. Full video here: https://youtube.com/watch?v=0cQak6RWT6o ‘World becoming more multipolar’, Western hegemony declining, admits European Central Bank: https://geopoliticaleconomy.com/2023/04/19/world-multipolar-hegemony-ecb-lagarde || Geopolitical Economy Report || Please consider supporting us at https://GeopoliticalEconomy.com/Support Patreon: https://Patreon.com/GeopoliticalEconomy Podcast: https://Soundcloud.com/GeopoliticalEconomy Newsletter: https://GeopoliticalEconomy.Substack.com
https://wn.com/How_The_US_Dollar_System_Reinforces_Neocolonialism
What is neocolonialism?
1:38

What is neocolonialism?

  • Order:
  • Duration: 1:38
  • Uploaded Date: 28 Sep 2021
  • views: 8737
Daniel Rodriguez, Brown University. More videos with Rodriguez: https://www.choices.edu/scholar/daniel-rodriguez This video is part of the following Choices Program curriculum units: History, Revolution, and Reform: New Directions for Cuba - https://www.choices.edu/cuba Imperial America: U.S. Global Expansion, 1890-1915 - https://www.choices.edu/imperialism Perspectives from history. Choices for today. https://www.choices.edu History and Current Issues curriculum for secondary school and introductory level college courses.
https://wn.com/What_Is_Neocolonialism
How France (Still) Controls Africa
9:23

How France (Still) Controls Africa

  • Order:
  • Duration: 9:23
  • Uploaded Date: 08 Apr 2022
  • views: 532229
France's African empire ended in the 1960s...but not really. Ismael Loutfi explains. Sources here: https://bit.ly/3NVakq9 These videos are entirely funded by small donations. In order to expand what we do, we need your help. Please join us on Patreon if you can: https://www.patreon.com/gravelinstitute Or, if you prefer, give a one-time donation: https://secure.actblue.com/donate/br-gi-5kmatch/?refcode=yt&amount=19 ERRATA: At 5:16 we show a map of several European countries, not just those that use the Euro. We regret the error!
https://wn.com/How_France_(Still)_Controls_Africa
Captain Ibrahim Traoré's Defiant Response to France's  Call for Recolonization of Africa.
10:24

Captain Ibrahim Traoré's Defiant Response to France's Call for Recolonization of Africa.

  • Order:
  • Duration: 10:24
  • Uploaded Date: 25 Apr 2024
  • views: 299
In a stunning display of defiance, Captain Ibrahim Traoré, the esteemed military leader of Burkina Faso, has delivered a resounding rebuke to French General Lecointre's audacious proposal for the recolonization of Africa. Traoré's response, characterized by eloquence and resolve, has reverberated across the continent, sparking a fervent debate on colonialism, sovereignty, and the future of Africa. In his impassioned address, Traoré unequivocally rejects General Lecointre's assertion that Africa requires recolonization to address its myriad challenges. With unwavering conviction, Traoré asserts that Africa's struggles stem not from a lack of colonial oversight, but from centuries of exploitation, oppression, and systemic inequality imposed by colonial powers. Traoré emphasizes Africa's rich history of resistance and resilience in the face of colonial domination, highlighting the continent's enduring spirit of independence and self-determination. He invokes the legacy of African leaders who fought valiantly against colonial rule, from Kwame Nkrumah to Thomas Sankara, as symbols of the continent's unwavering commitment to freedom and sovereignty. Moreover, Traoré condemns the paternalistic attitude inherent in General Lecointre's proposal, asserting that Africa is not a playground for foreign powers to dictate its destiny. He asserts that Africa's future lies in the hands of its own people, who possess the knowledge, ingenuity, and determination to chart their own course towards prosperity and development. In response to General Lecointre's assertion that recolonization would bring stability and progress to Africa, Traoré offers a compelling counterargument. He points to the legacy of colonialism, which has left a trail of devastation in its wake, including economic exploitation, cultural erasure, and social division. Traoré contends that true stability and progress can only be achieved through genuine partnership, mutual respect, and the recognition of Africa's sovereignty. Traoré's response serves as a rallying cry for African unity and solidarity in the face of external pressures and neocolonial ambitions. He calls upon African leaders to reject the false promises of recolonization and instead embrace a vision of pan-African cooperation, solidarity, and self-determination.
https://wn.com/Captain_Ibrahim_Traoré's_Defiant_Response_To_France's_Call_For_Recolonization_Of_Africa.
What is Neo-Colonialism?
5:49

What is Neo-Colonialism?

  • Order:
  • Duration: 5:49
  • Uploaded Date: 31 Dec 2020
  • views: 39735
Colonialism ended in the 20th century and with it many free nations were born, but why aren't more of them prosperous? What could be holding them back? Well, many say its neocolonialism. But what is neocolonialism and why is it important? This video has all that information and more! If you like what you see, please subscribe, like and send the video to someone who needs to know more about Neocolonialism! You can follow me on other platforms as well! Twitter: https://twitter.com/BoluAkinola2 Instagram: https://www.instagram.com/subsaharanvisionary
https://wn.com/What_Is_Neo_Colonialism
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • What is Neocolonialism?
    3:56
    What is Neocolonialism?remove from playlist
  • NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISIS
    11:05
    NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISISremove from playlist
  • Neocolonialism Explained
    3:08
    Neocolonialism Explainedremove from playlist
  • Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalism
    22:35
    Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalismremove from playlist
  • RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.
    30:25
    RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.remove from playlist
  • How the US dollar system reinforces neocolonialism
    6:37
    How the US dollar system reinforces neocolonialismremove from playlist
  • What is neocolonialism?
    1:38
    What is neocolonialism?remove from playlist
  • How France (Still) Controls Africa
    9:23
    How France (Still) Controls Africaremove from playlist
  • Captain Ibrahim Traoré's Defiant Response to France's  Call for Recolonization of Africa.
    10:24
    Captain Ibrahim Traoré's Defiant Response to France's Call for Recolonization of Africa.remove from playlist
  • What is Neo-Colonialism?
    5:49
    What is Neo-Colonialism?remove from playlist
PLAYLIST TIME: 0:00 / 1:45:00

What is Neocolonialism?

This video lecture discusses very briefly the meaning of Neocolonialism. Transcript of this video lecture is available at: https://philonotes.com/2023/03/what-is-neocolonialism *** For more Whiteboard editions from PHILO-notes, SUBSCRIBE NOW! https://www.youtube.com/c/PHILOnotes For more discussions about Philosophy, VISIT OUR WEBSITE: http://philonotes.com FOLLOW US! Facebook: https://www.facebook.com/philonotes.j... Twitter: https://twitter.com/philonotes_jeff Feel free to share your thoughts in the “comments” section below, or hit the "Like" button if you find this material helpful! Thanks! PHILO-notes
3:56
What is Neocolonialism?
This video lecture discusses very briefly the meaning of Neocolonialism. Transcript of th...
published: 23 Jun 2022
Play in Full Screen
11:05
NEOCOLONIALISM: THE FORCE BEHIND POVERTY AND THE MASS IMMIGRATION CRISIS
The intricate web of neocolonialism is shaping regions and countries in the Middle East, G...
published: 18 Feb 2024
Play in Full Screen
3:08
Neocolonialism Explained
What is neo-colonialism? We interviewed the Vice Chairperson of the Communist Party of Ken...
published: 06 Sep 2023
Play in Full Screen
22:35
Colonialism Never Ended | Neo-Colonialism, Semi-Colonies & Bureaucrat Capitalism
Support on Patreon: https://www.patreon.com/MarxismToday Twitter: https://twitter.com/Paul...
published: 11 Feb 2022
Play in Full Screen
30:25
RUSSIA NEVER TRIED TO COLONISE AFRICA… IS IT? PLO Lumumba. EP 7: Neocolonialism.
NEOCOLONIALISM, THE LAST STAGE OF IMPERIALISM Neocolonialism is the last stage of imperial...
published: 15 Dec 2023
Play in Full Screen
6:37
How the US dollar system reinforces neocolonialism
Political economist Radhika Desai explains the imperialist nature of the US dollar-domina...
published: 23 Apr 2023
Play in Full Screen
1:38
What is neocolonialism?
Daniel Rodriguez, Brown University. More videos with Rodriguez: https://www.choices.edu/s...
published: 28 Sep 2021
Play in Full Screen
9:23
How France (Still) Controls Africa
France's African empire ended in the 1960s...but not really. Ismael Loutfi explains. Sour...
published: 08 Apr 2022
Play in Full Screen
10:24
Captain Ibrahim Traoré's Defiant Response to France's Call for Recolonization of Africa.
In a stunning display of defiance, Captain Ibrahim Traoré, the esteemed military leader of...
published: 25 Apr 2024
Play in Full Screen
5:49
What is Neo-Colonialism?
Colonialism ended in the 20th century and with it many free nations were born, but why are...
published: 31 Dec 2020
Play in Full Screen

Neocolonialism

Neocolonialism, neo-colonialism or neo-imperialism is the geopolitical practice of using capitalism, business globalization, and cultural imperialism to influence a country, in lieu of either direct military control (imperialism) or indirect political control (hegemony).

In post-colonial studies, the term neo-colonialism describes the influence of countries from the developed world in the respective internal affairs of the countries of the developing world; that, despite the decolonisation that occurred in the aftermath of the Second World War (1939–45), the (former) colonial powers continue to apply existing and past international economic arrangements with their former colony countries, and so maintain colonial control. A neo-colonialism critique can include de facto colonialism (imperialist or hegemonic), and an economic critique of the disproportionate involvement of modern capitalist business in the economy of a developing country, whereby multinational corporations continue to exploit the natural resources of the former colony; that such economic control is inherently neo-colonial, and thus is akin to the imperial and hegemonic varieties of colonialism practiced by the United States and the empires of Great Britain, France, and other European countries, from the 16th to the 20th centuries. The ideology and praxis of neo-colonialism are discussed in the works of Jean-Paul Sartre (Colonialism and Neo-colonialism, 1964) and Noam Chomsky (The Washington Connection and Third World Fascism, 1979).

'); } 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)); } }); }); }); // -->
×