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

Podcasts:

  • History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE

    History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE . Documentary united Arab emirates simplified brief. Support these videos on Patreon! :D https://www.patreon.com/Epimetheus1776 History of Bahrain, history of Kuwait, history of the Persian gulf, history of Oman, history of Qatar, history, documentary, history of the UAE, united Arab emirates, united Arab emirates documentary, Bahrain, Kuwait, Persian gulf, Oman, Qatar, Saudi Arabia, history of the Persian gulf explained, united arab emirates history, crash course arabia, Persian gulf history, history channel documentary, documentary UAE, documentary Kuwait, documentary Oman, documentary Qatar,british persian gulf, british east india company,

    published: 09 Jul 2018
  • Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoil

    Persian Gulf has an area of about 93,000 square miles (241,000 square kilometers). It stretches some 615 miles (990 kilometers) in length. It is as narrow as 35 miles (55 kilometers) at the Strait of Hormuz and as wide as 210 miles (340 kilometers) elsewhere. It is bordered on the north, northeast, and east by Iran; on the southeast and south by part of Oman and by the United Arab Emirates; on the southwest and west by Qatar, Bahrain, and Saudi Arabia; and on the northwest by Kuwait and Iraq. The term Persian Gulf (or Arabian Gulf, the name used by Arabs) sometimes is employed to refer not only to the Persian Gulf proper but also to its outlets, the Strait of Hormuz and the Gulf of Oman, which open into the Arabian Sea. This discussion, however, focuses primarily on the Persian Gulf proper...

    published: 10 May 2024
  • Do Countries Say "Persian Gulf" Or "Arabian Gulf" #shorts #map #world #persian #arabian #gulf

    #shorts #map #mapping #world #geography #persiangulf #arabian #gulf #name #countries #people #politics #educationalpurpose This Video Is For Educational Purpose!!! TikTok: https://www.tiktok.com/@murfismurfimapping96 Instagram: https://www.instagram.com/murfismurfimapping96

    published: 29 Jan 2025
  • Persian Gulf - How Big Is The Persian Gulf Actually?

    Persian Gulf, A Marginal Sea Of The Indian Ocean, Located In Southwestern Asia, Separating The Arabian Peninsula From Iran. Covering A Total Surface Area Of 241,000 Square Kilometers. The Persian Gulf Has A Length Of Nearly 990 Km, While It's Width Varies From 340 To 55 Km. It Is Connected To The Indian Ocean And The Arabian Sea Through The Strait Of Hormuz And The Sea Of Oman. Persian Gulf Is Bordered By Iran, Oman, Iraq, Saudi Arabia, Kuwait, The United Arab Emirates, Qatar And Bahrain. Major Cities Such As Abu Dhabi ,Doha ,Dubai ,Kuwait City ,Manama ,Bandar Abbas ,And Khobar City Are Located On The Coasts Of The Persian Gulf. The Area Surrounding The Persian Gulf Has Approximately Two-Thirds Of The World's Estimated Proven Oil Reserves And One-Third Of The World’s Estimated Prove...

    published: 12 Oct 2022
  • The Persian Gulf War: Explained & Deconstructed

    In 1990, Saddam Hussein's Iraq invaded its neighbor, Kuwait. Several months later an American-led military coalition waged a brief war to reverse the invasion. Though greatly overshadowed by subsequent events, especially the 2003 Iraq War, the 1990-91 Persian Gulf War remains a pivot point of recent world history. In this video, we'll go very deep to explain the context, background, causes, political issues, and aftermath of this highly important conflict, and why it still matters. My Book, The 50 Most Important Things in History: https://www.amazon.com/dp/B0C6YRTMXF My website: https://www.seanmunger.com My Ko-fi: https://Ko-fi.com/seanmunger My blog: https://gardenofmemory.net/ Major sources for this video: The Gulf War Reader by Micah L. Sifry & Christopher Cirf (New York: Times Books...

    published: 18 Aug 2023
  • The Gulf War Explained

    Go to https://www.buyraycon.com/mrbeat for 15% off your order! Brought to you by Raycon. Mr. Beat explains the Persian Gulf War, aka The Gulf War. Produced by Matt Beat. All images and video by Matt Beat, used under fair use guidelines, or found in the public domain. Music by Dyalla and King Canyon. Here's an annotated script with footnotes: https://docs.google.com/document/d/1hDIwKk-bxy-WvTLAithAspJyYqFW1r940dNbpaqj2-w/edit?usp=sharing Sources/further reading: Simons, Geoff (2004). Iraq: from Sumer to post-Saddam (3rd edition). Palgrave Macmillan. Purchase here: https://amzn.to/3vuHl4H Kennedy, David M. (2015). The American Pageant. (16th edition). Cengage Learning. https://www.pbs.org/newshour/politics/1991-gulf-war-looms-large-over-bushs-mideast-legacy https://www.history.navy.mi...

    published: 13 Jan 2023
  • Persian Gulf Or Arabian Gulf? Politicians Play The Name Game

    There's no shortage of flash points in the Middle East. U.S. President Donald Trump recently exposed the gulf in that region over what to call the Gulf. Donald Trump’s use of one name instead of the other reignited a decades-long debate about what it should be called. “It harasses American ships and threatens freedom of navigation in the Arabian Gulf and in the Red Sea.” Iranians swamped Trump with 3.97 million responses on Instagram and Twitter over the perceived slight. And 3 days later, an exhibition ripping Trump for his comments opened in Tehran under the title "Persian Gulf Forever" So who’s right? *** For more explainers, graphics and videos, visit: https://www.rferl.org/Multimedia or follow us on Facebook https://www.facebook.com/rferl/ We report the news in 22 countries withou...

    published: 24 Dec 2017
  • The Persian Gulf: How To Win A War In 100 Hours

    In 1991 the Iraqi army was the fourth largest in the world. This made their defeat in 100 hours by the coalition forces even more humiliating. Superior equipment and resources allowed them to completely destroy Saddam Hussein's troops in Operation Desert Storm. War Stories is your one stop shop for all things military history. From Waterloo to Verdun, we'll be bringing you only the best documentaries and stories from history's most engaging and dramatic conflicts. Discover the past on History Hit, with ad-free exclusive podcasts and documentaries released weekly and presented by world-renowned historians Dan Snow, Suzannah Lipscomb, Matt Lewis and more. Get 50% off your first 3 months with code 'WARSTORIES': https://historyhit.com/subscription You can find more from us on: https://www....

    published: 24 Jul 2024
  • Persian gulf #handpan #nature #persiangulf #persiangirl

    published: 11 Apr 2025
  • Persian Gulf or Arabian Gulf? #iran #persia #persiangulf #youtubeshorts #lesson

    published: 10 Jan 2025
