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

New People's Army

The New People's Army (NPA) (Filipino: Bagong Hukbong Bayan) is the armed wing of the Communist Party of the Philippines (CPP). It was formed and founded by Bernabe Buscayno A.K.A. "Commander Dante" on March 29, 1969. The Maoist NPA conducts its armed guerrilla struggle based on the strategical line of protracted "people's war". The Philippine Army estimated the NPA's strength at 3,200 fighters at the end of 2014.

The NPA collects "revolutionary taxes" in areas where it operates mostly from businesses. The Communist Party of the Philippines refers to the NPA as "the tax enforcement agency of the people's revolutionary government". In 2014, Lieutenant Colonel Ramon Zagala, speaking for the Armed Forces of the Philippines said "[the communist rebels] have lost their ideological mooring and now engaged in extortion [activities]."

The NPA is designated as a Foreign Terrorist Organization by the U.S. State Department and as a terrorist group by the EU Common Foreign and Security Policy. The Government of the Philippines, however, has delisted the NPA as a terrorist organization in 2011 and has resumed preliminary peace talks pending formal negotiations with the NPA's parent political organization, the CPP. There have been reports of the Chinese government shipping arms to the NPA. Due to this, the NPA got an unknown number of Type 56 assault rifles. NPA has also received support from North Korea.

People's Army

