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

Palestinian

Palestinian is typically referring to a person belonging to the Palestinian people, an Arab nationalist group defined in the Palestinian National Charter of 1968, also referred to as Palestinians (Arabic: الفلسطينيون, al-Filasṭīniyyūn).

It may also refer to:

  • Palestinian Muslims, members of the major religion in the State of Palestine
  • Palestinian Christians, an ethnoreligious group native to the area of Palestine, in the Levant
  • Palestinians in Jordan
  • Palestinian American
  • Palestinian diaspora
  • Palestinian refugee
  • State of Palestine, a state in the Middle East
  • Palestinian territories
  • Palestine region
  • Mandatory Palestine, a British Mandate established from 1920 - 1948
  • All-Palestine Government, the administration in Gaza from 1948 - 1959
  • Palestinian Central Council, a policy decision arm of the Palestinian Liberation Organization (PLO)
  • Palestine Liberation Organization (PLO), an organization founded in 1964 to liberate Palestine
  • Palestinian National Authority, an interim self-government body administering the Gaza strip from 1994 - 2013
  • Palestinians

    The Palestinian people (Arabic: الشعب الفلسطيني, ash-sha‘b al-Filasṭīnī), also referred to as Palestinians (Arabic: الفلسطينيون, al-Filasṭīniyyūn, Hebrew: פָלַסְטִינִים), are an ethnic group comprising the modern descendants of the peoples who have lived in Palestine over the centuries, and who today are largely culturally and linguistically Arab due to Arabization of the region. Despite various wars and exoduses (such as that in 1948), roughly one half of the world's Palestinian population continues to reside in historic Palestine, the area encompassing the West Bank, the Gaza Strip and Israel. In this combined area, as of 2004, Palestinians constituted 49% of all inhabitants, encompassing the entire population of the Gaza Strip (1.6 million), the majority of the population of the West Bank (approximately 2.3 million versus close to 500,000 Jewish Israeli citizens which includes about 200,000 in East Jerusalem), and 16.5% of the population of Israel proper as Arab citizens of Israel. Many are Palestinian refugees or internally displaced Palestinians, including more than a million in the Gaza Strip, three-quarters of a million in the West Bank, and about a quarter of a million in Israel proper. Of the Palestinian population who live abroad, known as the Palestinian diaspora, more than half are stateless lacking citizenship in any country. 3.24 million of the diaspora population live in neighboring Jordan, 1.5 million live between Syria and Lebanon, a quarter of a million in Saudi Arabia, with Chile's half a million representing the largest concentration outside the Arab world.

    Arab Jews

    Arab Jews (Arabic: اليهود العرب al-Yahūd al-ʿArab; Hebrew: יהודים ערבים Yehudim `Aravim) is a term referring to Jews living in the Arab World, or Jews descended from such persons.

    The term was not commonly used until the modern era. Most of the population was forced out or voluntarily left after the founding of Israel in 1948, for the new Jewish state or to Western Europe, and a few went to the United States and Latin America. They spoke Arabic, using one of the many Arabic dialects (see also Judeo-Arabic languages) as their primary community language, with Hebrew reserved as a liturgical language. They usually followed Sephardi Jewish liturgy, making them one of the largest groups among Mizrahi Jews.

    In recent decades, the term has come back into some usage by Jews who self-identify as Arab Jews, such as Ella Shohat, an anti-Zionist, who uses the term in contrast to the Zionist establishment's categorization of Jews as either Ashkenazim or Mizrahim; the latter, she believes, have been oppressed as the Arabs have. Other public figures who refer to themselves as Arab Jews include David Shasha, Director of the Center for Sephardic Heritage, Jordan Elgrably, director of the Levantine Cultural Center, and Ammiel Alcalay, a professor at Queens College in New York who began emphasizing the importance of his identity as an Arab Jew in the 1990s.André Azoulay, Jewish adviser to Moroccan King Mohammed VI, also defines himself as an Arab Jew, as does Sasson Somekh in a recent memoir.Ilan Halevi described himself as "100% Jewish and 100% Arab."

    Podcasts:

    • New video of alleged hate crime attack on Palestinian couple at Panera

      Newly released videos have revealed additional details in the argument that led to hate crime charges against a woman accused of assaulting a Palestinian-American couple at a Panera Bread restaurant in Downers Grove.

      published: 06 Dec 2024
    • Indonesian pilot greets Palestinian passenger on plane

      An Indonesian pilot greeted a Palestinian passenger Mahmoud Abdel Al during a flight to show solidarity and support amid Israel’s ongoing war on Gaza. #palestine #palestinians #support Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook Twitter: http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld Visit our website: http://trt.world

      published: 21 Nov 2023
    • 'I want to die' - a Palestinian child in Gaza says due to war

      “I wish we would die … I am tired of living because of the war” These are the words of a child lining up to get aid that is delivered by sea amid what the UN describes as "full-blown" famine in the northern part of Palestine’s Gaza. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook X (Twitter): http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld WhatsApp: trtworld.com/whatsapp Telegram: https://t.me/trtworld Visit our website: http://trt.world

      published: 09 May 2024
    • Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollah

      Patreon: https://bit.ly/3v8OhY7 Robinson’s Fashion Empire: http://bit.ly/3XBKqO2 Main Channel: https://www.youtube.com/@robinsonerhardt Full Episode: https://youtu.be/vhFm62msNGc Robinson's Podcast #228 - Norman Finkelstein: October 7th Revisited | Israel, Palestine, Hezbollah, & The End of Gaza Norman Finkelstein received his PhD from the Princeton University Politics Department, and is best known for his research on Israel and Palestine. In this episode, Norman and Robinson sit down for a discussion centered around the anniversary of October 7th, and they speak about the immensity of what has happened in the Israel-Palestine region in the time before and since. Norman also appeared on episode 192, where he and Robinson discussed allegations of genocide and apartheid, Hamas and Hezbo...

      published: 26 Oct 2024
    • Ben Shapiro EMBARESSES pro-Palestinian Oxford student #israel #gaza

      published: 02 Nov 2023
    • Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?

      In the early hours of Saturday, Palestinian resistance fighters clashed with Israeli Defense Forces (IDF) as they raided multiple towns in the occupied West Bank. The violence unfolded in areas like Beita, Barqa, and Qasra, where Palestinian youth confronted the invading forces. Reports highlight Israeli troops assaulting Palestinians, vandalizing homes, and detaining a youth in the Qalandya refugee camp. The ongoing aggression coincides with the expansion of illegal Israeli settlements and the desecration of religious sites, further escalating tensions in the region. #WestBank #PalestinianResistance #IDF #IsraeliOccupation #Beita #Qalandya #ViolentClashes #Palestine #MiddleEastConflict #PalestinianYouth #IsraeliRaids #OccupiedTerritories #ResistanceFightsBack #Settlements #HumanRights ...

      published: 07 Dec 2024
    • The Israel-Palestine conflict: a brief, simple history

      The conflict is really only 100 years old. Subscribe to our channel! http://goo.gl/0bsAjO One of the biggest myths about the Israel-Palestine conflict is that it's been going on for centuries, that this is all about ancient religious hatreds. In fact, while religion is involved, the conflict is mostly about two groups of people who claim the same land. And it really only goes back about a century, to the early 1900s. At its heart, it is a conflict between two self-determination movements — the Jewish Zionist project and the Palestinian nationalist project — that lay claim to the same territory. Read more about the Israel-Palestine conflict on Vox: http://bit.ly/2S7gFlT Your basic questions about Israel and Palestine answered: – What are Israel and Palestine? Why are they fighting? ht...

      published: 20 Jan 2016
    • How Palestinians were expelled from their homes

      The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO Around the time that Israelis celebrate Independence Day, Palestinians commemorate “The Nakba,” or “The Catastrophe.” The Nakba was a series of events, centered around 1948, that expelled hundreds of thousands Palestinians from their homeland and killed thousands. The Nakba isn’t the beginning of the story, but it’s a key part of Palestinian history — and the root of Israel’s creation. Prior to the Nakba, Palestine had a thriving population — largely made up of Arabs — that had lived and worked the land for centuries. But with the founding of Zionism, years of British meddling, and a British pledge to help create a Jewish state in Palestine — things began t...

      published: 15 May 2023
    • Israeli government targets Australia over its support for Palestinian statehood

      A synagogue attack in Melbourne became a major news story in Israel and, in a rare press conference, the Israeli Ambassador to Australia has also criticised the response to the fire. The Israeli government has launched a targeted broadside at Australia over its support for moves to recognise Palestinian statehood, warning it will fuel anti-Semitism here. #worldnews #Israel #politics SBS News is Australia's trusted news source for the latest news from Australia and across the world. Subscribe to the SBS News YouTube channel: https://www.youtube.com/@SBSNews Follow SBS News on Instagram: https://www.instagram.com/sbsnews_au Follow SBS News on TikTok: https://www.tiktok.com/@sbsnews_au Follow SBS News on X: https://www.twitter.com/SBSNews Follow SBS News on Facebook: https://www.facebook...

      published: 06 Dec 2024
    • Palestinian bodybuilder released from Israeli detention in diminished state

      Palestinian bodybuilder Moazaz Obaiat has been released by Israeli authorities in a strikingly diminished state, following nine months of Israeli detention. His family expressed shock at his deteriorated condition, attributing it to alleged starvation and torture in Israeli prisons. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook X (Twitter): http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld WhatsApp: trtworld.com/whatsapp Telegram: https://t.me/trtworld Visit our website: http://trt.world

      published: 10 Jul 2024
    New video of alleged hate crime attack on Palestinian couple at Panera
    2:17

    New video of alleged hate crime attack on Palestinian couple at Panera

    • Order:
    • Duration: 2:17
    • Uploaded Date: 06 Dec 2024
    • views: 26256
    Newly released videos have revealed additional details in the argument that led to hate crime charges against a woman accused of assaulting a Palestinian-American couple at a Panera Bread restaurant in Downers Grove.
    https://wn.com/New_Video_Of_Alleged_Hate_Crime_Attack_On_Palestinian_Couple_At_Panera
    Indonesian pilot greets Palestinian passenger on plane
    0:19

    Indonesian pilot greets Palestinian passenger on plane

    • Order:
    • Duration: 0:19
    • Uploaded Date: 21 Nov 2023
    • views: 24671147
    An Indonesian pilot greeted a Palestinian passenger Mahmoud Abdel Al during a flight to show solidarity and support amid Israel’s ongoing war on Gaza. #palestine #palestinians #support Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook Twitter: http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld Visit our website: http://trt.world
    https://wn.com/Indonesian_Pilot_Greets_Palestinian_Passenger_On_Plane
    'I want to die' - a Palestinian child in Gaza says due to war
    0:35

    'I want to die' - a Palestinian child in Gaza says due to war

    • Order:
    • Duration: 0:35
    • Uploaded Date: 09 May 2024
    • views: 3448248
    “I wish we would die … I am tired of living because of the war” These are the words of a child lining up to get aid that is delivered by sea amid what the UN describes as "full-blown" famine in the northern part of Palestine’s Gaza. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook X (Twitter): http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld WhatsApp: trtworld.com/whatsapp Telegram: https://t.me/trtworld Visit our website: http://trt.world
    https://wn.com/'I_Want_To_Die'_A_Palestinian_Child_In_Gaza_Says_Due_To_War
    Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollah
    0:54

    Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollah

    • Order:
    • Duration: 0:54
    • Uploaded Date: 26 Oct 2024
    • views: 824360
    Patreon: https://bit.ly/3v8OhY7 Robinson’s Fashion Empire: http://bit.ly/3XBKqO2 Main Channel: https://www.youtube.com/@robinsonerhardt Full Episode: https://youtu.be/vhFm62msNGc Robinson's Podcast #228 - Norman Finkelstein: October 7th Revisited | Israel, Palestine, Hezbollah, & The End of Gaza Norman Finkelstein received his PhD from the Princeton University Politics Department, and is best known for his research on Israel and Palestine. In this episode, Norman and Robinson sit down for a discussion centered around the anniversary of October 7th, and they speak about the immensity of what has happened in the Israel-Palestine region in the time before and since. Norman also appeared on episode 192, where he and Robinson discussed allegations of genocide and apartheid, Hamas and Hezbollah, and connections between the war and the Holocaust. Norman was also featured on episode 218, where he addressed the facts and fictions generated by the Israel-Hamas War. Norman’s most recent book is I’ll Burn That Bridge When I Get to It! Heretical Thoughts on Identity Politics, Cancel Culture, and Academic Freedom (Sublation Media, 2023). Norman’s Website: https://www.normanfinkelstein.com Robinson Erhardt researches symbolic logic and the foundations of mathematics at Stanford University. Join him in conversations with philosophers, scientists, and everyone in-between. Robinson's Website: http://robinsonerhardt.com
    https://wn.com/Norman_Finkelstein_Israel_Does_Not_Want_To_Fight_Hand_To_Hand_Combat_With_Hezbollah
    Ben Shapiro EMBARESSES pro-Palestinian Oxford student #israel #gaza
    0:43

    Ben Shapiro EMBARESSES pro-Palestinian Oxford student #israel #gaza

    • Order:
    • Duration: 0:43
    • Uploaded Date: 02 Nov 2023
    • views: 12557936
    https://wn.com/Ben_Shapiro_Embaresses_Pro_Palestinian_Oxford_Student_Israel_Gaza
    Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?
    3:03

    Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?

    • Order:
    • Duration: 3:03
    • Uploaded Date: 07 Dec 2024
    • views: 5450
    In the early hours of Saturday, Palestinian resistance fighters clashed with Israeli Defense Forces (IDF) as they raided multiple towns in the occupied West Bank. The violence unfolded in areas like Beita, Barqa, and Qasra, where Palestinian youth confronted the invading forces. Reports highlight Israeli troops assaulting Palestinians, vandalizing homes, and detaining a youth in the Qalandya refugee camp. The ongoing aggression coincides with the expansion of illegal Israeli settlements and the desecration of religious sites, further escalating tensions in the region. #WestBank #PalestinianResistance #IDF #IsraeliOccupation #Beita #Qalandya #ViolentClashes #Palestine #MiddleEastConflict #PalestinianYouth #IsraeliRaids #OccupiedTerritories #ResistanceFightsBack #Settlements #HumanRights Also Read Amnesty International Accuses Israel of Genocide in Gaza Amid Ongoing Conflict :: https://www.oneindia.com/international/amnesty-international-alleges-genocide-israel-gaza-011-4007669.html Israel Intensifies Strikes in Lebanon as Netanyahu Promises Strong Response to Hezbollah Violations :: https://www.oneindia.com/international/deadly-strikes-israel-lebanon-netanyahu-iron-fist-011-4005657.html Day After Ceasefire, Israel Conducts Airstrike On Hezbollah In Lebanon :: https://www.oneindia.com/international/day-after-ceasefire-israel-conducts-airstrike-on-hezbollah-in-lebanon-4001071.html ---------------------------------------------------------------------------------------------------------- Oneindia News is a youth-driven channel that brings you stories that need your attention, are popular, informative, and entertaining. Follow and like us for thought-provoking & exclusive content... Youtube: https://www.youtube.com/channel/UCqTa3sNT6SfiQ2DQK_kuWlA Like us on Facebook: https://www.facebook.com/oneindianews Follow us on Instagram: https://www.instagram.com/oneindia_en/ We are there on Twitter: https://x.com/Oneindia ~PR.274~HT.336~
    https://wn.com/Shocking_Video_Of_Armed_Palestinians_Vs_Idf_In_West_Bank_|_Al_Qassam_Brigade_Behind_Violent_Clashes
    The Israel-Palestine conflict: a brief, simple history
    10:19

    The Israel-Palestine conflict: a brief, simple history

    • Order:
    • Duration: 10:19
    • Uploaded Date: 20 Jan 2016
    • views: 26396503
    The conflict is really only 100 years old. Subscribe to our channel! http://goo.gl/0bsAjO One of the biggest myths about the Israel-Palestine conflict is that it's been going on for centuries, that this is all about ancient religious hatreds. In fact, while religion is involved, the conflict is mostly about two groups of people who claim the same land. And it really only goes back about a century, to the early 1900s. At its heart, it is a conflict between two self-determination movements — the Jewish Zionist project and the Palestinian nationalist project — that lay claim to the same territory. Read more about the Israel-Palestine conflict on Vox: http://bit.ly/2S7gFlT Your basic questions about Israel and Palestine answered: – What are Israel and Palestine? Why are they fighting? http://bit.ly/2NKJPcd – What is Zionism? http://bit.ly/2G549P6 – How did Israel become a country in the first place? http://bit.ly/2xFdAjN – What are settlements, and why are they such a big deal? http://bit.ly/30pSRfZ – What were the intifadas? http://bit.ly/2NInMm9 – How does the world feel about Israel/Palestine? http://bit.ly/2JprIEh – What is the Israeli-Palestinian peace process? http://bit.ly/2XIRzQB Further reading on the Israel-Palestine conflict: http://bit.ly/2XBrIFf You can also watch our three-part documentary series on Israeli settlements from 2016. Start with part 1 here: https://youtu.be/E0uLbeQlwjw Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com Check out our full video catalog: http://goo.gl/IZONyE Follow Vox on Twitter: http://goo.gl/XFrZ5H Or on Facebook: http://goo.gl/U2g06o
    https://wn.com/The_Israel_Palestine_Conflict_A_Brief,_Simple_History
    How Palestinians were expelled from their homes
    16:26

    How Palestinians were expelled from their homes

    • Order:
    • Duration: 16:26
    • Uploaded Date: 15 May 2023
    • views: 2144029
    The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don't miss any videos: http://goo.gl/0bsAjO Around the time that Israelis celebrate Independence Day, Palestinians commemorate “The Nakba,” or “The Catastrophe.” The Nakba was a series of events, centered around 1948, that expelled hundreds of thousands Palestinians from their homeland and killed thousands. The Nakba isn’t the beginning of the story, but it’s a key part of Palestinian history — and the root of Israel’s creation. Prior to the Nakba, Palestine had a thriving population — largely made up of Arabs — that had lived and worked the land for centuries. But with the founding of Zionism, years of British meddling, and a British pledge to help create a Jewish state in Palestine — things began to change drastically. By 1947, with increasing tensions between Jewish settlers and Palestinian Arabs — the British left Palestine, and the UN stepped in with a plan to partition the land into two states. What followed was known as Plan Dalet: operations by Israeli paramilitary groups that violently uprooted Palestinians. An estimated 15,000 Palestinians were killed, more than 500 villages were decimated, and roughly 750,000 Palestinians displaced. Most who were expelled from their homes couldn’t return to historic Palestine. And today, millions of their descendants live in refugee camps in Gaza, the West Bank and surrounding countries. The history of the Nakba has been deliberately concealed and often ignored in western narratives around the creation of Israel. In this episode of Missing Chapter, we break down how the Nakba happened — and how it defined the future of Palestine. Sources: Check out the documentary “1948: Creation & Catastrophe” by Ahlam Muhtaseb and Andy Trimlett for more information about the events around the Nakba - https://tubitv.com/movies/513674/1948-creation-catastrophe All That Remains: The Palestinian Villages Occupied and Depopulated by Israel in 1948 was a great resource in helping us understand the Nakba - https://www.goodreads.com/book/show/22236243-all-that-remains For our maps, we relied heavily on these organizations: Palestinian Academic Society for the Study of International Affairs, Institute for Middle Eastern Understanding, Palestine Remembered and Zochrot http://www.passia.org/maps/view/2 https://imeu.org/topic/category/maps https://www.palestineremembered.com/Maps/index.html https://www.zochrot.org/ This report by Ilan Pappe helped us understand how Zionist forces planned to destroy villages - https://www.palestine-studies.org/en/node/1650358 For our population breakdowns, we mainly used Australian National University’s Palestine Census reports archive - https://users.cecs.anu.edu.au/~bdm/yabber/yabber_census.html Make sure you never miss behind the scenes content in the Vox Video newsletter, sign up here: http://vox.com/video-newsletter Vox is an explanatory newsroom on a mission to help everyone understand our weird, wonderful, complicated world, so that we can all help shape it. Part of that mission is keeping our work free. You can help us do that by making a gift: http://www.vox.com/contribute-now Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on TikTok: http://tiktok.com/@voxdotcom Check out our articles: https://www.vox.com/ Listen to our podcasts: https://www.vox.com/podcasts
    https://wn.com/How_Palestinians_Were_Expelled_From_Their_Homes
    Israeli government targets Australia over its support for Palestinian statehood
    3:20

    Israeli government targets Australia over its support for Palestinian statehood

    • Order:
    • Duration: 3:20
    • Uploaded Date: 06 Dec 2024
    • views: 31275
    A synagogue attack in Melbourne became a major news story in Israel and, in a rare press conference, the Israeli Ambassador to Australia has also criticised the response to the fire. The Israeli government has launched a targeted broadside at Australia over its support for moves to recognise Palestinian statehood, warning it will fuel anti-Semitism here. #worldnews #Israel #politics SBS News is Australia's trusted news source for the latest news from Australia and across the world. Subscribe to the SBS News YouTube channel: https://www.youtube.com/@SBSNews Follow SBS News on Instagram: https://www.instagram.com/sbsnews_au Follow SBS News on TikTok: https://www.tiktok.com/@sbsnews_au Follow SBS News on X: https://www.twitter.com/SBSNews Follow SBS News on Facebook: https://www.facebook.com/sbsnews Apple News: https://trib.al/MTx0gUe Network Terms & Conditions: https://sbs.com.au/terms Privacy Policy: https://sbs.com.au/privacy Feedback or complaints: https://sbs.com.au/complaints
    https://wn.com/Israeli_Government_Targets_Australia_Over_Its_Support_For_Palestinian_Statehood
    Palestinian bodybuilder released from Israeli detention in diminished state
    0:11

    Palestinian bodybuilder released from Israeli detention in diminished state

    • Order:
    • Duration: 0:11
    • Uploaded Date: 10 Jul 2024
    • views: 1823728
    Palestinian bodybuilder Moazaz Obaiat has been released by Israeli authorities in a strikingly diminished state, following nine months of Israeli detention. His family expressed shock at his deteriorated condition, attributing it to alleged starvation and torture in Israeli prisons. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook X (Twitter): http://trt.world/twitter Instagram: http://trt.world/instagram Threads: http://threads.net/@trtworld TikTok: http://tiktok.com/@trtworld WhatsApp: trtworld.com/whatsapp Telegram: https://t.me/trtworld Visit our website: http://trt.world
    https://wn.com/Palestinian_Bodybuilder_Released_From_Israeli_Detention_In_Diminished_State
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • New video of alleged hate crime attack on Palestinian couple at Panera
      2:17
      New video of alleged hate crime attack on Palestinian couple at Paneraremove from playlist
    • Indonesian pilot greets Palestinian passenger on plane
      0:19
      Indonesian pilot greets Palestinian passenger on planeremove from playlist
    • 'I want to die' - a Palestinian child in Gaza says due to war
      0:35
      'I want to die' - a Palestinian child in Gaza says due to warremove from playlist
    • Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollah
      0:54
      Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollahremove from playlist
    • Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?
      3:03
      Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?remove from playlist
    • The Israel-Palestine conflict: a brief, simple history
      10:19
      The Israel-Palestine conflict: a brief, simple historyremove from playlist
    • How Palestinians were expelled from their homes
      16:26
      How Palestinians were expelled from their homesremove from playlist
    • Israeli government targets Australia over its support for Palestinian statehood
      3:20
      Israeli government targets Australia over its support for Palestinian statehoodremove from playlist
    • Palestinian bodybuilder released from Israeli detention in diminished state
      0:11
      Palestinian bodybuilder released from Israeli detention in diminished stateremove from playlist
    PLAYLIST TIME:

    New video of alleged hate crime attack on Palestinian couple at Panera

    Newly released videos have revealed additional details in the argument that led to hate crime charges against a woman accused of assaulting a Palestinian-American couple at a Panera Bread restaurant in Downers Grove.
    2:17
    New video of alleged hate crime attack on Palestinian couple at Panera
    Newly released videos have revealed additional details in the argument that led to hate cr...
    published: 06 Dec 2024
    Play in Full Screen
    0:19
    Indonesian pilot greets Palestinian passenger on plane
    An Indonesian pilot greeted a Palestinian passenger Mahmoud Abdel Al during a flight to sh...
    published: 21 Nov 2023
    Play in Full Screen
    0:35
    'I want to die' - a Palestinian child in Gaza says due to war
    “I wish we would die … I am tired of living because of the war” These are the words of a ...
    published: 09 May 2024
    Play in Full Screen
    0:54
    Norman Finkelstein: Israel Does Not Want To Fight Hand to Hand Combat with Hezbollah
    Patreon: https://bit.ly/3v8OhY7 Robinson’s Fashion Empire: http://bit.ly/3XBKqO2 Main Ch...
    published: 26 Oct 2024
    Play in Full Screen
    0:43
    Ben Shapiro EMBARESSES pro-Palestinian Oxford student #israel #gaza
    published: 02 Nov 2023
    Play in Full Screen
    3:03
    Shocking Video of Armed Palestinians Vs IDF in West Bank | Al-Qassam Brigade Behind Violent Clashes?
    In the early hours of Saturday, Palestinian resistance fighters clashed with Israeli Defen...
    published: 07 Dec 2024
    Play in Full Screen
    10:19
    The Israel-Palestine conflict: a brief, simple history
    The conflict is really only 100 years old. Subscribe to our channel! http://goo.gl/0bsAjO...
    published: 20 Jan 2016
    Play in Full Screen
    16:26
    How Palestinians were expelled from their homes
    The Palestinian catastrophe, explained. Subscribe and turn on notifications 🔔 so you don...
    published: 15 May 2023
    Play in Full Screen
    3:20
    Israeli government targets Australia over its support for Palestinian statehood
    A synagogue attack in Melbourne became a major news story in Israel and, in a rare press c...
    published: 06 Dec 2024
    Play in Full Screen
    0:11
    Palestinian bodybuilder released from Israeli detention in diminished state
    Palestinian bodybuilder Moazaz Obaiat has been released by Israeli authorities in a striki...
    published: 10 Jul 2024
    Play in Full Screen

    Palestinian

    Palestinian is typically referring to a person belonging to the Palestinian people, an Arab nationalist group defined in the Palestinian National Charter of 1968, also referred to as Palestinians (Arabic: الفلسطينيون, al-Filasṭīniyyūn).

    It may also refer to:

  • Palestinian Muslims, members of the major religion in the State of Palestine
  • Palestinian Christians, an ethnoreligious group native to the area of Palestine, in the Levant
  • Palestinians in Jordan
  • Palestinian American
  • Palestinian diaspora
  • Palestinian refugee
  • State of Palestine, a state in the Middle East
  • Palestinian territories
  • Palestine region
  • Mandatory Palestine, a British Mandate established from 1920 - 1948
  • All-Palestine Government, the administration in Gaza from 1948 - 1959
  • Palestinian Central Council, a policy decision arm of the Palestinian Liberation Organization (PLO)
  • Palestine Liberation Organization (PLO), an organization founded in 1964 to liberate Palestine
  • Palestinian National Authority, an interim self-government body administering the Gaza strip from 1994 - 2013
  • '); } 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: palestinian

    Edit

    Israel Palestinians

    Magic Valley 01 Apr 2025
    Palestinians displaced by the Israeli air and ground offensive on the Gaza Strip sit in a makeshift tent camp March 21 inside a landfill in central Gaza Strip ... .
    Edit

    APTOPIX Israel Palestinians Gaza

    Magic Valley 01 Apr 2025
    Palestinians wait to get donated food at a distribution center March 16 in Beit Lahiya, northern Gaza Strip ... .
    Edit

    Palestinians flee Rafah after new displacement order

    Virtual Jerusalem 01 Apr 2025
    Israel has displaced Palestinians again with a new order to evacuate Rafah in southern Gaza.| Read More Al JazeeraBreaking News, World News and Video from Al Jazeera ....
    Edit

    Medical Sources: Bodies of Palestinian Red Crescent Paramedics Killed by Israel Were Bound and Buried ...

    PNN 01 Apr 2025
    The Palestinian Red Crescent Society (PRCS) earlier confirmed the recovery of 14 bodies, including eight of its paramedics, five rescue workers, and a staff member of a UN agency.
    Edit

    Minnesota Student Detained by ICE Was Not an Activist, Lawsuit Says

    New York Times 01 Apr 2025
    Lawyers and experts say the arrest last week of a University of Minnesota graduate student may signal a new front in the Trump administration’s approach to immigration ... .
    Edit

    An iftar for all: Israelis, Palestinians come together in shared hope for peace

    Virtual Jerusalem 31 Mar 2025
    What took place on this day was not just an ordinary iftar but a courageous step toward a future defined by dialogue instead of violence, and cooperation instead of hostility.|�Read More�JPost.com – Opinion ....
    Edit

    Israeli strikes continue in Gaza as Palestinians mark end of Ramadan

    Review Journal 31 Mar 2025
    Israeli strikes Sunday morning killed at least 16 people, according to Nasser Hospital in the southern city of Khan Younis, as Palestinians in Gaza marked the usually festive Eid al-Fitr ....
    Edit

    Palestinian Medical Worker Shot Purposely in Knee and Tortured by IDF Psychopaths

    Bitchute 31 Mar 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    Scores of Palestinians killed, injured in Israeli strikes on Gaza

    Urdu Point 31 Mar 2025
    <p>GAZA, (UrduPoint / Pakistan Point News / WAM - 31st Mar, 2025) On the first day of Eid al-Fitr, several civilians were killed and others were injured in a series of Israeli strikes ...
    Edit

    Israel kills 33 Palestinians in Gaza on Eid day

    Yeni Ṣafak 31 Mar 2025
    Airstrikes hit homes, a tent shelter, and civilian vehicles in Khan Younis, Gaza City, and Jabalia .
    Edit

    Palestinian Red Crescent recovers 14 bodies after Israeli strike in southern Gaza

    Yeni Ṣafak 31 Mar 2025
    8 medics, 5 civil defense workers, and UN employee among dead as rescue efforts persist .
    ×