History of the Persian Gulf explained,  Bahrain, Kuwait, Qatar, Oman and the UAE
7:24

History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE

  • Order:
  • Duration: 7:24
  • Uploaded Date: 09 Jul 2018
  • views: 800592
History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE . Documentary united Arab emirates simplified brief. Support these videos on Patreon! :D https://www.patreon.com/Epimetheus1776 History of Bahrain, history of Kuwait, history of the Persian gulf, history of Oman, history of Qatar, history, documentary, history of the UAE, united Arab emirates, united Arab emirates documentary, Bahrain, Kuwait, Persian gulf, Oman, Qatar, Saudi Arabia, history of the Persian gulf explained, united arab emirates history, crash course arabia, Persian gulf history, history channel documentary, documentary UAE, documentary Kuwait, documentary Oman, documentary Qatar,british persian gulf, british east india company,
https://wn.com/History_Of_The_Persian_Gulf_Explained,_Bahrain,_Kuwait,_Qatar,_Oman_And_The_Uae
Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoil
0:56

Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoil

  • Order:
  • Duration: 0:56
  • Uploaded Date: 10 May 2024
  • views: 2165
Persian Gulf has an area of about 93,000 square miles (241,000 square kilometers). It stretches some 615 miles (990 kilometers) in length. It is as narrow as 35 miles (55 kilometers) at the Strait of Hormuz and as wide as 210 miles (340 kilometers) elsewhere. It is bordered on the north, northeast, and east by Iran; on the southeast and south by part of Oman and by the United Arab Emirates; on the southwest and west by Qatar, Bahrain, and Saudi Arabia; and on the northwest by Kuwait and Iraq. The term Persian Gulf (or Arabian Gulf, the name used by Arabs) sometimes is employed to refer not only to the Persian Gulf proper but also to its outlets, the Strait of Hormuz and the Gulf of Oman, which open into the Arabian Sea. This discussion, however, focuses primarily on the Persian Gulf proper. #persiangulf #persiangulfwar #persiangulfwarexplained #persiangulfwarfootage #persiangulfmap #persiangulforarabiangulf #persiangulfwarcrashcourse #persiangulfdcs #persiangulfproleague #persiangulfstudiescenter #persiangulfsea #persiangulfwarnewscoverage #persiangulfgardenofeden #persiangulfwarmusic #persiangulfwaroversimplified #persiangulfand #persiangulfinferno #persiangulfcountriestrick #persiangulfhistory #persiangulfcountries
https://wn.com/Persian_Gulf_Key_Facts_About_Persian_Gulf_Region_Upsc_Persiangulf_Crudeoil
Do Countries Say "Persian Gulf" Or "Arabian Gulf" #shorts #map #world #persian #arabian #gulf
0:11