People's Army is/was the title of the armed forces of several different countries.

  • Czechoslovak People's Army
  • People's Army of Poland
  • Vietnam People's Army
  • National People's Army, East Germany
  • Yugoslav People's Army
  • Korean People's Army
  • New People's Army, the Philippines
  • People's Liberation Army
  • Also:

  • People's Army of Komuch - Officially the People's Army of the Committee of Members of the Constituent Assembly (Russian: Народная армия КОМУЧа) - an anti-Bolshevik army during the Russian Civil War, which fought at June–September 1918 in Volga Region.
  • People's Army for the Restoration of Democracy (CAR) - a rebel group operating in the northwest Central African Republic
  • People's Army for the Restoration of the Republic and Democracy - another rebel group operating in the northwest Central African Republic
  • Volkssturm (People's Storm) - the German national militia of the last months of World War II.
  • References

    New People

    New People were civilian Cambodians who were controlled and exploited by the Khmer Rouge regime in Cambodia from 1975-1979. Generally, anyone who was from an urban area was made a New Person and people from rural areas were made Old People.

    New People were not allowed any property and they were forced to work at least 10 hours a day, and often more. Their food rations were so small they led to starvation. Disease was rampant and in 1976 it was estimated that 80% of the Cambodian population suffered from malaria.

    One of the Khmer Rouge mottos, in reference to the New People, was "To keep you is no benefit. To destroy you is no loss."

    See also

  • Year Zero (political notion)
  • References

  • The Roots of Evil By Ervin Staub
  • Soizick Crochet, Le Cambodge, Karthala, Paris 1997, ISBN 2-86537-722-9
  • Podcasts:

    • Inside the Philippines New People's Army - 30 Jun 09

      The New People's Army has been fighting for a communist state in Philippines since 1968 in a campaign that has cost more than 40,000 lives. In the first of two special reports from the island of Luzon, Al Jazeera's Marga Ortigas finds out why the fighting has been going on for so long.

      published: 30 Jun 2009
    • No end in sight as New People's Army turns 50

      Over a hundred communist rebels and supporters from the New People’s Army marched through the Philippine capital of Manila on Monday leading up to the group’s 50th founding anniversary.

      published: 28 Mar 2019
    • New People’s Army, Typhoon Nina, Aleppo attacks | Midday wRap

      Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler.com/video Follow Rappler for the latest news in the Philippines and across the globe. DAILY NEWS HIGHLIGHTS 0:06 NPA rebels hopeful about peace process but… 0:58 Typhoon Nina crossing West PH Sea, may leave PAR Dec 27 1:41 21 civilians 'executed' by rebels in Aleppo – state media Watch Rappler’s midday newscast with Maria Ressa: http://s.rplr.co/IONwH9j Follow Rappler on Social Media: Facebook - https://www.facebook.com/rapplerdotcom Twitter - https://twitter.com/rapplerdotcom Instagram - http://instagram.com/rappler YouTube - https://www.youtube.com/rappler/?sub_confirmation=1 SoundCloud - https://soundcloud.com/rappler Google+ - https://plus.google.com/+Rappler/ Tumblr - http://rappler.tumblr.co...

      published: 27 Dec 2016
    • UB: New People's Army, idineklarang pagtatapos ng unilateral ceasefire

      Subscribe to the GMA News and Public Affairs channel: https://www.youtube.com/user/gmanews Visit the GMA News and Public Affairs Portal: http://www.gmanews.tv Connect with us on: Facebook: http://www.facebook.com/gmanews Twitter: http://www.twitter.com/gmanews

      published: 02 Feb 2017
    • One Mindanao: High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro

      High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro tali kasundalohan sa Butuan City See what's fresh from your firsthand source of local news, events, and activities— visit the official website of GMA Regional TV: www.gmaregionaltv.com Subscribe to GMA Regional TV's official YouTube channel: https://www.youtube.com/c/GMARegionalTV Follow us on Facebook, Twitter, and Instagram: @gmaregionaltv #GMARegionalTV #LocalNewsMatters

      published: 13 Feb 2025
    • The New People’s Army is the longest running Communist-led armed revolution in the world✊

      Means TV is the world's first worker-owned streaming service with a library of anti-capitalist movies, shows and news. Start your 7-day free trial: means.tv/join

      published: 04 Apr 2023
    • The New People's Army

      The NPA insurgency is the longest running communist rebellion on the world. There are many reasons why it was so successful for so long, yet it's failing in the modern world for a reason. Wars are cultural affairs. Each conflict is worthy of study. Until the next video, be good, stay safe, and have a good one! Send me a gift if you appreciate my content here: https://www.patreon.com/saltstack "The appearance of U.S. Department of Defense (DoD) visual information does not imply or constitute DoD endorsement." Video: Rebel Rebel, The Enemy Inside Tags: salt stack, saltstack, doomsday preppers, prepper videos, survival skills, prepper video, prepper, preppers, shtf, emergency preparedness, doomsday, survive zombie apocalypse, prepper gear, end of the world, teotwaki, survival, zombie apo...

      published: 25 Feb 2024
    • Meeting with a Former New People’s Army (NPA) Hostage 7/30/2017

      Tactical Operations Group XI, Sasa, Davao City July 30, 2017 President Rodrigo Roa Duterte met with PO1 Alfredo Basibica Jr., a prisoner held captive by the New People’s Army (NPA), in Sasa, Davao City. PO1 Basibica recounted that he was on his way to attend to his mother’s errands in the Southern Philippines Medical Center when he encountered a checkpoint being operated by the NPA at Barangay Panansalan in Compostela Valley Province on July 11, 2017. The same rebel group abducted him and held him prisoner for 17 days. He was later released on July 28, 2017, a day before his scheduled wedding, through the help of the Office of the Special Assistant to the President and the local government unit. During their meeting, PO1 Basibica assured the President that he was not harmed in any way b...

      published: 02 Aug 2017
    • Revolutionary forces in Negros celebrate CPP 50th anniversary

      Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler.com/video Follow Rappler for the latest news in the Philippines and across the globe. The Negros Regional Party Committee of the Communist Party of the Philippines celebrates the 50th anniversary of the movement on Wednesday, December 26. Related story: http://www.rappler.com/nation/219646-military-calls-vigilance-communist-party-philippines-50th-anniversary Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. Help us stay free and independent of political pressure and commercial interests: https://r3.rappler.com/crowdfunding Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. You can hel...

      published: 26 Dec 2018
    • Philippine communist rebels seek to outlast Duterte

      One of Asia’s longest-running rebellions is getting a new lease on life with a new generation of fighters who are drawn to communism because of a huge rich-poor divide in the Philippines.

      published: 16 Aug 2017
    Inside the Philippines New People's Army - 30 Jun 09
    3:00

    Inside the Philippines New People's Army - 30 Jun 09

    • Order:
    • Duration: 3:00
    • Uploaded Date: 30 Jun 2009
    • views: 92134
    The New People's Army has been fighting for a communist state in Philippines since 1968 in a campaign that has cost more than 40,000 lives. In the first of two special reports from the island of Luzon, Al Jazeera's Marga Ortigas finds out why the fighting has been going on for so long.
    https://wn.com/Inside_The_Philippines_New_People's_Army_30_Jun_09
    No end in sight as New People's Army turns 50
    2:18

    No end in sight as New People's Army turns 50

    • Order:
    • Duration: 2:18
    • Uploaded Date: 28 Mar 2019
    • views: 13759
    Over a hundred communist rebels and supporters from the New People’s Army marched through the Philippine capital of Manila on Monday leading up to the group’s 50th founding anniversary.
    https://wn.com/No_End_In_Sight_As_New_People's_Army_Turns_50
    New People’s Army, Typhoon Nina, Aleppo attacks | Midday wRap
    2:32

    New People’s Army, Typhoon Nina, Aleppo attacks | Midday wRap

    • Order:
    • Duration: 2:32
    • Uploaded Date: 27 Dec 2016
    • views: 1411
    Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler.com/video Follow Rappler for the latest news in the Philippines and across the globe. DAILY NEWS HIGHLIGHTS 0:06 NPA rebels hopeful about peace process but… 0:58 Typhoon Nina crossing West PH Sea, may leave PAR Dec 27 1:41 21 civilians 'executed' by rebels in Aleppo – state media Watch Rappler’s midday newscast with Maria Ressa: http://s.rplr.co/IONwH9j Follow Rappler on Social Media: Facebook - https://www.facebook.com/rapplerdotcom Twitter - https://twitter.com/rapplerdotcom Instagram - http://instagram.com/rappler YouTube - https://www.youtube.com/rappler/?sub_confirmation=1 SoundCloud - https://soundcloud.com/rappler Google+ - https://plus.google.com/+Rappler/ Tumblr - http://rappler.tumblr.com/ http://www.rappler.com/ Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. Help us stay free and independent of political pressure and commercial interests: https://r3.rappler.com/crowdfunding Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. You can help power our investigative fund by donating to our crowdfunding: https://donate.rappler.com/
    https://wn.com/New_People’S_Army,_Typhoon_Nina,_Aleppo_Attacks_|_Midday_Wrap
    UB: New People's Army, idineklarang pagtatapos ng unilateral ceasefire
    1:32

    UB: New People's Army, idineklarang pagtatapos ng unilateral ceasefire

    • Order:
    • Duration: 1:32
    • Uploaded Date: 02 Feb 2017
    • views: 4853
    Subscribe to the GMA News and Public Affairs channel: https://www.youtube.com/user/gmanews Visit the GMA News and Public Affairs Portal: http://www.gmanews.tv Connect with us on: Facebook: http://www.facebook.com/gmanews Twitter: http://www.twitter.com/gmanews
    https://wn.com/Ub_New_People's_Army,_Idineklarang_Pagtatapos_Ng_Unilateral_Ceasefire
    One Mindanao: High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro
    2:31

    One Mindanao: High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro

    • Order:
    • Duration: 2:31
    • Uploaded Date: 13 Feb 2025
    • views: 114819
    High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro tali kasundalohan sa Butuan City See what's fresh from your firsthand source of local news, events, and activities— visit the official website of GMA Regional TV: www.gmaregionaltv.com Subscribe to GMA Regional TV's official YouTube channel: https://www.youtube.com/c/GMARegionalTV Follow us on Facebook, Twitter, and Instagram: @gmaregionaltv #GMARegionalTV #LocalNewsMatters
    https://wn.com/One_Mindanao_High_Ranking_Leader_Sa_New_People’S_Army_Sa_Mindanao,_Patay_Sa_Engkwentro
    The New People’s Army is the longest running Communist-led armed revolution in the world✊
    1:01

    The New People’s Army is the longest running Communist-led armed revolution in the world✊

    • Order:
    • Duration: 1:01
    • Uploaded Date: 04 Apr 2023
    • views: 537
    Means TV is the world's first worker-owned streaming service with a library of anti-capitalist movies, shows and news. Start your 7-day free trial: means.tv/join
    https://wn.com/The_New_People’S_Army_Is_The_Longest_Running_Communist_Led_Armed_Revolution_In_The_World✊
    The New People's Army
    9:21

    The New People's Army

    • Order:
    • Duration: 9:21
    • Uploaded Date: 25 Feb 2024
    • views: 10277
    The NPA insurgency is the longest running communist rebellion on the world. There are many reasons why it was so successful for so long, yet it's failing in the modern world for a reason. Wars are cultural affairs. Each conflict is worthy of study. Until the next video, be good, stay safe, and have a good one! Send me a gift if you appreciate my content here: https://www.patreon.com/saltstack "The appearance of U.S. Department of Defense (DoD) visual information does not imply or constitute DoD endorsement." Video: Rebel Rebel, The Enemy Inside Tags: salt stack, saltstack, doomsday preppers, prepper videos, survival skills, prepper video, prepper, preppers, shtf, emergency preparedness, doomsday, survive zombie apocalypse, prepper gear, end of the world, teotwaki, survival, zombie apocalypse, survivor, prepping, collapse, prepper skills, 2024, ww3, warning, end of the world, disaster, be prepared, emergency, prepping skills to learn, shtf prepping, guerilla, npa, Philippines, rebel, insurgency
    https://wn.com/The_New_People's_Army
    Meeting with a Former New People’s Army (NPA) Hostage 7/30/2017
    1:00

    Meeting with a Former New People’s Army (NPA) Hostage 7/30/2017

    • Order:
    • Duration: 1:00
    • Uploaded Date: 02 Aug 2017
    • views: 28451
    Tactical Operations Group XI, Sasa, Davao City July 30, 2017 President Rodrigo Roa Duterte met with PO1 Alfredo Basibica Jr., a prisoner held captive by the New People’s Army (NPA), in Sasa, Davao City. PO1 Basibica recounted that he was on his way to attend to his mother’s errands in the Southern Philippines Medical Center when he encountered a checkpoint being operated by the NPA at Barangay Panansalan in Compostela Valley Province on July 11, 2017. The same rebel group abducted him and held him prisoner for 17 days. He was later released on July 28, 2017, a day before his scheduled wedding, through the help of the Office of the Special Assistant to the President and the local government unit. During their meeting, PO1 Basibica assured the President that he was not harmed in any way by his captors. He likewise expressed gratitude that despite the President’s recent order to cancel the peace talks with the Communist Party of the Philippines – New People’s Army – National Democratic Front (CPP-NPA-NDF), he was still released and is now safe with his family. * * * Connect with RTVM Website: http://rtvm.gov.ph Facebook: www.facebook.com/presidentialcom and www.facebook.com/rtvmalacanang Twitter: @RTVMalacanang Google+: google.com/+RTVMalacanang
    https://wn.com/Meeting_With_A_Former_New_People’S_Army_(Npa)_Hostage_7_30_2017
    Revolutionary forces in Negros celebrate CPP 50th anniversary
    1:09

    Revolutionary forces in Negros celebrate CPP 50th anniversary

    • Order:
    • Duration: 1:09
    • Uploaded Date: 26 Dec 2018
    • views: 160294
    Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler.com/video Follow Rappler for the latest news in the Philippines and across the globe. The Negros Regional Party Committee of the Communist Party of the Philippines celebrates the 50th anniversary of the movement on Wednesday, December 26. Related story: http://www.rappler.com/nation/219646-military-calls-vigilance-communist-party-philippines-50th-anniversary Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. Help us stay free and independent of political pressure and commercial interests: https://r3.rappler.com/crowdfunding Follow Rappler for the latest news in the Philippines and around the world. Support independent journalism. You can help power our investigative fund by donating to our crowdfunding: https://donate.rappler.com/
    https://wn.com/Revolutionary_Forces_In_Negros_Celebrate_Cpp_50Th_Anniversary
    Philippine communist rebels seek to outlast Duterte
    2:29

    Philippine communist rebels seek to outlast Duterte

    • Order:
    • Duration: 2:29
    • Uploaded Date: 16 Aug 2017
    • views: 238218
    One of Asia’s longest-running rebellions is getting a new lease on life with a new generation of fighters who are drawn to communism because of a huge rich-poor divide in the Philippines.
    https://wn.com/Philippine_Communist_Rebels_Seek_To_Outlast_Duterte
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 26:53

    Inside the Philippines New People's Army - 30 Jun 09

    The New People's Army has been fighting for a communist state in Philippines since 1968 in a campaign that has cost more than 40,000 lives. In the first of two special reports from the island of Luzon, Al Jazeera's Marga Ortigas finds out why the fighting has been going on for so long.
    3:00
    Inside the Philippines New People's Army - 30 Jun 09
    The New People's Army has been fighting for a communist state in Philippines since 1968 in...
    published: 30 Jun 2009
    Play in Full Screen
    2:18
    No end in sight as New People's Army turns 50
    Over a hundred communist rebels and supporters from the New People’s Army marched through ...
    published: 28 Mar 2019
    Play in Full Screen
    2:32
    New People’s Army, Typhoon Nina, Aleppo attacks | Midday wRap
    Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler....
    published: 27 Dec 2016
    Play in Full Screen
    1:32
    UB: New People's Army, idineklarang pagtatapos ng unilateral ceasefire
    Subscribe to the GMA News and Public Affairs channel: https://www.youtube.com/user/gmanews...
    published: 02 Feb 2017
    Play in Full Screen
    2:31
    One Mindanao: High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro
    High-ranking leader sa New People’s Army sa Mindanao, patay sa engkwentro tali kasundaloha...
    published: 13 Feb 2025
    Play in Full Screen
    1:01
    The New People’s Army is the longest running Communist-led armed revolution in the world✊
    Means TV is the world's first worker-owned streaming service with a library of anti-capita...
    published: 04 Apr 2023
    Play in Full Screen
    9:21
    The New People's Army
    The NPA insurgency is the longest running communist rebellion on the world. There are many...
    published: 25 Feb 2024
    Play in Full Screen
    1:00
    Meeting with a Former New People’s Army (NPA) Hostage 7/30/2017
    Tactical Operations Group XI, Sasa, Davao City July 30, 2017 President Rodrigo Roa Dutert...
    published: 02 Aug 2017
    Play in Full Screen
    1:09
    Revolutionary forces in Negros celebrate CPP 50th anniversary
    Subscribe: https://www.youtube.com/@Rappler/ More videos on Rappler: https://www.rappler....
    published: 26 Dec 2018
    Play in Full Screen
    2:29
    Philippine communist rebels seek to outlast Duterte
    One of Asia’s longest-running rebellions is getting a new lease on life with a new generat...
    published: 16 Aug 2017
    Play in Full Screen

    New People's Army

    The New People's Army (NPA) (Filipino: Bagong Hukbong Bayan) is the armed wing of the Communist Party of the Philippines (CPP). It was formed and founded by Bernabe Buscayno A.K.A. "Commander Dante" on March 29, 1969. The Maoist NPA conducts its armed guerrilla struggle based on the strategical line of protracted "people's war". The Philippine Army estimated the NPA's strength at 3,200 fighters at the end of 2014.

    The NPA collects "revolutionary taxes" in areas where it operates mostly from businesses. The Communist Party of the Philippines refers to the NPA as "the tax enforcement agency of the people's revolutionary government". In 2014, Lieutenant Colonel Ramon Zagala, speaking for the Armed Forces of the Philippines said "[the communist rebels] have lost their ideological mooring and now engaged in extortion [activities]."

    The NPA is designated as a Foreign Terrorist Organization by the U.S. State Department and as a terrorist group by the EU Common Foreign and Security Policy. The Government of the Philippines, however, has delisted the NPA as a terrorist organization in 2011 and has resumed preliminary peace talks pending formal negotiations with the NPA's parent political organization, the CPP. There have been reports of the Chinese government shipping arms to the NPA. Due to this, the NPA got an unknown number of Type 56 assault rifles. NPA has also received support from North Korea.

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

    Latest News for: new people's army

    Edit

    Army captures NPA arms cache in Bicol

    Manila Standard 10 Apr 2025
    The Philippine Army’s 2nd Infantry Division (2ID) based in Tanay, Rizal announced on Thursday that its troops had discovered a significant New People’s Army (NPA) arms cache in Labo town, Camarines Norte ... .
    Edit

    Top NPA commander yields in Bukidnon; Army condemns attack

    Manila Bulletin 10 Apr 2025
    CAGAYAN DE ORO CITY – A former high-ranking commander of the communist New People's Army (NPA) surrendered in Bukidnon province and turned over several high-powered firearms, police said Thursday.
    Edit

    Pakistan: Baloch activist calls for unity, resilience in fight for freedom against government

    Beijing News 10 Apr 2025
    The leader further reiterated claims that Gwadar port and the new airport are being used for military purposes, stating that Chinese submarines and People's Liberation Army personnel are already stationed there.
    Edit

    Troops recover NPA arms stash in Camarines Norte

    Manila Bulletin 10 Apr 2025
    Soldiers recovered a large New People's Army (NPA) arms cache in Labo town, Camarines Norte on Wednesday, April 9. Lt. Col ... Major Gen ... The military conducted the operation with the assistance of the Labo police ... .
    Edit

    Give us a break: Trump leaves everyday Americans exasperated | ELAINE HARRIS SPEARMAN

    Tuscaloosanews.com 10 Apr 2025
    I am as tired of the everyday “new” focus on “me and my ability to dictate policy to the world,” as are many other people ... As sick as many people are of the daily new waves of stress, there is a certain amount of attention that we have to pay to it.
    Edit

    Communist rebels torch cassava warehouse in Bukidnon

    Manila Bulletin 08 Apr 2025
    BUTUAN CITY – The New People’s Army burned a warehouse for cassava in Sitio Kalipay, Barangay San Luis, Malitbog, Bukidnon province on Saturday, April 5. A CASSAVA warehouse was torched by communist rebels in Bukidnon on April 5. (4th ID). Major Gen ... .
    Edit

    Captured rebel leads Army to NPA's hidden weapons in Quezon

    The Philadelphia Inquirer 07 Apr 2025
    LUCENA CITY — An alleged member of the New People’s Army (NPA), who was captured last week, led government forces to a cache of ...
    Edit

    NPA rebels burn cassava milling plant in Bukidnon

    The Philadelphia Inquirer 06 Apr 2025
    Nikolas Marino, New People’s Army (NPA) spokesman in Northern Mindanao, sent text messages to reporters on Saturday saying ...
    Edit

    AFP urges partnership with DepEd to combat NPA recruitment in schools

    Sun Star 05 Apr 2025
    ... into an agreement with the Department of Education (DepEd) to allow government forces to conduct information campaigns in schools to counter the recruitment activities of the New People’s Army (NPA).
    Edit

    CHR warns vs 'red-tagging, sexist remarks' during electoral campaigns

    Manila Bulletin 05 Apr 2025
    At the same time, the CHR expressed alarm over the cases of reported red-tagging, which have now involved the use of deepfakes (digitally altered video) to spread disinformation, linking certain candidates and groups to the New People’s Army ... .
    Edit

    US, EU criticize China’s military drills

    Taipei Times 02 Apr 2025
    The Chinese People’s Liberation Army’s (PLA) Eastern Theater Command on Tuesday morning announced the beginning of a new round of joint exercises around Taiwan, featuring the army, navy, air and ...
    Edit

    China’s drills aim to test US response: academics

    Taipei Times 02 Apr 2025
    The Chinese People’s Liberation Army’s (PLA) Eastern Theater Command on Tuesday announced it had launched a new round of exercises around Taiwan using army, navy, air and rocket forces to “close in” on the nation from “multiple directions.” ... .
    Edit

    PLA drills near Taiwan now 'new normal,' scholar says

    China Daily 01 Apr 2025
    Joint military drills around Taiwan have become a "new normal" and are now "everyday business" for the People's Liberation Army and its Eastern Theater Command, a military scholar said on Tuesday.
    Edit

    Roundup: Rafah residents forced to flee once more during Eid as Israeli military operations intensify

    Xinhua 31 Mar 2025
    On Monday, the Israeli army issued new evacuation orders for large areas of Rafah, affecting tens of thousands of people ... "The Israeli army keeps telling us to move, but where can we go? The world celebrates Eid while we search for safety," he said.
    Edit

    National Guard troops from the Inland Empire were sent to guard the border in 1916

    Redlands Daily Facts 31 Mar 2025
    This came following the March 9, 1916, raid on Columbus, New Mexico, by Pancho Villa’s army. As many as 80 people died during the cross-border assault and gun battle there with American soldiers.
    ×