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

Kurdish languages

Kurdish (کوردی, Kurdî) is a continuum of Northwestern Iranian languages spoken by the Kurds in Western Asia. Kurdish forms three dialect groups known as Northern Kurdish (Kurmanji), Central Kurdish (Sorani), and Southern Kurdish (Pehlewani). A separate group of languages, Zaza-Gorani, is also spoken by several million Kurds, but is linguistically not Kurdish. Recent (as of 2009) studies estimate between 20 and 30 million native speakers of Kurdish in total.

The literary output in Kurdish was mostly confined to poetry until the early 20th century, when more general literature began to be developed. Today, there are two principal written Kurdish dialects, namely Kurmanji in the northern parts of the geographical region of Kurdistan, and Sorani further east and south. The standard Sorani form of Central Kurdish is, along with Arabic, one of the two official languages of Iraq and is in political documents simply referred to as Kurdish.

Classification and origin

The Kurdish languages belong to the Iranian branch of the Indo-European family. They are generally classified as Northwestern Iranian languages, or by some scholars as intermediate between Northwestern and Southwestern Iranian.Martin van Bruinessen notes that "Kurdish has a strong south-western Iranian element", whereas "Zaza and Gurani [...] do belong to the north-west Iranian group".

Podcasts:

  • Female Kurdish sniper cheats death at hands of IS- BBC News

    A Kurdish YPJ (Women's Protection Unit) sniper was filmed reacting after a bullet fired by an Islamic State (IS) group opponent narrowly missed her head. The video was filmed in the IS "capital" of Raqqa as Kurdish and Syrian forces, backed by a US-led coalition, seek to force IS out. The young woman is filmed laughing and exclaiming after her brush with death. She then tells the men with her to stop filming, saying: "Enough, enough filming." Please subscribe HERE http://bit.ly/1rbfUog World In Pictures https://www.youtube.com/playlist?list=PLS3XGZxi7cBX37n4R0UGJN-TLiQOm7ZTP Big Hitters https://www.youtube.com/playlist?list=PLS3XGZxi7cBUME-LUrFkDwFmiEc3jwMXP Just Good News https://www.youtube.com/playlist?list=PLS3XGZxi7cBUsYo_P26cjihXLN-k3w246

    published: 28 Jun 2017
  • Why Isn't There A Kurdistan? (Short Animated Documentary)

    Kurdistan doesn't exist. At least not as an internationally recognised state. But why not? Given that there have been numerous opportunities for a Kurdish state to spring up, why didn't it happen? Why isn't there a Kurdistan? To find out watch this short and simple animated history documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Fox2012 Ethan Godden Robyn Kitchen Southside Mitch Hasmuffin John Azlow the Lion Andrew Partington Michael Kram Ryan Schindeler Franco La Bruna אורי פרקש So long, john kevinh Tino David Brown Scott P Aaron Conaway Chase Labiste Kevin Phoenix Ian Smith Dan Reiher Chr...

    published: 14 Jun 2021
  • Iraq - Kurdish resistance to Iran's regime | DW Documentary

    Small groups of Kurdish men and women from Iran are camped out in the mountains of Iraq. The exiles have joined armed resistance units and are determined to fight the Iranian regime. The documentary follows the fate of Kurds who have taken to the mountains over the Iraqi border after fleeing Iran. Some belong to the Kurdistan Democratic Party in Iran. Targeted by Iranian rocket and drone attacks, the armed groups hide out in secret camps. Iran’s high-tech surveillance systems also make it extremely difficult to stay in touch with their relatives back home. Some of the resistance fighters played a leading role in the protest movement sparked by the death of Jina Mahsa Amini. The young Kurdish woman died after being detained by Iran’s so-called morality police for allegedly breaching the cou...

    published: 16 Jan 2024
  • Eating Kurdish Food for a Day!

    The heart of a kurdish home is the kitchen. Today we try Kurdish food from Kurdistan, a country not yet recognised but has a population of 40 Million people.

    published: 28 Apr 2024
  • I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTAN

    ♥ FOLLOW ME ON INSTAGRAM: https://instagram.com/evazubeck for daily travel updates ♥ It's my second time in Iraqi Kurdistan, but the people and culture here continue to inspire me. In this vlog, I take you on a quick tour of the Qayseria Bazaar in Erbil (Hawler) to meet some of the awesome people who work here. This vlog is dedicated to the memory of Bakir, the flute player featured in this vlog, who passed away since I filmed it.

    published: 04 Dec 2019
  • This Country is Invisible!

    This Country is Invisible 😱 I am in iraq 🇮🇶 and I will be honest with you, I came here by bus and I arrived at 3:30 am and I was pretty scared. At the same time I didn’t know a lot about Kurdistan and the Kurdish people before coming here, and I am so in love with the Kurdish people right now! 🫶 It’s seriously unreal the level of hospitality, kindness, honesty and openness. I can’t believe that everything I heard before coming here were bad things about the Kurds 🤷🏼‍♂️, it shows that the world is blinded by politics imo And as I’m writing this I realize the iPhone does not have the Kurdish flag 👎🤌, we are talking about a nation of 40,000,000 or even more!. How wrong and crazy is that! Any how.. 💯 in love with iraqi Kurdistan. #kurdistan #kurds #kurdishpeople #akre #erbil #peshmara #ira...

    published: 23 Feb 2024
  • EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at them

    Subscribe to France 24 now : http://f24.my/youtubeEN FRANCE 24 live news stream: all the latest news 24/7 http://f24.my/YTliveEN For two years the strategic town of Shaddadi, in northeastern Syria, was a stronghold of the Islamic State (IS) group jihadists. In February, 5,000 fighters from the Syrian Democratic Forces (SDF), a coalition of Kurdish and Arab militias, encircled the city and battled the terrorists for 10 days. Visit our website : http://www.france24.com Subscribe to our YouTube channel : http://f24.my/youtubeEN Like us on Facebook : https://www.facebook.com/FRANCE24.English Follow us on Twitter : https://twitter.com/France24_en

    published: 25 Apr 2016
  • The Kurdish Story: 6,000 Years in the Making

    The Kurds are a people who inhabit the mountainous regions of southeastern Turkey, northwestern Iran, and northern Iraq. Kurds are believed to have originated in the Zagros Mountains in western Iran. The Kurdish people are ethnically and linguistically diverse, and their culture is rich and varied. The first written record of the Kurds is from the 6th century BC. At that time, the Kurds lived in the Zagros Mountains and adjacent areas. The Assyrians, who lived in the Tigris-Euphrates valley, invaded the Zagros region in the 7th century BC, and the Kurds were forced to migrate to the plains. #kurds #kurdistan #syria

    published: 21 Jul 2022
  • Which Country Do You HATE The Most? | IRAQI KURDISTAN

    Some of my videos get demonetized, so support me by being a Youtube Member here. SPECIAL ACCESS to SECRET GUS1THEGO POSTS ❤️ https://www.youtube.com/channel/UCox0J-pkaXUkAbU3JdZhadg/join My Patreon (Exclusive Content): https://patreon.com/gus1thego THE BEST COPYRIGHT FREE YOUTUBE MUSIC BELOW 👇🎵 WANT TO GET THE BEST NO COPYRIGHT MUSIC FOR YOUTUBE LIKE ME?! 🎵 TRY OUT THIS MUSIC FROM EPIDEMIC SOUND (LINK BELOW) - https://share.epidemicsound.com/eashgi Partnership requests with gus1thego: gus1thego@outlook.com 🏨 Book Cheaper Hotels than on Hotels.com and Booking.com RIGHT HERE: https://gushotels.com/ SOCIAL MEDIA LINKS 🔗⬇️ Youtube: Gus1thego (402K Subs) Facebook: Gustav Rosted (450K) Tiktok: Gus1thego (410K) Instagram: @Gus1thego (185K) (Group Trips here!) Travel Blog: www.gus1th...

    published: 03 Jan 2022
  • No one… #afghanistan #iraq #kurdistan #syria #countries #flags

    published: 04 Apr 2023
Female Kurdish sniper cheats death at hands of IS- BBC News
0:33

Female Kurdish sniper cheats death at hands of IS- BBC News

  • Order:
  • Duration: 0:33
  • Uploaded Date: 28 Jun 2017
  • views: 9119901
A Kurdish YPJ (Women's Protection Unit) sniper was filmed reacting after a bullet fired by an Islamic State (IS) group opponent narrowly missed her head. The video was filmed in the IS "capital" of Raqqa as Kurdish and Syrian forces, backed by a US-led coalition, seek to force IS out. The young woman is filmed laughing and exclaiming after her brush with death. She then tells the men with her to stop filming, saying: "Enough, enough filming." Please subscribe HERE http://bit.ly/1rbfUog World In Pictures https://www.youtube.com/playlist?list=PLS3XGZxi7cBX37n4R0UGJN-TLiQOm7ZTP Big Hitters https://www.youtube.com/playlist?list=PLS3XGZxi7cBUME-LUrFkDwFmiEc3jwMXP Just Good News https://www.youtube.com/playlist?list=PLS3XGZxi7cBUsYo_P26cjihXLN-k3w246
https://wn.com/Female_Kurdish_Sniper_Cheats_Death_At_Hands_Of_Is_BBC_News
Why Isn't There A Kurdistan? (Short Animated Documentary)
3:32

Why Isn't There A Kurdistan? (Short Animated Documentary)

  • Order:
  • Duration: 3:32
  • Uploaded Date: 14 Jun 2021
  • views: 1861804
Kurdistan doesn't exist. At least not as an internationally recognised state. But why not? Given that there have been numerous opportunities for a Kurdish state to spring up, why didn't it happen? Why isn't there a Kurdistan? To find out watch this short and simple animated history documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Fox2012 Ethan Godden Robyn Kitchen Southside Mitch Hasmuffin John Azlow the Lion Andrew Partington Michael Kram Ryan Schindeler Franco La Bruna אורי פרקש So long, john kevinh Tino David Brown Scott P Aaron Conaway Chase Labiste Kevin Phoenix Ian Smith Dan Reiher Chris Weisel Brian Giordano anon Ian Jensen Leena Al-Souki Richard Wolfe Nicholas Menghini Mickey Landen James Nile Jeremy Arghhhhh sharpie660 Dragan Robert Brockway Curt Helmerich Dullis Alex G. Burt Clothier Ainar Garipov Dexter_McAaron Pat Stahl Alexander Washofsky Mantodea Andrew Niedbala Wolf Tyler Jenkins General Beauregard Lee Alex Kihurani zockotron Juan Castillo Paul Franche Phil and Lisa Toland Oliver Jenner Qi Xiao Andreas Mosand Porkmeister KNSTRKTVST Hedrin Adrian Marine Shawn Morse Victor Warmflash SirAlpaka Matthew Toles Jeremy Ryan Haber John Garcia Tat Tvam Asi Hexapuma Bernardo Santos Scott O'Donnell Joel Cromwell Heytun ScottishTrekkie Benjamin Bowring Nathan Snyder Joseph Reinsch Marty Myers Rod D. Martin Robert Mitchell Jane Sumpter Steven Gibson Roan Haggerty epic4 Clayton Schuman Cody Yarger BattleGoat Studios Justin Pratt Yuichiro Kakutani Tristan Kreller Käs Zach Rust Yick Chung Allen Rines Riley davidson Keith A. Layton Warren Rudkin Christopher Godfrey Joseph Kerckhoff Justin Pearson bas mensink Stefan Møller Keith Garvey Robert Woodward Franklin Sousa Magdalena Reinberg-Leibel Perry Gagne Matt Conger Mars Project Tim Lane Andrew F Thomas McGill Pierre Le Mouel Steven Mastronardo Alen Tim Stumbaugh Zachary Oertel Joooooshhhhhh Adam Rabung Mark Alexander Mednikov tfw robot Jackson Mehr Michael Myers Vance Christiaanse Mathew H. Daniel Bith Phil Simmons Joshua A Bishop Christian & Penny Gray David van Reyk Matthew Literovich Vincent Rose Joker 54 Andrew Patane Michael Galloway I'm Not In The Description Bartosz Zasada William Wold Raymond He Vilelmus_veliki Gregory Priebe Mark Littlehale John Orr Michael Wagner JAY ALAN EDELMAN Sean Long Coolin Castleman Hunter Quintero blaZzinG_FurY David Johnston Vegard Tønnessen Proxy Ciege Engine Chach Eddie Ellen Teapot D. Mahlik Anthony McCann Andrea Dekrout Matt Reed LambOfLeg Ryan Short Kinfe85 Jack Nelson Jeffrey Schneider James Bisonette Fan #1 Thomas Wang Bradley Backoff Alex Slepak Liam Gilleece Parth S David Silverman Haydn Noble Joseph Hutchins Matthew Hogan Matthew Trimborn Sahni ARandomPaperClip Matthew O'Connor Chrisaztec No way Baste Colm Boyle sam Clay Carroll Sean D. Sethars Tailsdoll Erik Hare Christian Vasquez Leon Dr. Howard Dr. Fine Dr. Howard Bryan Linsley Serius_Loyola Arthur Hosey Jr. Phillip Gathright Windischgraetz Colm Byrne James Anthony James Joerg Sch Mark Ploegstra Imperial Pony Nick Davies Gabriel Lunde Dakota Brunell Léon M. Melissa Prober Peter Marino Piotr Wojnowski HelloAgain Mathew Glen Gerald Armstrong SmythProductions Richard Manklow Andy Pottkotter Joshua Rackstraw Chris Winther Ron Johnson Harley Raptopoulos Mr Sandman mohd The bleeding edge James Fouts Cor Gar The Roger Luna David Patrick Bucko Peter A Titov Steve Bonds Andre Filliettaz Tactical_Jackal Colonel Oneill Christine Purvis Vilena5 Eugene Delacroix Abhijeeth William Adderholdt Konstantin Bredyuk Isabel Harrison Now Seibert Peter Konieczny Donald Weaver nullptr Dima Volodin Conrad Boylan Mirza Ahmed João Santos Seth Reeves Nathan Ngumi Richie abel Layne Nielsen Snowdon Wilhelm Screamer Danny Anstess Mik Scheper Fernando López Ojeda Ricardo Salcedo Luke Peterson Heraclius Alpha Erik Carlsson Erik Hall Gezza The Masked Reviewer Michael Coates Abdallah Al-Ammari Froilan Legaspi Luis Caetano Daniel O'Reilly Paul McGee Ben L Olaf George Gremo Laura Jeal Mike Cotgreave Jamie Service Rhys Little Friedrich Demmer James Ling zemnmez
https://wn.com/Why_Isn't_There_A_Kurdistan_(Short_Animated_Documentary)
Iraq - Kurdish resistance to Iran's regime | DW Documentary
28:26

Iraq - Kurdish resistance to Iran's regime | DW Documentary

  • Order:
  • Duration: 28:26
  • Uploaded Date: 16 Jan 2024
  • views: 574310
Small groups of Kurdish men and women from Iran are camped out in the mountains of Iraq. The exiles have joined armed resistance units and are determined to fight the Iranian regime. The documentary follows the fate of Kurds who have taken to the mountains over the Iraqi border after fleeing Iran. Some belong to the Kurdistan Democratic Party in Iran. Targeted by Iranian rocket and drone attacks, the armed groups hide out in secret camps. Iran’s high-tech surveillance systems also make it extremely difficult to stay in touch with their relatives back home. Some of the resistance fighters played a leading role in the protest movement sparked by the death of Jina Mahsa Amini. The young Kurdish woman died after being detained by Iran’s so-called morality police for allegedly breaching the country’s mandatory hijab laws for women. Last year, Tehran issued the Iraqi government in Baghdad with an ultimatum, setting them a deadline to disarm Kurdish opposition groups and relocate them from the border. But some refuse to leave. [Editor's Note: On 16 January 2024, Iran’s Revolutionary Guards claimed responsibility for a ballistic missile attack on the northern Iraqi city of Erbil. At least four people were killed in the strike. In a statement released later the Revolutionary Guards said they had carried out the attack on Israeli “spy headquarters”. Local authorities have condemned the strike and dismissed the claims as baseless. For more information visit: https://p.dw.com/p/4bHjt and https://www.dw.com/en/middle-east/s-14207 ] #documentary #dwdocumentary ______ DW Documentary gives you knowledge beyond the headlines. Watch top documentaries from German broadcasters and international production companies. Meet intriguing people, travel to distant lands, get a look behind the complexities of daily life and build a deeper understanding of current affairs and global events. Subscribe and explore the world around you with DW Documentary. Subscribe to: ⮞ DW Documentary (English): https://www.youtube.com/dwdocumentary ⮞ DW Documental (Spanish): https://www.youtube.com/dwdocumental ⮞ DW Documentary وثائقية دي دبليو (Arabic): https://www.youtube.com/dwdocarabia ⮞ DW Doku (German): https://www.youtube.com/dwdoku ⮞ DW Documentary हिन्दी (Hindi): https://www.youtube.com/dwdochindi For more visit: http://www.dw.com/en/tv/docfilm/s-3610 Follow DW Documentary on Instagram: https://www.instagram.com/dwdocumentary/ Follow DW Documental on Facebook: https://www.facebook.com/dwdocumental We kindly ask viewers to read and stick to the DW netiquette policy on our channel: https://p.dw.com/p/MF1G
https://wn.com/Iraq_Kurdish_Resistance_To_Iran's_Regime_|_Dw_Documentary
Eating Kurdish Food for a Day!
18:46

Eating Kurdish Food for a Day!

  • Order:
  • Duration: 18:46
  • Uploaded Date: 28 Apr 2024
  • views: 190304
The heart of a kurdish home is the kitchen. Today we try Kurdish food from Kurdistan, a country not yet recognised but has a population of 40 Million people.
https://wn.com/Eating_Kurdish_Food_For_A_Day
I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTAN
8:31

I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTAN

  • Order:
  • Duration: 8:31
  • Uploaded Date: 04 Dec 2019
  • views: 572390
♥ FOLLOW ME ON INSTAGRAM: https://instagram.com/evazubeck for daily travel updates ♥ It's my second time in Iraqi Kurdistan, but the people and culture here continue to inspire me. In this vlog, I take you on a quick tour of the Qayseria Bazaar in Erbil (Hawler) to meet some of the awesome people who work here. This vlog is dedicated to the memory of Bakir, the flute player featured in this vlog, who passed away since I filmed it.
https://wn.com/I_Was_Amazed,_Traveling_Solo_As_A_Woman_In_Erbil,_Iraqi_Kurdistan
This Country is Invisible!
1:00

This Country is Invisible!

  • Order:
  • Duration: 1:00
  • Uploaded Date: 23 Feb 2024
  • views: 606483
This Country is Invisible 😱 I am in iraq 🇮🇶 and I will be honest with you, I came here by bus and I arrived at 3:30 am and I was pretty scared. At the same time I didn’t know a lot about Kurdistan and the Kurdish people before coming here, and I am so in love with the Kurdish people right now! 🫶 It’s seriously unreal the level of hospitality, kindness, honesty and openness. I can’t believe that everything I heard before coming here were bad things about the Kurds 🤷🏼‍♂️, it shows that the world is blinded by politics imo And as I’m writing this I realize the iPhone does not have the Kurdish flag 👎🤌, we are talking about a nation of 40,000,000 or even more!. How wrong and crazy is that! Any how.. 💯 in love with iraqi Kurdistan. #kurdistan #kurds #kurdishpeople #akre #erbil #peshmara #iraq #loveiraq #lovekurdistan #facts #invisiblecountry ►Alan's Theory Merch: https://www.alanstheory.com ►Pimsleur Language Course 7 day FREE trial: https://imp.i271380.net/M9JJY ►SUPPORT Alan's Theory at https://www.patreon.com/alanstheory ►SUBSCRIBE: https://www.youtube.com/c/alanstheory Remember to use this link for a FREE trial of the Pimsleur course on any language you choose, with this you are also supporting this channel: https://imp.i271380.net/M9JJY _________________________________________ LINKS ►Patreon: https://www.patreon.com/alanstheory ►Subscribe: https://www.youtube.com/c/alanstheory ►Facebook: http://facebook.com/alanstheory ►Instagram: http://instagram.com/alans_theory ►Twitter: https://twitter.com/theoryalan ►TikTok: Alanstheory ----------------- MY GEAR: This is the gear I use for producing these videos:: - Camera Sony A7S2: https://amzn.to/2RQp2n4 - Lens Sony vario-tessar 16-70mm f4 https://amzn.to/2RPxlj8 - GoPro HERO 7 Black https://amzn.to/2Vl6pKf - Backpack AmazonBasics DSLR Camera and Laptop Backpack https://amzn.to/2VJOGet - Tripod Joby Gorillapod 5k https://amzn.to/3czmGRd - Memory Card SanDisk 128GB Extreme PRO UHS-I SDXC https://amzn.to/2xGttKi - Editing Software Premiere Pro https://amzn.to/2ROYqCS - Computer Apple MacBook Pro (16-inch, 16GB RAM, 512GB Storage) https://amzn.to/3bmjOXW - Usb-c to sd card reader https://amzn.to/2wPrnY0
https://wn.com/This_Country_Is_Invisible
EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at them
1:44

EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at them

  • Order:
  • Duration: 1:44
  • Uploaded Date: 25 Apr 2016
  • views: 24284866
Subscribe to France 24 now : http://f24.my/youtubeEN FRANCE 24 live news stream: all the latest news 24/7 http://f24.my/YTliveEN For two years the strategic town of Shaddadi, in northeastern Syria, was a stronghold of the Islamic State (IS) group jihadists. In February, 5,000 fighters from the Syrian Democratic Forces (SDF), a coalition of Kurdish and Arab militias, encircled the city and battled the terrorists for 10 days. Visit our website : http://www.france24.com Subscribe to our YouTube channel : http://f24.my/youtubeEN Like us on Facebook : https://www.facebook.com/FRANCE24.English Follow us on Twitter : https://twitter.com/France24_en
https://wn.com/Exclusive_Syria_Kurds_Destroy_A_Suicide_Bomber's_Truck_Filled_With_Explosives_Coming_At_Them
The Kurdish Story: 6,000 Years in the Making
11:10

The Kurdish Story: 6,000 Years in the Making

  • Order:
  • Duration: 11:10
  • Uploaded Date: 21 Jul 2022
  • views: 191517
The Kurds are a people who inhabit the mountainous regions of southeastern Turkey, northwestern Iran, and northern Iraq. Kurds are believed to have originated in the Zagros Mountains in western Iran. The Kurdish people are ethnically and linguistically diverse, and their culture is rich and varied. The first written record of the Kurds is from the 6th century BC. At that time, the Kurds lived in the Zagros Mountains and adjacent areas. The Assyrians, who lived in the Tigris-Euphrates valley, invaded the Zagros region in the 7th century BC, and the Kurds were forced to migrate to the plains. #kurds #kurdistan #syria
https://wn.com/The_Kurdish_Story_6,000_Years_In_The_Making
Which Country Do You HATE The Most? | IRAQI KURDISTAN
5:00

Which Country Do You HATE The Most? | IRAQI KURDISTAN

  • Order:
  • Duration: 5:00
  • Uploaded Date: 03 Jan 2022
  • views: 297085
Some of my videos get demonetized, so support me by being a Youtube Member here. SPECIAL ACCESS to SECRET GUS1THEGO POSTS ❤️ https://www.youtube.com/channel/UCox0J-pkaXUkAbU3JdZhadg/join My Patreon (Exclusive Content): https://patreon.com/gus1thego THE BEST COPYRIGHT FREE YOUTUBE MUSIC BELOW 👇🎵 WANT TO GET THE BEST NO COPYRIGHT MUSIC FOR YOUTUBE LIKE ME?! 🎵 TRY OUT THIS MUSIC FROM EPIDEMIC SOUND (LINK BELOW) - https://share.epidemicsound.com/eashgi Partnership requests with gus1thego: gus1thego@outlook.com 🏨 Book Cheaper Hotels than on Hotels.com and Booking.com RIGHT HERE: https://gushotels.com/ SOCIAL MEDIA LINKS 🔗⬇️ Youtube: Gus1thego (402K Subs) Facebook: Gustav Rosted (450K) Tiktok: Gus1thego (410K) Instagram: @Gus1thego (185K) (Group Trips here!) Travel Blog: www.gus1thego.com Remember To Subscribe to GUS1THEGO! ☕️ Buy Me A Coffee: https://www.buymeacoffee.com/gus1thego 👉 Be A Patron And Get Exclusive Content: https://patreon.com/gus1thego 🎵 MUSIC (No Copyright - Epidemic Sound): https://share.epidemicsound.com/eashgi With this link you get a 30-day free trial that you can cancel anytime. Add music to your content creations. Get full access to over 40,000 tracks & 90,000 sound effects. All rights are included and I love Epidemic Sound! Partnership requests with gus1thego: gus1thego@outlook.com My Patreon (Exclusive Content): https://patreon.com/gus1thego My Patreon (Exclusive Content): https://patreon.com/gus1thego My Top 10 Favorite Youtube Tools 🎵 MUSIC (No Copyright - Epidemic Sound) - https://share.epidemicsound.com/eashgi 📸 GoPro Black Hero 11 (20% discount): https://amzn.openinapp.co/GoPro11Hero... 💻 Apple MacBook Pro 16.2" Early 2023 (for editing): https://amzn.openinapp.co/uek38 🚁 DJI Mini Pro 3 Drone (249g) Best Travel Drone: https://amzn.openinapp.co/i9nyz 📽️ Insta 360 (X3 Ultimate Kit): https://amzn.to/3OQnVjV 🎤 DJI Mic (For The Best Sound For Interviews - Wireless): https://amzn.to/3EbEjXp ⚡️ Anker Powerbank 20.000mAh: https://amzn.to/45MeHw6 🕶️: Rayban Clubmaster RB3016: https://amzn.to/44nPmY1 🪈 Selfie Stick and Tripod (Go Pro & All Smartphones): https://amzn.to/3QTAwW8 🎒 My Osprey 40 Liters Transporter Travel Bag: https://amzn.to/3KVIYjX Partnership requests with gus1thego: gus1thego@outlook.com 🏨 Book Cheaper Hotels than on Hotels.com and Booking.com RIGHT HERE: https://gushotels.com/ SOCIAL MEDIA LINKS 🔗⬇️ Youtube: Gus1thego (310K Subs) Facebook: Gustav Rosted (320K) Tiktok: Gus1thego (110K) Instagram: @Gus1thego (38K) (Group Trips here!) Travel Blog: www.gus1thego.com Remember To Subscribe to GUS1THEGO! ☕️ Buy Me A Coffee: https://www.buymeacoffee.com/gus1thego 👉 Be A Patron And Get Exclusive Content: https://patreon.com/gus1thego 🎵 MUSIC (No Copyright - Epidemic Sound): https://share.epidemicsound.com/eashgi With this link you get a 30-day free trial that you can cancel anytime. Add music to your content creations. Get full access to over 40,000 tracks & 90,000 sound effects. All rights are included and I love Epidemic Sound! Partnership requests with gus1thego: gus1thego@outlook.com My Patreon (Exclusive Content): https://patreon.com/gus1thego
https://wn.com/Which_Country_Do_You_Hate_The_Most_|_Iraqi_Kurdistan
No one… #afghanistan #iraq #kurdistan #syria #countries #flags
0:20

No one… #afghanistan #iraq #kurdistan #syria #countries #flags

  • Order:
  • Duration: 0:20
  • Uploaded Date: 04 Apr 2023
  • views: 731699
https://wn.com/No_One…_Afghanistan_Iraq_Kurdistan_Syria_Countries_Flags
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Female Kurdish sniper cheats death at hands of IS- BBC News
    0:33
    Female Kurdish sniper cheats death at hands of IS- BBC Newsremove from playlist
  • Why Isn't There A Kurdistan? (Short Animated Documentary)
    3:32
    Why Isn't There A Kurdistan? (Short Animated Documentary)remove from playlist
  • Iraq - Kurdish resistance to Iran's regime | DW Documentary
    28:26
    Iraq - Kurdish resistance to Iran's regime | DW Documentaryremove from playlist
  • Eating Kurdish Food for a Day!
    18:46
    Eating Kurdish Food for a Day!remove from playlist
  • I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTAN
    8:31
    I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTANremove from playlist
  • This Country is Invisible!
    1:00
    This Country is Invisible!remove from playlist
  • EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at them
    1:44
    EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at themremove from playlist
  • The Kurdish Story: 6,000 Years in the Making
    11:10
    The Kurdish Story: 6,000 Years in the Makingremove from playlist
  • Which Country Do You HATE The Most? | IRAQI KURDISTAN
    5:00
    Which Country Do You HATE The Most? | IRAQI KURDISTANremove from playlist
PLAYLIST TIME:

Female Kurdish sniper cheats death at hands of IS- BBC News

A Kurdish YPJ (Women's Protection Unit) sniper was filmed reacting after a bullet fired by an Islamic State (IS) group opponent narrowly missed her head. The video was filmed in the IS "capital" of Raqqa as Kurdish and Syrian forces, backed by a US-led coalition, seek to force IS out. The young woman is filmed laughing and exclaiming after her brush with death. She then tells the men with her to stop filming, saying: "Enough, enough filming." Please subscribe HERE http://bit.ly/1rbfUog World In Pictures https://www.youtube.com/playlist?list=PLS3XGZxi7cBX37n4R0UGJN-TLiQOm7ZTP Big Hitters https://www.youtube.com/playlist?list=PLS3XGZxi7cBUME-LUrFkDwFmiEc3jwMXP Just Good News https://www.youtube.com/playlist?list=PLS3XGZxi7cBUsYo_P26cjihXLN-k3w246
0:33
Female Kurdish sniper cheats death at hands of IS- BBC News
A Kurdish YPJ (Women's Protection Unit) sniper was filmed reacting after a bullet fired by...
published: 28 Jun 2017
Play in Full Screen
3:32
Why Isn't There A Kurdistan? (Short Animated Documentary)
Kurdistan doesn't exist. At least not as an internationally recognised state. But why not?...
published: 14 Jun 2021
Play in Full Screen
28:26
Iraq - Kurdish resistance to Iran's regime | DW Documentary
Small groups of Kurdish men and women from Iran are camped out in the mountains of Iraq. T...
published: 16 Jan 2024
Play in Full Screen
18:46
Eating Kurdish Food for a Day!
The heart of a kurdish home is the kitchen. Today we try Kurdish food from Kurdistan, a co...
published: 28 Apr 2024
Play in Full Screen
8:31
I Was AMAZED, traveling SOLO as a woman in ERBIL, IRAQI KURDISTAN
♥ FOLLOW ME ON INSTAGRAM: https://instagram.com/evazubeck for daily travel updates ♥ It's...
published: 04 Dec 2019
Play in Full Screen
1:00
This Country is Invisible!
This Country is Invisible 😱 I am in iraq 🇮🇶 and I will be honest with you, I came here by ...
published: 23 Feb 2024
Play in Full Screen
1:44
EXCLUSIVE - Syria: Kurds destroy a suicide bomber's truck filled with explosives coming at them
Subscribe to France 24 now : http://f24.my/youtubeEN FRANCE 24 live news stream: all the ...
published: 25 Apr 2016
Play in Full Screen
11:10
The Kurdish Story: 6,000 Years in the Making
The Kurds are a people who inhabit the mountainous regions of southeastern Turkey, northwe...
published: 21 Jul 2022
Play in Full Screen
5:00
Which Country Do You HATE The Most? | IRAQI KURDISTAN
Some of my videos get demonetized, so support me by being a Youtube Member here. SPECIAL A...
published: 03 Jan 2022
Play in Full Screen
0:20
No one… #afghanistan #iraq #kurdistan #syria #countries #flags
published: 04 Apr 2023
Play in Full Screen
'); } 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: Kurdish

Edit

Politician at Centre of Kurdish-Turkish Peace Efforts Commemorated

Balkan Insight 05 May 2025
Tens of thousands of people gathered for the funeral of Sirri Sureyya Onder - a popular figure across the political spectrum in Turkey, renowned for his peace-making efforts ....
Edit

Pro-Kurdish MP and key peace negotiator Onder dies at 62

FBC News 04 May 2025
Sirri Sureyya Onder, a prominent pro-Kurdish party lawmaker and key ...
Edit

A Turkish politician at the center of efforts to end 40-year Kurdish conflict dies at 62

Frederick News-Post 04 May 2025
ISTANBUL — Sirri Sureyya Onder, a key figure in Turkey’s latest effort to end the four-decade Kurdish conflict, died Saturday. He was 62 ... .
Edit

Kurdish-Kurdish dialogue: Provisions contradicting agreement with Damascus

Enab Baladi 04 May 2025
The Kurdish-Kurdish dialogue conference, dubbed “Unity of Kurdish Position in Rojava ... The SDF was not a primary political party at the Kurdish-Kurdish dialogue conference; rather, it acted as a sponsor.
Edit

Erdogan Says Syrian Kurdish Demand for Autonomy Is ‘Nothing More Than a Dream’

Breitbart 02 May 2025
... control of Damascus was also unreceptive to Kurdish ambitions for independence.
Edit

Nobody wants another centralised regime in Syria, says Kurdish leader Salih Muslim Muhammad

The Hindu 01 May 2025
Salih Muslim Muhammad, Syria’s main Kurdish leader in an interview with The Hindu, spoke about the role of Turkey in the Kurdish question, the resurgence of the Islamic State (ISIS) and the Syrian Kurds’ ties with Israel ....
Edit

PKK claims Iraq attacks on Kurdish security forces

Arab News 01 May 2025
Updated 2 min 50 sec ago. AFP. May 01, 2025 17.04. .
Edit

Erdogan dismisses Kurdish calls for Syria decentralisation as a "dream"

Middle East Online 01 May 2025
ANKARA - Turkish President Tayyip Erdogan dismissed demands by Syrian Kurdish groups for Syria to adopt a decentralised system of government, saying these were "nothing more than a dream" and had no place in the neighbouring country.
Edit

Iraq drone attacks wound five Kurdish security personnel

The New Arab 30 Apr 2025
Five Iraqi Kurdish security personnel were wounded in two drone attacks in northern Iraq in less than 48 hours, authorities in the autonomous Kurdistan region said on Tuesday ... The Iraqi Kurdish authorities have close relations with Ankara ....
Edit

ARF Bureau Member Meets with Kurdish National Party Representative

Asbarez 29 Apr 2025
During the meeting the two emphasized the importance of Armenian-Kurdish relations, discussed the geopolitical situation in the region and their effects on both the Armenian and Kurdish people.
Edit

Three Kurdish Security Personnel Injured In Unknown Drone Attack In N. Iraq

MENA FN 29 Apr 2025
(MENAFN - Nam News Network) BAGHDAD, Apr 29 (NNN-NINA) – An unknown drone attack yesterday, wounded three members of the Peshmerga, the military of the Kurdistan Regional Government, in Iraq's ... .
Edit

Drone Attack Injures Three Kurdish Soldiers in Kurdistan Region

MENA FN 29 Apr 2025
(MENAFN) A mysterious drone attack on Monday injured three members of the Peshmerga, the armed forces of the Kurdistan Regional Government, in Iraq–s semi-autonomous Kurdistan Region, according to a ... .
Edit

Iraq drone attacks wound 5 Kurdish security personnel

Arab News 29 Apr 2025
Updated 2 min 21 sec ago. AFP. April 29, 2025 22.32. .
Edit

Future of Kurdish question

Daily Sabah 29 Apr 2025
The Middle East has been experiencing a huge transformation for the last decade. Since the eruption of the Arab insurgencies and revolutions, the cards in the region have been resh ....
×