Do Countries Say "Persian Gulf" Or "Arabian Gulf" #shorts #map #world #persian #arabian #gulf

  • Order:
  • Duration: 0:11
  • Uploaded Date: 29 Jan 2025
  • views: 82567
#shorts #map #mapping #world #geography #persiangulf #arabian #gulf #name #countries #people #politics #educationalpurpose This Video Is For Educational Purpose!!! TikTok: https://www.tiktok.com/@murfismurfimapping96 Instagram: https://www.instagram.com/murfismurfimapping96
https://wn.com/Do_Countries_Say_Persian_Gulf_Or_Arabian_Gulf_Shorts_Map_World_Persian_Arabian_Gulf
Persian Gulf - How Big Is The Persian Gulf Actually?
1:49

Persian Gulf - How Big Is The Persian Gulf Actually?

  • Order:
  • Duration: 1:49
  • Uploaded Date: 12 Oct 2022
  • views: 2903
Persian Gulf, A Marginal Sea Of The Indian Ocean, Located In Southwestern Asia, Separating The Arabian Peninsula From Iran. Covering A Total Surface Area Of 241,000 Square Kilometers. The Persian Gulf Has A Length Of Nearly 990 Km, While It's Width Varies From 340 To 55 Km. It Is Connected To The Indian Ocean And The Arabian Sea Through The Strait Of Hormuz And The Sea Of Oman. Persian Gulf Is Bordered By Iran, Oman, Iraq, Saudi Arabia, Kuwait, The United Arab Emirates, Qatar And Bahrain. Major Cities Such As Abu Dhabi ,Doha ,Dubai ,Kuwait City ,Manama ,Bandar Abbas ,And Khobar City Are Located On The Coasts Of The Persian Gulf. The Area Surrounding The Persian Gulf Has Approximately Two-Thirds Of The World's Estimated Proven Oil Reserves And One-Third Of The World’s Estimated Proven Natural Gas Reserves. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ Divider by Chris Zabriskie http://chriszabriskie.com Creative Commons — Attribution 4.0 International — CC BY 4.0 Free Download / Stream: https://bit.ly/_divider Music promoted by Audio Library https://youtu.be/VCnmFBjTlX0 ––––––––––––––––––––––
https://wn.com/Persian_Gulf_How_Big_Is_The_Persian_Gulf_Actually
The Persian Gulf War: Explained & Deconstructed
2:31:59

The Persian Gulf War: Explained & Deconstructed

  • Order:
  • Duration: 2:31:59
  • Uploaded Date: 18 Aug 2023
  • views: 1090944
In 1990, Saddam Hussein's Iraq invaded its neighbor, Kuwait. Several months later an American-led military coalition waged a brief war to reverse the invasion. Though greatly overshadowed by subsequent events, especially the 2003 Iraq War, the 1990-91 Persian Gulf War remains a pivot point of recent world history. In this video, we'll go very deep to explain the context, background, causes, political issues, and aftermath of this highly important conflict, and why it still matters. My Book, The 50 Most Important Things in History: https://www.amazon.com/dp/B0C6YRTMXF My website: https://www.seanmunger.com My Ko-fi: https://Ko-fi.com/seanmunger My blog: https://gardenofmemory.net/ Major sources for this video: The Gulf War Reader by Micah L. Sifry & Christopher Cirf (New York: Times Books, 1991) Gulf War: The Complete History by Thomas Houlahan (New London, NH: Schrenker Military Pub., 1999) The Gulf War: Overreaction & Excessiveness by Hassan A. El-Najjar (Dalton, GA: Amazone Press, 2001) Destiny and Power: The American Odyssey of George Herbert Walker Bush (New York: Random House, 2015) House of Bush, House of Saud by Craig Unger (New York: Scribner, 2004) Third Graders at War by Felix G. (Dog Ear Publishing, LLC, 2011) Miscellaneous documents from the George H.W. Bush Presidential Library & Museum (especially documents related to global warming): https://bush41library.tamu.edu/ Extensive bibliography of sources on the Persian Gulf War, compiled by a noted historian: https://edmoise.sites.clemson.edu/iraqbib.html#first Chapters: 00:00-11:17: The Invasion (& Introduction) 11:17-26:28: Background I - The Middle East 26:28-40:27: Background II - Saddam 40:27-52:13: Background III - Bush 52:13-1:00:01: The Big Picture 1:00:01-1:06:47: The Occupation of Kuwait 1:06:47-1:15:08: The Diplomatic Game 1:15:08-1:27:19: Politics 1:27:19-1:39:14: The War 1:39:14-1:45:40: The Spin 1:45:40-1:57:00: Aftermath I - Saddam on the Ropes 1:57:00-2:08:26: Aftermath II - The Environment 2:08:26-2:15:56: Aftermath III - The Political Tail 2:15:56-2:21:32: An Ominous Follow-Up 2:21:32-2:28:25: What Happened to Everyone 2:28:25-2:31:59: Conclusion
https://wn.com/The_Persian_Gulf_War_Explained_Deconstructed
The Gulf War Explained
16:42

The Gulf War Explained

  • Order:
  • Duration: 16:42
  • Uploaded Date: 13 Jan 2023
  • views: 945395
Go to https://www.buyraycon.com/mrbeat for 15% off your order! Brought to you by Raycon. Mr. Beat explains the Persian Gulf War, aka The Gulf War. Produced by Matt Beat. All images and video by Matt Beat, used under fair use guidelines, or found in the public domain. Music by Dyalla and King Canyon. Here's an annotated script with footnotes: https://docs.google.com/document/d/1hDIwKk-bxy-WvTLAithAspJyYqFW1r940dNbpaqj2-w/edit?usp=sharing Sources/further reading: Simons, Geoff (2004). Iraq: from Sumer to post-Saddam (3rd edition). Palgrave Macmillan. Purchase here: https://amzn.to/3vuHl4H Kennedy, David M. (2015). The American Pageant. (16th edition). Cengage Learning. https://www.pbs.org/newshour/politics/1991-gulf-war-looms-large-over-bushs-mideast-legacy https://www.history.navy.mil/our-collections/art/exhibits/conflicts-and-operations/the-gulf-war-1990-1991--operation-desert-shield--desert-storm-.html Join this channel to get access to perks: https://www.youtube.com/channel/UCmYesELO6axBrCuSpf7S9DQ/join For business inquiries or to send snail mail to Mr. Beat: https://www.iammrbeat.com/contact.html https://www.youtube.com/c/iammrbeat/about Connect with me: https://linktr.ee/iammrbeat Mr. Beat’s website: https://www.iammrbeat.com/ Mr. Beat’s second channel: https://www.youtube.com/c/TheBeatGoesOn1981 Mr. Beat's band: https://electricneedleroom.us/ How to support Mr. Beat: 💰Donate to Mr. Beat for great perks on Patreon: https://www.patreon.com/iammrbeat 🤑Donate to Mr. Beat on Paypal: https://www.paypal.me/mrbeat ☕Buy Mr. Beat a coffee: https://ko-fi.com/iammrbeat “Free” ways to show support: ✔️Subscribe to my channel ⏰Turn on notifications 👍Like, share, and comment on my videos Buy Mr. Beat merch: https://matt-beat-shop.fourthwall.com/ https://www.bonfire.com/store/mr-beat/ https://sfsf.shop/support-mrbeat/ Buy Mr. Beat's book: https://amzn.to/386g7cz Amazon Storefront: https://www.amazon.com/shop/mr.beat #gulfwar #ushistory #apush The Gulf War was lopsided. Just 292 coalition soldiers died in this war, compared to as many as 50,000 Iraqi soldiers killed. Most Americans were happy about the quick and decisive victory, and George H.W. Bush’s approval rating skyrocketed to around 89%, the highest approval rating for an American President recorded in history up to that point. Many coalition soldiers came home with lingering sickness with common symptoms like chronic fatigue, fibromyalgia, and serious stomach issues. In fact, this sickness was so common it became known as “Gulf War syndrome.” Historians still debate what caused this sickness, but one recent study found a strong link to exposure to the nerve agent sarin. There were other unintended consequences of the Gulf War. Because the embargo against Iraq for invading Kuwait was never lifted by the United Nations after the war was over, millions of ordinary Iraqis suffered. Poverty dramatically increased in Iraq over the next several years. Not only that, after the Gulf War the Shiite in the south of Iraq and Kurds in the north of Iraq both rebelled against Saddam’s regime. Well, Saddam responded to these rebellions with extreme brutality, and this brutality led to the United States and United Kingdom continuing to patrol skies over Iraq, setting up no-fly zones, which are basically areas where aircraft are not allowed to fly and if they do they may get shot down. After the United States accused Saddam of developing weapons of mass destruction and him refusing to let the United Nations look for them, the next President, Bill Clinton ultimately ordered Operation Desert Fox in December 1998. The American military dropped bombs on around 100 military sites around Iraq, killing or wounding as many as 1400 Iraqis. And then, of course, the much more controversial and devastating Iraq War, which the United States started after invading Iraq again, this time without support from the United Nations. While it DID ultimately lead to the overthrow and execution of Saddam Hussein, the war, and especially the occupation of the country by American forces afterward, did not go so well, especially compared to the Gulf War. And this ultimately led to what’s simply known as the War in Iraq later on, which many people don’t realize was just as devastating. Simply put, because of all these conflicts hundreds of thousands of civilians have died in Iraq since the Gulf War. Even today, Iraq is not a stable place, still recovering from decades of warfare. Now, we often treat the Gulf War as a blip, a short victory overshadowed by much bigger losses later on. In fact, while we SHOULD remember what went RIGHT during the Gulf War, we are more likely to remember what went WRONG after it. Chapters: 0:00 Intro 1:07 Causes of the Gulf War 4:12 What went down in the Gulf War? 7:47 Operation Desert Storm 11:10 Effects of the Gulf War 15:16 Raycon 16:18 Outro
https://wn.com/The_Gulf_War_Explained
Persian Gulf Or Arabian Gulf? Politicians Play The Name Game
2:06

Persian Gulf Or Arabian Gulf? Politicians Play The Name Game

  • Order:
  • Duration: 2:06
  • Uploaded Date: 24 Dec 2017
  • views: 29419
There's no shortage of flash points in the Middle East. U.S. President Donald Trump recently exposed the gulf in that region over what to call the Gulf. Donald Trump’s use of one name instead of the other reignited a decades-long debate about what it should be called. “It harasses American ships and threatens freedom of navigation in the Arabian Gulf and in the Red Sea.” Iranians swamped Trump with 3.97 million responses on Instagram and Twitter over the perceived slight. And 3 days later, an exhibition ripping Trump for his comments opened in Tehran under the title "Persian Gulf Forever" So who’s right? *** For more explainers, graphics and videos, visit: https://www.rferl.org/Multimedia or follow us on Facebook https://www.facebook.com/rferl/ We report the news in 22 countries without a free press. Our journalists are a unique source of information from the front lines. https://www.rferl.org/
https://wn.com/Persian_Gulf_Or_Arabian_Gulf_Politicians_Play_The_Name_Game
The Persian Gulf: How To Win A War In 100 Hours
48:01

The Persian Gulf: How To Win A War In 100 Hours

  • Order:
  • Duration: 48:01
  • Uploaded Date: 24 Jul 2024
  • views: 506073
In 1991 the Iraqi army was the fourth largest in the world. This made their defeat in 100 hours by the coalition forces even more humiliating. Superior equipment and resources allowed them to completely destroy Saddam Hussein's troops in Operation Desert Storm. War Stories is your one stop shop for all things military history. From Waterloo to Verdun, we'll be bringing you only the best documentaries and stories from history's most engaging and dramatic conflicts. Discover the past on History Hit, with ad-free exclusive podcasts and documentaries released weekly and presented by world-renowned historians Dan Snow, Suzannah Lipscomb, Matt Lewis and more. Get 50% off your first 3 months with code 'WARSTORIES': https://historyhit.com/subscription You can find more from us on: https://www.facebook.com/WarStoriesDocs This channel is part of the History Hit Network. For any queries, please contact owned-enquiries@littledotstudios.com. #warstories #documentary #military
https://wn.com/The_Persian_Gulf_How_To_Win_A_War_In_100_Hours
Persian gulf #handpan #nature #persiangulf #persiangirl
0:22

Persian gulf #handpan #nature #persiangulf #persiangirl

  • Order:
  • Duration: 0:22
  • Uploaded Date: 11 Apr 2025
  • views: 1066
https://wn.com/Persian_Gulf_Handpan_Nature_Persiangulf_Persiangirl
Persian Gulf or Arabian Gulf?     #iran #persia #persiangulf #youtubeshorts #lesson
0:23

Persian Gulf or Arabian Gulf? #iran #persia #persiangulf #youtubeshorts #lesson

  • Order:
  • Duration: 0:23
  • Uploaded Date: 10 Jan 2025
  • views: 1644
https://wn.com/Persian_Gulf_Or_Arabian_Gulf_Iran_Persia_Persiangulf_Youtubeshorts_Lesson
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • History of the Persian Gulf explained,  Bahrain, Kuwait, Qatar, Oman and the UAE
    7:24
    History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAEremove from playlist
  • Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoil
    0:56
    Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoilremove from playlist
  • Do Countries Say
    0:11
    Do Countries Say "Persian Gulf" Or "Arabian Gulf" #shorts #map #world #persian #arabian #gulfremove from playlist
  • Persian Gulf - How Big Is The Persian Gulf Actually?
    1:49
    Persian Gulf - How Big Is The Persian Gulf Actually?remove from playlist
  • The Persian Gulf War: Explained & Deconstructed
    2:31:59
    The Persian Gulf War: Explained & Deconstructedremove from playlist
  • The Gulf War Explained
    16:42
    The Gulf War Explainedremove from playlist
  • Persian Gulf Or Arabian Gulf? Politicians Play The Name Game
    2:06
    Persian Gulf Or Arabian Gulf? Politicians Play The Name Gameremove from playlist
  • The Persian Gulf: How To Win A War In 100 Hours
    48:01
    The Persian Gulf: How To Win A War In 100 Hoursremove from playlist
PLAYLIST TIME:

History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE

History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE . Documentary united Arab emirates simplified brief. Support these videos on Patreon! :D https://www.patreon.com/Epimetheus1776 History of Bahrain, history of Kuwait, history of the Persian gulf, history of Oman, history of Qatar, history, documentary, history of the UAE, united Arab emirates, united Arab emirates documentary, Bahrain, Kuwait, Persian gulf, Oman, Qatar, Saudi Arabia, history of the Persian gulf explained, united arab emirates history, crash course arabia, Persian gulf history, history channel documentary, documentary UAE, documentary Kuwait, documentary Oman, documentary Qatar,british persian gulf, british east india company,
7:24
History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE
History of the Persian Gulf explained, Bahrain, Kuwait, Qatar, Oman and the UAE . Documen...
published: 09 Jul 2018
Play in Full Screen
0:56
Persian Gulf: Key Facts about Persian Gulf Region #upsc #persiangulf #crudeoil
Persian Gulf has an area of about 93,000 square miles (241,000 square kilometers). It stre...
published: 10 May 2024
Play in Full Screen
0:11
Do Countries Say "Persian Gulf" Or "Arabian Gulf" #shorts #map #world #persian #arabian #gulf
#shorts #map #mapping #world #geography #persiangulf #arabian #gulf #name #countries #peop...
published: 29 Jan 2025
Play in Full Screen
1:49
Persian Gulf - How Big Is The Persian Gulf Actually?
Persian Gulf, A Marginal Sea Of The Indian Ocean, Located In Southwestern Asia, Separating...
published: 12 Oct 2022
Play in Full Screen
2:31:59
The Persian Gulf War: Explained & Deconstructed
In 1990, Saddam Hussein's Iraq invaded its neighbor, Kuwait. Several months later an Ameri...
published: 18 Aug 2023
Play in Full Screen
16:42
The Gulf War Explained
Go to https://www.buyraycon.com/mrbeat for 15% off your order! Brought to you by Raycon. ...
published: 13 Jan 2023
Play in Full Screen
2:06
Persian Gulf Or Arabian Gulf? Politicians Play The Name Game
There's no shortage of flash points in the Middle East. U.S. President Donald Trump recent...
published: 24 Dec 2017
Play in Full Screen
48:01
The Persian Gulf: How To Win A War In 100 Hours
In 1991 the Iraqi army was the fourth largest in the world. This made their defeat in 100 ...
published: 24 Jul 2024
Play in Full Screen
0:22
Persian gulf #handpan #nature #persiangulf #persiangirl
published: 11 Apr 2025
Play in Full Screen
0:23
Persian Gulf or Arabian Gulf? #iran #persia #persiangulf #youtubeshorts #lesson
published: 10 Jan 2025
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: Persian gulf

Edit

Trump to announce US recognition of ‘Arabian Gulf’ instead of ‘Persian Gulf’, officials reveal

Middle East Monitor 10 May 2025
US president Donald Trump reportedly plans to announce that Washington will now use the term ‘Arabian Gulf’ instead of ‘Persian Gulf’ for the name ...
Edit

HIS MAJESTY KING OF IRAN ON PERSIAN GULF

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

‘Nonsense’: Huckabee Shoots Down Report Trump to Endorse Palestinian Statehood

The Algemeiner 10 May 2025
i24 NewsUS Ambassador to Israel Mike Huckabee on Saturday dismissed as nonsensical the report that President Donald Trump would endorse Palestinian statehood during his tour to the Persian Gulf this week.
Edit

Trump heads to the Middle East with oil, trade and nuclear ambitions on the table

NBC Bay Area 10 May 2025
President Donald Trump will touch down in the Persian Gulf region – or as he may soon be calling it, the Arabian Gulf – on May 13, for an official trip with stops in Saudi Arabia, Qatar and the United Arab Emirates.
Edit

Trump faces Mideast tensions on return to his 'happy place'

Knoxville Daily Sun 10 May 2025
Iran has also reacted furiously after Trump said he was deciding whether to announce during the trip that he would change how the United States refers to the Gulf, from the Persian Gulf to the Gulf of Arabia.
Edit

Lines in the Sand and Sea: Some of the World's Contested Names and Regions

Newsweek 10 May 2025
From Trump's flirtation with renaming the Persian Gulf to the reignited conflict in Kashmir, these are some of the territorial disputes around the world ....
Edit

Arab countries hope for big US business amid war in Gaza

The Times of India 10 May 2025
According to US officials, Trump has pledged to start referring to the Persian Gulf — the body of water that separates the Gulf states and Saudi Arabia from the country its official name is associated ...
Edit

Iran’s FM visits Saudi Arabia, Qatar before nuclear talks with US in Oman

Al Jazeera 10 May 2025
list 2 of 3Trump says he’ll decide on name of ‘Persian Gulf’ on Middle East visit ... Report. end of list. Araqhchi’s Gulf tour on Saturday comes after Tehran confirmed the latest round Friday ... Advertisement ... Advertisement ... Iran’s Gulf outreach ... .
Edit

Qatar leads Syria search for bodies of US hostages killed by ISIL: Report

Al Jazeera 10 May 2025
list 3 of 3Trump says he’ll decide on name of ‘Persian Gulf’ on Middle East visit ... The Qatari mission is getting under way as US President Donald Trump prepares to visit Doha and other Gulf Arab ...
Edit

Trump’s Saudi Arabia trip raises hopes of US nuclear cooperation

The Siasat Daily 10 May 2025
Trump plans to announce US will call Persian Gulf Arabian Gulf ... Saudi Arabia and other Gulf states stress better relations and diplomacy with Iran now.
Edit

People left shocked after discovering how man-made islands are made | Daily Mail Online

The Daily Mail 10 May 2025
... the waves and currents of the Arabian Gulf ... One of the most famous buildings along the Persian Gulf, Burj Khalifa is the tallest building in the world today, standing a mighty 828 metres (2,716 feet).
Edit

Trump says he’ll decide what US will call Persian Gulf while in the Middle East

Las Vegas Review-Journal 09 May 2025
government will refer to the body of water now commonly known as the Persian Gulf when he visits Arab states next week ... “The Persian Gulf is not just a name but a historical reality,” he said in a social media post.
Edit

For Iranians, Trump's Proposal To Rename Persian Gulf Is Personal

Bahrain News 09 May 2025
In this edition, I examine how Iranians are rallying against a reported plan by ...
Edit

Persian Gulf: Our waters, our lands

Tehran Times 09 May 2025
The Persian Gulf, for example, is a vital waterway for global oil transport, an exotic ...
Edit

Persian Gulf is Iran's red line

Tehran Times 09 May 2025
TEHRAN - In a note, Jam-e-Jam addressed purported reports that Trump intends to use a fake name for the Persian Gulf ... .
×