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

Horn of Africa

The Horn of Africa (Somali: Geeska Afrika, Oromo: Gaaffaa Afriikaa, Amharic: የአፍሪካ ቀንድ?yäafrika qänd, Arabic: القرن الأفريقي al-qarn al-'afrīqī, Tigrinya: ቀርኒ ኣፍሪቃ?) (shortened to HOA; alternatively Somali Peninsula) is a peninsula in Northeast Africa. It juts hundreds of kilometers into the Arabian Sea and lies along the southern side of the Gulf of Aden. The area is the easternmost projection of the African continent. Referred to in ancient and medieval times as Bilad al Barbar ("Land of the Berbers"), the Horn of Africa denotes the region containing the countries of Djibouti, Eritrea, Ethiopia, and Somalia.

It covers approximately 2,000,000 km2 (770,000 sq mi) and is inhabited by roughly 115 million people (Ethiopia: 96.6 million, Somalia: 10.4 million, Eritrea: 6.4 million, and Djibouti: 0.81 million). Regional studies on the Horn of Africa are carried out, among others, in the fields of Ethiopian Studies as well as Somali Studies.

History

Prehistory

Shell middens 125,000 years old have been found in Eritrea, indicating the diet of early humans included seafood obtained by beachcombing.

Operation Enduring Freedom

Operation Enduring Freedom (OEF) is the official name used by the government of the United States of America to describe the Global War on Terrorism.

The Operation comprises several subordinate operations:

  • Operation Enduring Freedom – Afghanistan (OEF-A), lasted from October 2001 to 31 December 2014. Succeeded by Operation Freedom's Sentinel.
  • Operation Enduring Freedom – Philippines (OEF-P, formerly Operation Freedom Eagle)
  • Operation Enduring Freedom – Horn of Africa (OEF-HOA)
  • Operation Enduring Freedom – Pankisi Gorge
  • Operation Enduring Freedom – Trans Sahara (OEF-TS; see also Insurgency in the Maghreb)
  • Operation Enduring Freedom – Caribbean and Central America (OEF-CCA)
  • Operation Enduring Freedom – Kyrgyzstan
  • Etymology

    The U.S. government used the term "Operation Enduring Freedom - Afghanistan" to officially describe the War in Afghanistan, from the period between October 2001 and December 2014. Continued operations in Afghanistan by the United States' military forces, both non-combat and combat, now occur under the name Operation Freedom's Sentinel.

    Operation Enduring Freedom – Horn of Africa

    Operation Enduring Freedom – Horn of Africa (OEF-HOA) is the name of the military operation defined by the United States as combating militant Islamism and piracy in the Horn of Africa. It is one component of Operation Enduring Freedom (OEF), which includes eight African states stretching from the far northeast of the continent to the oil-rich Gulf of Guinea in the west. The other OEF mission in Africa is known as Operation Enduring Freedom – Trans Sahara (OEF-TS), which, until the creation of the new United States Africa Command, was run from the United States European Command.

    The Combined Joint Task Force – Horn of Africa (CJTF-HOA) is the primary (but not sole) military component assigned to accomplish the objectives of the mission. The naval component is the multinational Combined Task Force 150 (CTF-150) which operates under the direction of the United States Fifth Fleet. Both of these organizations have been historically part of United States Central Command. In February 2007, United States President George W. Bush announced the establishment of the United States Africa Command which took over all of the area of operations of CJTF-HOA in October 2008.

    Podcasts:

    • The Geography of the Horn of Africa

      The Horn of Africa, consisting of Ethiopia, Eritrea, Djibouti and Somalia is sticking out of eastern Africa and contains extreme examples of fertility and barrenness, summits and depths, and prosperity and despair. Join in on a journey across the breathtaking Ethiopian Highlands which tower over Africa, the extremely hostile Afar Triangle which lies at the wake of three tectonic plates, and along the barren Somali coast with its turbulent history and challenging natural geography. Chapters: 0:41 The Ethiopian Highlands 4:51 The Afar Triangle 8:25 Somalia If you want to see more videos like this one, be sure to subscribe! And if you want to support what I am doing, you can leave a small donation here: https://buymeacoffee.com/factspark Any support is greatly appreciated

      published: 05 Sep 2024
    • Africa Matters: Horn of Africa Tensions

      Somalia has expelled a senior Ethiopian diplomat, signalling worsening relations between the two neighbours. It's after Ethiopian Prime Minister Abiy Ahmed made a deal in January to develop a port in Somaliland. Concerns are rising that increasing tensions in the Horn of Africa could lead to conflict and impact global shipping. And in northern Kenya, a group of women has gained global recognition for their work in greening Mandera County. 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 Visit our website: http://trt.world

      published: 02 Nov 2024
    • The Horn of Africa

      Take a closer look at the human and physical geography of the Horn of Africa region

      published: 29 Jun 2018
    • Horn of Africa

      The cradle of humanity, the Horn of Africa is a mountainous peninsula comprising several countries, nestled between two continents at the mouth of the Indian Ocean at a crossroads that has been coveted for centuries.VIDEOGRAPHIC

      published: 23 Feb 2018
    • Strategic Geography: Horn of Africa

      The Horn of Africa faces obstacles to security and development in the form of terrorism, climate change and governance. At a time when Africa is attracting interest for long-term investment and international cooperation, how can leaders capture the opportunities to move the region forward? Interactive maps and data are used to examine geopolitical hotspots in their strategic context. · Hassan Ali Khaire, Prime Minister of Somalia · Achim Steiner, Administrator, United Nations Development Programme (UNDP), New York · Helle Thorning-Schmidt, Chief Executive Officer, Save the Children International, United Kingdom Moderated by · Khalid Koser, Executive Director, Global Community Engagement and Resilience Fund (GCERF), Switzerland http://www.weforum.org/

      published: 25 Jan 2018
    • Is the Horn of Africa facing a wider conflict? | Inside Story

      A conflict in Ethiopia is spilling over its borders and threatening to destabilise the Horn of Africa. Tigray's leaders say they are at war with Eritrea because its forces have got involved in the fighting in their region. And they've launched attacks on Eritrea's capital Asmara, despite its government denying involvement. Two rockets hit the city's main airport and a third targetted a state media building. Forces loyal to Tigray's ruling party have been fighting Ethiopian government troops for nearly two weeks. So, how will the fallout affect the region? And can the tension be contained? Thumbnail Proposed Description (Max 4 sentences) Presenter: Bernard Smith Guests Matt Bryden, strategic adviser at think tank Sahan Research Axel Bisschop, UNHCR representative in Sudan Martin Plaut, f...

      published: 15 Nov 2020
    • Why does the Horn of Africa matter?

      Europe wants to increase its presence in the Horn of Africa, moving away from just development to focusing on security issues. But it is being accused of engaging in a great power competition. So what is driving Europe’s renewed focus in the Horn of Africa and what is it hoping to achieve there? Guests: Alexander Rondos Former EU Special Representative for the Horn of Africa Michael Woldemariam Associate Professor at the University of Maryland Abdullahi Boru Halakhe Horn of Africa Analyst Roundtable is a discussion program with an edge. Broadcast out of London and presented by David Foster, it's about bringing people to the table, listening to every opinion, and analysing every point of view. From fierce debate to reflective thinking, Roundtable discussions offer a different perspect...

      published: 27 Oct 2022
    • Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africa

      Ethiopia's deal to lease a port in Somalia's breakaway region of Somaliland has infuriated the government in Mogadishu and prompted concern it will further destabilise the region. Under a memorandum of understanding signed on jan. 1, landlocked ethiopia would lease 20 km or 12 miles around somaliland's port of berbera for 50 years, in exchange for stakes in ethiopian state-run companies and possible recognition as an independent nation #somalia #ethiopia #wion About Channel: WION The World is One News examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim is to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are jou...

      published: 30 Jan 2024
    • The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyond

      In this seminar, Alexander Rondos will address the challenges facing the region and the Horn’s strategic importance Europe, the Gulf states and other actors. A key question is how these challenges can be converted into a joint effort that will allow for the integration of the Horn of Africa into a platform of security and economic cooperation? The diversity of geography, history, population, politics, and culture has made the Horn of Africa prone to conflict within its societies and between its countries. And it is those differences that have allowed outsiders to play proxy politics with the region. The core of this region, comprising the countries of Djibouti, Eritrea, Ethiopia, Sudan, South Sudan, and Somalia—with Kenya and Uganda very closely associated—has attracted once again in it...

      published: 19 Apr 2016
    • The drought crisis in the Horn of Africa

      Water is running out in parts of #Somalia and forcing more families already fleeing conflict out of homes. UNICEF and partners provide support but urgent action is needed to prevent loss of life across the #HornofAfrica and help communities build resilience against future shocks.

      published: 11 Mar 2022
    developed with YouTube
    The Geography of the Horn of Africa
    12:07

    The Geography of the Horn of Africa

    • Order:
    • Duration: 12:07
    • Uploaded Date: 05 Sep 2024
    • views: 280193
    The Horn of Africa, consisting of Ethiopia, Eritrea, Djibouti and Somalia is sticking out of eastern Africa and contains extreme examples of fertility and barrenness, summits and depths, and prosperity and despair. Join in on a journey across the breathtaking Ethiopian Highlands which tower over Africa, the extremely hostile Afar Triangle which lies at the wake of three tectonic plates, and along the barren Somali coast with its turbulent history and challenging natural geography. Chapters: 0:41 The Ethiopian Highlands 4:51 The Afar Triangle 8:25 Somalia If you want to see more videos like this one, be sure to subscribe! And if you want to support what I am doing, you can leave a small donation here: https://buymeacoffee.com/factspark Any support is greatly appreciated
    https://wn.com/The_Geography_Of_The_Horn_Of_Africa
    Africa Matters: Horn of Africa Tensions
    25:32

    Africa Matters: Horn of Africa Tensions

    • Order:
    • Duration: 25:32
    • Uploaded Date: 02 Nov 2024
    • views: 23712
    Somalia has expelled a senior Ethiopian diplomat, signalling worsening relations between the two neighbours. It's after Ethiopian Prime Minister Abiy Ahmed made a deal in January to develop a port in Somaliland. Concerns are rising that increasing tensions in the Horn of Africa could lead to conflict and impact global shipping. And in northern Kenya, a group of women has gained global recognition for their work in greening Mandera County. 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 Visit our website: http://trt.world
    https://wn.com/Africa_Matters_Horn_Of_Africa_Tensions
    The Horn of Africa
    3:46

    The Horn of Africa

    • Order:
    • Duration: 3:46
    • Uploaded Date: 29 Jun 2018
    • views: 56506
    Take a closer look at the human and physical geography of the Horn of Africa region
    https://wn.com/The_Horn_Of_Africa
    Horn of Africa
    2:03

    Horn of Africa

    • Order:
    • Duration: 2:03
    • Uploaded Date: 23 Feb 2018
    • views: 1177
    The cradle of humanity, the Horn of Africa is a mountainous peninsula comprising several countries, nestled between two continents at the mouth of the Indian Ocean at a crossroads that has been coveted for centuries.VIDEOGRAPHIC
    https://wn.com/Horn_Of_Africa
    Strategic Geography: Horn of Africa
    36:59

    Strategic Geography: Horn of Africa

    • Order:
    • Duration: 36:59
    • Uploaded Date: 25 Jan 2018
    • views: 107466
    The Horn of Africa faces obstacles to security and development in the form of terrorism, climate change and governance. At a time when Africa is attracting interest for long-term investment and international cooperation, how can leaders capture the opportunities to move the region forward? Interactive maps and data are used to examine geopolitical hotspots in their strategic context. · Hassan Ali Khaire, Prime Minister of Somalia · Achim Steiner, Administrator, United Nations Development Programme (UNDP), New York · Helle Thorning-Schmidt, Chief Executive Officer, Save the Children International, United Kingdom Moderated by · Khalid Koser, Executive Director, Global Community Engagement and Resilience Fund (GCERF), Switzerland http://www.weforum.org/
    https://wn.com/Strategic_Geography_Horn_Of_Africa
    Is the Horn of Africa facing a wider conflict? | Inside Story
    25:46

    Is the Horn of Africa facing a wider conflict? | Inside Story

    • Order:
    • Duration: 25:46
    • Uploaded Date: 15 Nov 2020
    • views: 111580
    A conflict in Ethiopia is spilling over its borders and threatening to destabilise the Horn of Africa. Tigray's leaders say they are at war with Eritrea because its forces have got involved in the fighting in their region. And they've launched attacks on Eritrea's capital Asmara, despite its government denying involvement. Two rockets hit the city's main airport and a third targetted a state media building. Forces loyal to Tigray's ruling party have been fighting Ethiopian government troops for nearly two weeks. So, how will the fallout affect the region? And can the tension be contained? Thumbnail Proposed Description (Max 4 sentences) Presenter: Bernard Smith Guests Matt Bryden, strategic adviser at think tank Sahan Research Axel Bisschop, UNHCR representative in Sudan Martin Plaut, fellow at the University of London and a specialist on the Horn of Africa - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: https://www.aljazeera.com/ #AlJazeeraEnglish #InsideStory #Ethiopia #Tigray
    https://wn.com/Is_The_Horn_Of_Africa_Facing_A_Wider_Conflict_|_Inside_Story
    Why does the Horn of Africa matter?
    25:38

    Why does the Horn of Africa matter?

    • Order:
    • Duration: 25:38
    • Uploaded Date: 27 Oct 2022
    • views: 18818
    Europe wants to increase its presence in the Horn of Africa, moving away from just development to focusing on security issues. But it is being accused of engaging in a great power competition. So what is driving Europe’s renewed focus in the Horn of Africa and what is it hoping to achieve there? Guests: Alexander Rondos Former EU Special Representative for the Horn of Africa Michael Woldemariam Associate Professor at the University of Maryland Abdullahi Boru Halakhe Horn of Africa Analyst Roundtable is a discussion program with an edge. Broadcast out of London and presented by David Foster, it's about bringing people to the table, listening to every opinion, and analysing every point of view. From fierce debate to reflective thinking, Roundtable discussions offer a different perspective on the issues that matter to you. Watch it every weekday at 15:30 GMT on TRT World. Subscribe: http://trt.world/Roundtable Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook Twitter: http://trt.world/twitter Instagram: http://trt.world/instagram Visit our website: http://trt.world
    https://wn.com/Why_Does_The_Horn_Of_Africa_Matter
    Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africa
    4:21

    Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africa

    • Order:
    • Duration: 4:21
    • Uploaded Date: 30 Jan 2024
    • views: 28976
    Ethiopia's deal to lease a port in Somalia's breakaway region of Somaliland has infuriated the government in Mogadishu and prompted concern it will further destabilise the region. Under a memorandum of understanding signed on jan. 1, landlocked ethiopia would lease 20 km or 12 miles around somaliland's port of berbera for 50 years, in exchange for stakes in ethiopian state-run companies and possible recognition as an independent nation #somalia #ethiopia #wion About Channel: WION The World is One News examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim is to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to world politics. People are tired of biased reportage and we stand for a globalized united world. So for us, the World is truly One. Please keep discussions on this channel clean and respectful and refrain from using racist or sexist slurs and personal insults. Subscribe to our channel at https://goo.gl/JfY3NI Check out our website: http://www.wionews.com Join our WhatsApp Channel: https://bit.ly/455YOQ0 Connect with us on our social media handles: Facebook: https://www.facebook.com/WIONews Twitter: https://twitter.com/WIONews Follow us on Google News for the latest updates Zee News:- https://bit.ly/2Ac5G60 Zee Business:- https://bit.ly/36vI2xa DNA India:- https://bit.ly/2ZDuLRY WION: https://bit.ly/3gnDb5J Zee News Apps: https://bit.ly/ZeeNewsApps
    https://wn.com/Ethiopia_Somalia_Quarrel_Could_Destabilise_Horn_Of_Africa_|_World_Of_Africa
    The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyond
    1:19:20

    The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyond

    • Order:
    • Duration: 1:19:20
    • Uploaded Date: 19 Apr 2016
    • views: 58382
    In this seminar, Alexander Rondos will address the challenges facing the region and the Horn’s strategic importance Europe, the Gulf states and other actors. A key question is how these challenges can be converted into a joint effort that will allow for the integration of the Horn of Africa into a platform of security and economic cooperation? The diversity of geography, history, population, politics, and culture has made the Horn of Africa prone to conflict within its societies and between its countries. And it is those differences that have allowed outsiders to play proxy politics with the region. The core of this region, comprising the countries of Djibouti, Eritrea, Ethiopia, Sudan, South Sudan, and Somalia—with Kenya and Uganda very closely associated—has attracted once again in its history the attention of greater powers. Several issues are affecting the Horn of Africa today: Terrorism, realignment of loyalties because of confrontation with the Muslim world, the security of trade through the Red Sea and the global migration crisis, to mention some. In geopolitical terms, the Horn is the fragile neighborhood of Europe’s very fractured southern neighborhood. Programme 14:00–15:30: Welcome by Jon Harald Sande Lie, Senior Research Fellow, NUPI Introduction of Alex Rondos by Jens-Petter Kjemperud, Ministry of Foreign Affairs Presentation by Alex Rondos Comments, NUPI Q & A Chair: Jon Harald Sande Lie, Senior Research Fellow, NUPI More information and sign-up: http://www.nupi.no/en/Events/2016/The-Horn-of-Africa-Its-strategic-importance-for-Europe-the-Gulf-States-and-beyond
    https://wn.com/The_Horn_Of_Africa_Its_Strategic_Importance_For_Europe,_The_Gulf_States_And_Beyond
    The drought crisis in the Horn of Africa
    1:08

    The drought crisis in the Horn of Africa

    • Order:
    • Duration: 1:08
    • Uploaded Date: 11 Mar 2022
    • views: 169
    Water is running out in parts of #Somalia and forcing more families already fleeing conflict out of homes. UNICEF and partners provide support but urgent action is needed to prevent loss of life across the #HornofAfrica and help communities build resilience against future shocks.
    https://wn.com/The_Drought_Crisis_In_The_Horn_Of_Africa
    • Operation Enduring Freedom-Afghanistan War (documentary)

      "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for the War in Afghanistan, together with a number of smaller military actions, under the umbrella of the Global "War on Terror" (GWOT). The operation was originally called "Operation Infinite Justice" (often misquoted as "Operation Ultimate Justice"), but as similar phrases have been used by adherents of several religions as an exclusive description of God, it is believed to have been changed to avoid offense to Muslims, who are the majority religion in Afghanistan U.S. President George W. Bush's remark that "this crusade, this war on terrorism, is going to take a while", which prompted widespread criticism from the Islamic world, may also have contributed to the renaming of the operation

      published: 20 Sep 2014
    • Bombing Afghanistan | Operation Enduring Freedom [Real Footage]

      Welcome to the CobraOneTwelve YouTube Channel. this channel produces short Music Cinematics on a regular basis along with short quick clips. -IMPORTANT NOTE- due to technical limitations beforehand, some CobraOneTwelve Videos had an unappealing 4:3 Video ratio, this has now been fixed. Video Description: On 7 October 2001, in response to the September 11 attacks, President George W. Bush announced that airstrikes targeting Al Qaeda and the Taliban had begun in Afghanistan. The F-14 Tomcat or affectionately called in this video "bombcat" was called in from the US Navy to support troops and wipe out enemy facilities. Song: Rock you like a hurricane By: Scorpions [https://www.youtube.com/watch?v=Ge3lXjKiWXQ] Footage: - https://www.youtube.com/watch?v=c7yLwJfHyEA [Video] - https://www.you...

      published: 30 Mar 2021
    • Operation Enduring Freedom (documentary)

      Operation Enduring Freedom (OEF) is the official name used by the government of the United States of America to describe the Global War on Terrorism. The Operation comprises several subordinate operations: Operation Enduring Freedom – Afghanistan (OEF-A), lasted from October 2001 to 31 December 2014. Succeeded by Operation Freedom's Sentinel. Operation Enduring Freedom – Philippines (OEF-P, formerly Operation Freedom Eagle) Operation Enduring Freedom – Horn of Africa (OEF-HOA) Operation Enduring Freedom – Pankisi Gorge Operation Enduring Freedom – Trans Sahara (OEF-TS; see also Insurgency in the Maghreb) Operation Enduring Freedom – Caribbean and Central America (OEF-CCA) Operation Enduring Freedom – Kyrgyzstan Credits: Gail McCabe

      published: 06 Feb 2016
    • Operation Enduring Freedom (Animated Map) - Fall of the Taliban 2001

      Sources: US Center for Military History https://history.army.mil/ Wright, Donald et al. (2010) A Different Kind of War Available at: https://www.armyupress.army.mil/Portals/7/combat-studies-institute/csi-books/DifferentKindofWar.pdf

      published: 13 Sep 2021
    • Operation Enduring Freedom Begins - 2001 | Today in History | 7 Oct 16

      On October 7, 2001, the current war in Afghanistan started as the United States and Britain launched air attacks against military targets and Osama bin Laden's training camps in the wake of the Sept. 11 attacks. This story can be licensed under story # 317810 on aparchive.com

      published: 07 Oct 2016
    • 2001 Invasion of Afghanistan | Animated History

      Support our channel and learn a new language by using our link to try Speakly today with a free seven-day trial and get a 60% discount on an annual subscription: https://speakly.app.link/thearmchairhistorian Armchair Historian Video Game: https://store.steampowered.com/app/1679290/Fire__Maneuver/ Support us on Patreon: https://www.patreon.com/armchairhistorian Sign up for Armchair History TV today! https://armchairhistory.tv/ Promo code: ARMCHAIRHISTORY for 50% OFF Merchandise available at https://store.armchairhistory.tv/ Check out the new Armchair History TV Mobile App too! https://apps.apple.com/us/app/armchair-history-tv/id1514643375 https://play.google.com/store/apps/details?id=tv.uscreen.armchairhistorytv Discord: https://discord.gg/thearmchairhistorian Twitter: https://twitter....

      published: 09 Jul 2023
    • Operation Enduring Freedom - Short Change Hero

      hi spent 10 hours on this, Used Videos: https://www.youtube.com/watch?v=tP-ysPz7tJ8 https://www.youtube.com/watch?v=6kY4Xygh9DQ&t=44s https://www.youtube.com/watch?v=l44FvQ3Uh5Q https://www.youtube.com/watch?v=sz41V30G4mU https://www.youtube.com/watch?v=h3oDv-5yqew https://www.youtube.com/watch?v=AbLuScRWUUk https://www.youtube.com/watch?v=DaZ5stbVAlk https://www.youtube.com/watch?v=sUqkEn79SyQ go watch em,

      published: 03 Jul 2023
    • Operation Enduring Freedom

      Operation Enduring Freedom was the official name used by the U.S. government for the Global War on Terrorism. On 7 October 2001, in response to the September 11 attacks, President George W. Bush announced that airstrikes targeting Al-Qaeda and the Taliban had begun in Afghanistan. Operation Enduring Freedom primarily refers to the War in Afghanistan, but it is also affiliated with counterterrorism operations in other countries, such as OEF-Philippines and OEF-Trans Sahara.

      published: 17 Aug 2021
    • Bin Laden's Hard Drives | How SEAL Team Took Down Osama bin Laden | Why Osama Bin Laden Attacked USA

      @Eradocs In this video we have discussed about the most tragic moment in history of earth "9/11". On this day a Saudi Billionaire name Osama Bin Laden made a terrorist attack by hijacking four American Flights. His vision was to destroy USA by naming it as JIHAD. Later US navy found and killed OSAMA BIN LADEN and they got something very mysterious that was his hundreds of giga bytes of data stored in hard drives hidden in his Abbottabad compound. The United States was on a manhunt for one of the terrorist leaders behind the 9/11 attacks, Osama Bin Laden. Check out how the SEAL team infiltrated his compound and took out the most wanted man in the world in today's epic new video. #usa #osamabinladen #terror #amry #afghanistan #911

      published: 19 Nov 2024
    • 2nd night of US airstrikes in Afghanistan - Operation Enduring Freedom - Protests in Pakistan

      October 8, 2001, 5:30pm CBS Evening News

      published: 02 Oct 2020
    developed with YouTube
    Operation Enduring Freedom-Afghanistan War (documentary)
    1:29:52

    Operation Enduring Freedom-Afghanistan War (documentary)

    • Order:
    • Duration: 1:29:52
    • Uploaded Date: 20 Sep 2014
    • views: 730764
    "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for the War in Afghanistan, together with a number of smaller military actions, under the umbrella of the Global "War on Terror" (GWOT). The operation was originally called "Operation Infinite Justice" (often misquoted as "Operation Ultimate Justice"), but as similar phrases have been used by adherents of several religions as an exclusive description of God, it is believed to have been changed to avoid offense to Muslims, who are the majority religion in Afghanistan U.S. President George W. Bush's remark that "this crusade, this war on terrorism, is going to take a while", which prompted widespread criticism from the Islamic world, may also have contributed to the renaming of the operation
    https://wn.com/Operation_Enduring_Freedom_Afghanistan_War_(Documentary)
    Bombing Afghanistan | Operation Enduring Freedom [Real Footage]
    4:18

    Bombing Afghanistan | Operation Enduring Freedom [Real Footage]

    • Order:
    • Duration: 4:18
    • Uploaded Date: 30 Mar 2021
    • views: 14148
    Welcome to the CobraOneTwelve YouTube Channel. this channel produces short Music Cinematics on a regular basis along with short quick clips. -IMPORTANT NOTE- due to technical limitations beforehand, some CobraOneTwelve Videos had an unappealing 4:3 Video ratio, this has now been fixed. Video Description: On 7 October 2001, in response to the September 11 attacks, President George W. Bush announced that airstrikes targeting Al Qaeda and the Taliban had begun in Afghanistan. The F-14 Tomcat or affectionately called in this video "bombcat" was called in from the US Navy to support troops and wipe out enemy facilities. Song: Rock you like a hurricane By: Scorpions [https://www.youtube.com/watch?v=Ge3lXjKiWXQ] Footage: - https://www.youtube.com/watch?v=c7yLwJfHyEA [Video] - https://www.youtube.com/watch?v=ETwCuhj1Dvs [Video] - https://www.youtube.com/watch?v=IBYGG9Vskgw [Video] - https://www.youtube.com/watch?v=Ecjqrpqz0hc&t=102s [Video] - https://www.youtube.com/channel/UC9M9Cyr9cZAbABr5ASZOhCA [Channel] -For educational purposes only-
    https://wn.com/Bombing_Afghanistan_|_Operation_Enduring_Freedom_Real_Footage
    Operation Enduring Freedom (documentary)
    22:04

    Operation Enduring Freedom (documentary)

    • Order:
    • Duration: 22:04
    • Uploaded Date: 06 Feb 2016
    • views: 41482
    Operation Enduring Freedom (OEF) is the official name used by the government of the United States of America to describe the Global War on Terrorism. The Operation comprises several subordinate operations: Operation Enduring Freedom – Afghanistan (OEF-A), lasted from October 2001 to 31 December 2014. Succeeded by Operation Freedom's Sentinel. Operation Enduring Freedom – Philippines (OEF-P, formerly Operation Freedom Eagle) Operation Enduring Freedom – Horn of Africa (OEF-HOA) Operation Enduring Freedom – Pankisi Gorge Operation Enduring Freedom – Trans Sahara (OEF-TS; see also Insurgency in the Maghreb) Operation Enduring Freedom – Caribbean and Central America (OEF-CCA) Operation Enduring Freedom – Kyrgyzstan Credits: Gail McCabe
    https://wn.com/Operation_Enduring_Freedom_(Documentary)
    Operation Enduring Freedom (Animated Map) -  Fall of the Taliban 2001
    6:21

    Operation Enduring Freedom (Animated Map) - Fall of the Taliban 2001

    • Order:
    • Duration: 6:21
    • Uploaded Date: 13 Sep 2021
    • views: 8244
    Sources: US Center for Military History https://history.army.mil/ Wright, Donald et al. (2010) A Different Kind of War Available at: https://www.armyupress.army.mil/Portals/7/combat-studies-institute/csi-books/DifferentKindofWar.pdf
    https://wn.com/Operation_Enduring_Freedom_(Animated_Map)_Fall_Of_The_Taliban_2001
    Operation Enduring Freedom Begins - 2001 | Today in History | 7 Oct 16
    5:23

    Operation Enduring Freedom Begins - 2001 | Today in History | 7 Oct 16

    • Order:
    • Duration: 5:23
    • Uploaded Date: 07 Oct 2016
    • views: 70400
    On October 7, 2001, the current war in Afghanistan started as the United States and Britain launched air attacks against military targets and Osama bin Laden's training camps in the wake of the Sept. 11 attacks. This story can be licensed under story # 317810 on aparchive.com
    https://wn.com/Operation_Enduring_Freedom_Begins_2001_|_Today_In_History_|_7_Oct_16
    2001 Invasion of Afghanistan | Animated History
    15:36

    2001 Invasion of Afghanistan | Animated History

    • Order:
    • Duration: 15:36
    • Uploaded Date: 09 Jul 2023
    • views: 950773
    Support our channel and learn a new language by using our link to try Speakly today with a free seven-day trial and get a 60% discount on an annual subscription: https://speakly.app.link/thearmchairhistorian Armchair Historian Video Game: https://store.steampowered.com/app/1679290/Fire__Maneuver/ Support us on Patreon: https://www.patreon.com/armchairhistorian Sign up for Armchair History TV today! https://armchairhistory.tv/ Promo code: ARMCHAIRHISTORY for 50% OFF Merchandise available at https://store.armchairhistory.tv/ Check out the new Armchair History TV Mobile App too! https://apps.apple.com/us/app/armchair-history-tv/id1514643375 https://play.google.com/store/apps/details?id=tv.uscreen.armchairhistorytv Discord: https://discord.gg/thearmchairhistorian Twitter: https://twitter.com/ArmchairHist Sources: Barry, Ben, Blood, Metal and Dust: How Victory Turned Into Defeat in Afghanistan and Iraq (United Kingdom: Bloomsbury Publishing, 2020). Herring, G. K., “THE WAR IN AFGHANISTAN: A STRATEGIC ANALYSIS.” Edited by Williamson Murray. NATIONAL SECURITY CHALLENGES FOR THE 21st CENTURY (Strategic Studies Institute, US Army War College, 2003), 161-186. http://www.jstor.org/stable/resrep12022.9. Jacobsen, Annie, Surprise, Kill, Vanish: The Secret History of CIA Paramilitary Armies, Operators, and Assassins (United States: Little, Brown, 2019). Malkasian, Carter, The American War in Afghanistan: A History. United States (Oxford University Press, 2021). Rashid, Ahmed, Descent Into Chaos: The United States and the Failure of Nation Building in Pakistan, Afghanistan, and Central Asia (United Kingdom: Penguin Publishing Group, 2008). Music: Armchair Historian Theme - Zach Heyde The Hive Mind Awakens - Christoffer Moe Ditlevsen Monarch of Fate - Christoffer Moe Ditlevsen Rise From the Shadows - Hampus Naeselius To War! - Jo Wandrini A Monsters Feeling - Hampus Naeselius Top Patrons: Jonathan Woody Nep Nep MatsMan Hilgy Avery Mullins Kure John R. Merlino Jr. CPTTanker Joe Christoph Wißmann Alden Simmons The Demon Lord
    https://wn.com/2001_Invasion_Of_Afghanistan_|_Animated_History
    Operation Enduring Freedom - Short Change Hero
    5:29

    Operation Enduring Freedom - Short Change Hero

    • Order:
    • Duration: 5:29
    • Uploaded Date: 03 Jul 2023
    • views: 47133
    hi spent 10 hours on this, Used Videos: https://www.youtube.com/watch?v=tP-ysPz7tJ8 https://www.youtube.com/watch?v=6kY4Xygh9DQ&t=44s https://www.youtube.com/watch?v=l44FvQ3Uh5Q https://www.youtube.com/watch?v=sz41V30G4mU https://www.youtube.com/watch?v=h3oDv-5yqew https://www.youtube.com/watch?v=AbLuScRWUUk https://www.youtube.com/watch?v=DaZ5stbVAlk https://www.youtube.com/watch?v=sUqkEn79SyQ go watch em,
    https://wn.com/Operation_Enduring_Freedom_Short_Change_Hero
    Operation Enduring Freedom
    1:20

    Operation Enduring Freedom

    • Order:
    • Duration: 1:20
    • Uploaded Date: 17 Aug 2021
    • views: 350
    Operation Enduring Freedom was the official name used by the U.S. government for the Global War on Terrorism. On 7 October 2001, in response to the September 11 attacks, President George W. Bush announced that airstrikes targeting Al-Qaeda and the Taliban had begun in Afghanistan. Operation Enduring Freedom primarily refers to the War in Afghanistan, but it is also affiliated with counterterrorism operations in other countries, such as OEF-Philippines and OEF-Trans Sahara.
    https://wn.com/Operation_Enduring_Freedom
    Bin Laden's Hard Drives | How SEAL Team Took Down Osama bin Laden | Why Osama Bin Laden Attacked USA
    17:55

    Bin Laden's Hard Drives | How SEAL Team Took Down Osama bin Laden | Why Osama Bin Laden Attacked USA

    • Order:
    • Duration: 17:55
    • Uploaded Date: 19 Nov 2024
    • views: 261
    @Eradocs In this video we have discussed about the most tragic moment in history of earth "9/11". On this day a Saudi Billionaire name Osama Bin Laden made a terrorist attack by hijacking four American Flights. His vision was to destroy USA by naming it as JIHAD. Later US navy found and killed OSAMA BIN LADEN and they got something very mysterious that was his hundreds of giga bytes of data stored in hard drives hidden in his Abbottabad compound. The United States was on a manhunt for one of the terrorist leaders behind the 9/11 attacks, Osama Bin Laden. Check out how the SEAL team infiltrated his compound and took out the most wanted man in the world in today's epic new video. #usa #osamabinladen #terror #amry #afghanistan #911
    https://wn.com/Bin_Laden's_Hard_Drives_|_How_Seal_Team_Took_Down_Osama_Bin_Laden_|_Why_Osama_Bin_Laden_Attacked_USA
    2nd night of US airstrikes in Afghanistan - Operation Enduring Freedom - Protests in Pakistan
    12:20

    2nd night of US airstrikes in Afghanistan - Operation Enduring Freedom - Protests in Pakistan

    • Order:
    • Duration: 12:20
    • Uploaded Date: 02 Oct 2020
    • views: 1609
    October 8, 2001, 5:30pm CBS Evening News
    https://wn.com/2Nd_Night_Of_US_Airstrikes_In_Afghanistan_Operation_Enduring_Freedom_Protests_In_Pakistan
    • Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩

      List of United States of America battles in the Operation Enduring Freedom - Horn of Africa, listed alphabetically with photos, images, and maps when possible. Every major battle, skirmish, or conflict in Operation Enduring Freedom - Horn of Africa involving the United States of America is included here, along with information like exactly where the battle took place. If you want to learn even more about these Operation Enduring Freedom - Horn of Africa battles that involved Operation Enduring Freedom - Horn of Africa you can click on the names of the battles for more information. Items here include everything from World War II to Attack on Pearl Harbor.This list answers the question, "What Operation Enduring Freedom - Horn of Africa battles was United States of America involved in?"...mo...

      published: 03 Aug 2021
    • Operation Enduring Freedom (documentary)

      Operation Enduring Freedom (OEF) is the official name used by the government of the United States of America to describe the Global War on Terrorism. The Operation comprises several subordinate operations: Operation Enduring Freedom – Afghanistan (OEF-A), lasted from October 2001 to 31 December 2014. Succeeded by Operation Freedom's Sentinel. Operation Enduring Freedom – Philippines (OEF-P, formerly Operation Freedom Eagle) Operation Enduring Freedom – Horn of Africa (OEF-HOA) Operation Enduring Freedom – Pankisi Gorge Operation Enduring Freedom – Trans Sahara (OEF-TS; see also Insurgency in the Maghreb) Operation Enduring Freedom – Caribbean and Central America (OEF-CCA) Operation Enduring Freedom – Kyrgyzstan Credits: Gail McCabe

      published: 06 Feb 2016
    • operation ocean shield|NATO|horn of africa|technological videos

      please subscribe please like see my old videos This operation is a part of operation enduring freedom-horn of Africa

      published: 24 Jul 2022
    • Operation Enduring Freedom - HOA (pt. 1)

      Part 1 of 3. D Co 1-102D INF RGT (MTN) Operation Enduring Freedom - Horn of Africa

      published: 22 May 2021
    • Operation Enduring Freedom-Afghanistan War (documentary)

      "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for the War in Afghanistan, together with a number of smaller military actions, under the umbrella of the Global "War on Terror" (GWOT). The operation was originally called "Operation Infinite Justice" (often misquoted as "Operation Ultimate Justice"), but as similar phrases have been used by adherents of several religions as an exclusive description of God, it is believed to have been changed to avoid offense to Muslims, who are the majority religion in Afghanistan U.S. President George W. Bush's remark that "this crusade, this war on terrorism, is going to take a while", which prompted widespread criticism from the Islamic world, may also have contributed to the renaming of the operation

      published: 20 Sep 2014
    • Operation Enduring Freedom

      If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Operation Enduring Freedom -Video is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video

      published: 08 Jan 2016
    • A look at Camp Lemonnier Djibouti, the only U.S. military base in Africa

      In Djibouti, on the Horn of Africa, the United States has its only military base on the African continent and is training American and African troops for the new war on terror. Debora Patta toured Camp Lemonnier and spoke with military commanders there. Each weekday morning, "CBS Mornings” co-hosts Gayle King, Tony Dokoupil and Nate Burleson bring you the latest breaking news, smart conversation and in-depth feature reporting. "CBS Mornings" airs weekdays at 7 a.m. on CBS and 8 a.m. ET on CBSN. Subscribe to “CBS Mornings” on YouTube: https://www.youtube.com/CBSMornings Watch CBSN live: http://cbsn.ws/1PlLpZ7c​ Download the CBS News app: http://cbsn.ws/1Xb1WC8​ Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https://bit.ly/3tpOx00 Follow "CBS ...

      published: 18 Feb 2022
    • Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders

      Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United States Africa Command (AFRICOM). It originated under Operation Enduring Freedom – Horn of Africa (OEF-HOA) as part of the United States response to the September 11, 2001 attacks. A tribute to the 82nd Pathfinder Company | 2-82 (AHB) Assault Helicopter Battalion | 82nd Combat Aviation Brigade. Army Pathfinders are trained to provide navigational aid and advisory services to military aircraft in areas designated by supported unit commanders. The Pathfinders' secondary missions include providing advice and limited aid to units planning air assault or airdrop operations. The first paratroopers to be dropped on Normandy are the pathfinders. These men are grouped into teams, each composed of a lieutenant (sq...

      published: 08 Dec 2022
    • Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders | ThrowBack Thursday 2017

      Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United States Africa Command (AFRICOM). It originated under Operation Enduring Freedom – Horn of Africa (OEF-HOA) as part of the United States response to the September 11, 2001 attacks. A tribute to the 82nd Pathfinder Company | 2-82 (AHB) Assault Helicopter Battalion | 82nd Combat Aviation Brigade. Army Pathfinders are trained to provide navigational aid and advisory services to military aircraft in areas designated by supported unit commanders. The Pathfinders' secondary missions include providing advice and limited aid to units planning air assault or airdrop operations. The first paratroopers to be dropped on Normandy are the pathfinders. These men are grouped into teams, each composed of a lieutenant (sq...

      published: 22 Dec 2022
    • Interview with Joshua Mead-OIF OEF Horn of Africa Veteran

      Interview conducted on April 25, 2017 by Eileen Hurst. Joshua Mead served in the CT Air National Guard. To view his collection and explore our other veterans please visit our website at: www.ccsu.edu/vhp.

      published: 25 May 2017
    developed with YouTube
    Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩
    1:06

    Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩

    • Order:
    • Duration: 1:06
    • Uploaded Date: 03 Aug 2021
    • views: 74
    List of United States of America battles in the Operation Enduring Freedom - Horn of Africa, listed alphabetically with photos, images, and maps when possible. Every major battle, skirmish, or conflict in Operation Enduring Freedom - Horn of Africa involving the United States of America is included here, along with information like exactly where the battle took place. If you want to learn even more about these Operation Enduring Freedom - Horn of Africa battles that involved Operation Enduring Freedom - Horn of Africa you can click on the names of the battles for more information. Items here include everything from World War II to Attack on Pearl Harbor.This list answers the question, "What Operation Enduring Freedom - Horn of Africa battles was United States of America involved in?"...more 0:00 - Intro 0:00:08 - Action of 28 October 2007 0:00:17 - Battle of Bargal 0:00:24 - Action of 3 June 2007 0:00:32 - S/V Quest incident 0:00:40 - Action of 18 March 2006 0:00:49 - Action of 1 April 2010 ❤️Music❤️ DreamHeaven - https://www.youtube.com/channel/UCjQ44COnIK-vsbBw8jEm1zA ❤️Subscribe❤️ https://www.youtube.com/channel/UCp7ESmIrwLW6xRJ4cPzaBiQ?sub_confirmation=1 ❤️About Us❤️ Topporium is a place where are the most interesting and fresh tops from all over the world. Come to us instead of the morning newspaper and enjoy the interesting selections. Topporium is your daily positive charge!
    https://wn.com/Operation_Enduring_Freedom_Horn_Of_Africa_Battles_Involving_The_United_States_Of_America_🤩
    Operation Enduring Freedom (documentary)
    22:04

    Operation Enduring Freedom (documentary)

    • Order:
    • Duration: 22:04
    • Uploaded Date: 06 Feb 2016
    • views: 41482
    Operation Enduring Freedom (OEF) is the official name used by the government of the United States of America to describe the Global War on Terrorism. The Operation comprises several subordinate operations: Operation Enduring Freedom – Afghanistan (OEF-A), lasted from October 2001 to 31 December 2014. Succeeded by Operation Freedom's Sentinel. Operation Enduring Freedom – Philippines (OEF-P, formerly Operation Freedom Eagle) Operation Enduring Freedom – Horn of Africa (OEF-HOA) Operation Enduring Freedom – Pankisi Gorge Operation Enduring Freedom – Trans Sahara (OEF-TS; see also Insurgency in the Maghreb) Operation Enduring Freedom – Caribbean and Central America (OEF-CCA) Operation Enduring Freedom – Kyrgyzstan Credits: Gail McCabe
    https://wn.com/Operation_Enduring_Freedom_(Documentary)
    operation ocean shield|NATO|horn of africa|technological videos
    5:10

    operation ocean shield|NATO|horn of africa|technological videos

    • Order:
    • Duration: 5:10
    • Uploaded Date: 24 Jul 2022
    • views: 44
    please subscribe please like see my old videos This operation is a part of operation enduring freedom-horn of Africa
    https://wn.com/Operation_Ocean_Shield|Nato|Horn_Of_Africa|Technological_Videos
    Operation Enduring Freedom - HOA (pt. 1)
    4:40

    Operation Enduring Freedom - HOA (pt. 1)

    • Order:
    • Duration: 4:40
    • Uploaded Date: 22 May 2021
    • views: 535
    Part 1 of 3. D Co 1-102D INF RGT (MTN) Operation Enduring Freedom - Horn of Africa
    https://wn.com/Operation_Enduring_Freedom_Hoa_(Pt._1)
    Operation Enduring Freedom-Afghanistan War (documentary)
    1:29:52

    Operation Enduring Freedom-Afghanistan War (documentary)

    • Order:
    • Duration: 1:29:52
    • Uploaded Date: 20 Sep 2014
    • views: 730764
    "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for the War in Afghanistan, together with a number of smaller military actions, under the umbrella of the Global "War on Terror" (GWOT). The operation was originally called "Operation Infinite Justice" (often misquoted as "Operation Ultimate Justice"), but as similar phrases have been used by adherents of several religions as an exclusive description of God, it is believed to have been changed to avoid offense to Muslims, who are the majority religion in Afghanistan U.S. President George W. Bush's remark that "this crusade, this war on terrorism, is going to take a while", which prompted widespread criticism from the Islamic world, may also have contributed to the renaming of the operation
    https://wn.com/Operation_Enduring_Freedom_Afghanistan_War_(Documentary)
    Operation Enduring Freedom
    23:46

    Operation Enduring Freedom

    • Order:
    • Duration: 23:46
    • Uploaded Date: 08 Jan 2016
    • views: 27
    If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Operation Enduring Freedom -Video is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video
    https://wn.com/Operation_Enduring_Freedom
    A look at Camp Lemonnier Djibouti, the only U.S. military base in Africa
    3:33

    A look at Camp Lemonnier Djibouti, the only U.S. military base in Africa

    • Order:
    • Duration: 3:33
    • Uploaded Date: 18 Feb 2022
    • views: 75438
    In Djibouti, on the Horn of Africa, the United States has its only military base on the African continent and is training American and African troops for the new war on terror. Debora Patta toured Camp Lemonnier and spoke with military commanders there. Each weekday morning, "CBS Mornings” co-hosts Gayle King, Tony Dokoupil and Nate Burleson bring you the latest breaking news, smart conversation and in-depth feature reporting. "CBS Mornings" airs weekdays at 7 a.m. on CBS and 8 a.m. ET on CBSN. Subscribe to “CBS Mornings” on YouTube: https://www.youtube.com/CBSMornings Watch CBSN live: http://cbsn.ws/1PlLpZ7c​ Download the CBS News app: http://cbsn.ws/1Xb1WC8​ Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https://bit.ly/3tpOx00 Follow "CBS Mornings" on Twitter: https://bit.ly/38QQp8B Subscribe to our newsletter: http://cbsn.ws/1RqHw7T​ Try Paramount+ free: https://bit.ly/2OiW1kZ For video licensing inquiries, contact: licensing@veritone.com
    https://wn.com/A_Look_At_Camp_Lemonnier_Djibouti,_The_Only_U.S._Military_Base_In_Africa
    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders
    0:54

    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders

    • Order:
    • Duration: 0:54
    • Uploaded Date: 08 Dec 2022
    • views: 2125
    Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United States Africa Command (AFRICOM). It originated under Operation Enduring Freedom – Horn of Africa (OEF-HOA) as part of the United States response to the September 11, 2001 attacks. A tribute to the 82nd Pathfinder Company | 2-82 (AHB) Assault Helicopter Battalion | 82nd Combat Aviation Brigade. Army Pathfinders are trained to provide navigational aid and advisory services to military aircraft in areas designated by supported unit commanders. The Pathfinders' secondary missions include providing advice and limited aid to units planning air assault or airdrop operations. The first paratroopers to be dropped on Normandy are the pathfinders. These men are grouped into teams, each composed of a lieutenant (squad leader), four radio operators and four paratroopers in charge of the overall security during operations. They are dropped into enemy territory without initial marking, simply based on terrain observation and navigation calculations aboard the C-47 Dakota aircraft. The Pathfinders are then tasked with marking-up drop zones (DZ) and landing zones (LZ) before the arrival of the airborne fighting companies while implementing the “Eureka” transceivers of which they are equipped. The latter send pulses picked up by the “Rebecca” transceivers installed under the fuselage of the C-47s, which allows the pilots to orient themselves. It is also possible to use these two means of transmission to send short Morse messages, both for pilots and for scouts. The Pathfinders are equipped with day and night markings because the reinforcements airborne and air-transported are planned also on the day of June 6, 1944, at 21:00. Daylighting consists of the use of yellow-colored panels to align to form the letter “T” as well as smoke. These smokes are green in color to indicate a “clear” DZ or LZ, ie without enemies, and red in color to account for the presence of adversaries on contact. At night, the Pathfinders are equipped with holophane lamps. In all the jump zones dedicated to the 82nd Airborne Division, the DZ “O” markup is the only one to be carried out in its entirety: for the other Pathfinders, the lack of resources recovered after the launch or the presence of enemies on the DZ prevent the full realization of the mission. #CJTFHOA #CH47ChinookHelicopter 82ndCABPathfinders #Shorts PC EQUIPMENT iBUYPOWER i7 Pro Gaming PC https://amzn.to/3Eht3GL VIDEO CAPTURE DEVICES Elgato HD60 S+ https://amzn.to/3BhgfhJ Elgato HD60 S https://amzn.to/3bcAAu7 Elgato CamLink https://amzn.to/3EjkkUI Elgato Stream Deck https://amzn.to/3CiXagD Elgato Green Screen - Collapsible Chroma Key Panel https://amzn.to/2Znjsz4 DISRIZENT Editing CPU iMac M1 https://amzn.to/3mdpyLu MY ESSENTIALS: TUBEBUDDY: https://www.tubebuddy.com/DisRizEnt JOIN ME ON INSTAGRAM: https://instagram.com/DisRizEnt MotionVFX AFFILIATE LINKS: TEMPLATES I USE: mPuppet Store Page: https://motionvfx.sjv.io/c/2427543/688058/10011 MotionVFX Plugins Purchase: https://motionvfx.sjv.io/c/2427543/696661/10011 Social Media Stories Template: https://motionvfx.sjv.io/c/2427543/669880/10011 Around The World Template: https://motionvfx.sjv.io/c/2427543/669877/10011 LUTs I USE: mBundle Film - 50% OFF: https://motionvfx.sjv.io/c/2427543/702229/10011 Vlogger Bundle I USE: mBundle Vlogger - 50% OFF: https://motionvfx.sjv.io/c/2427543/760657/10011 THE CALL OUTS I USE | YouTube Lower-Thirds: mChannel Modern: https://motionvfx.sjv.io/c/2427543/810921/10011 mCallouts SPECS: https://motionvfx.sjv.io/c/2427543/670506/10011 UPCOMING EDITS: mTracker 3D: https://motionvfx.sjv.io/c/2427543/890767/10011 MotionVFX: https://motionvfx.sjv.io/c/2427543/614453/10011 To Support The Channel Ca$hApp : $DisRizTv = https://cash.app/$DisRizTv Any Person Donating Will Also Receive A Shout Out! Become A Patron-D.S.P Supporter For Full Length Videos: Check it out @ https://www.patreon.com/user?u=16277560 💯💯💯💯 💯 💯 Follow DisRizEnt ON FACEBOOK, TWITTER, & INSTAGRAM: Business Website = https://www.DisRizEnt.com **Follow all my other social medias** ★★ Subscribe and click the Bell 🛎 for notifications on NEW Videos so you don’t miss anything ★★ Watch, Like & Share ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ 💻 YouTube Channel: DisRiz-TV Media = http://www.DisRiz.com 🕊️ Twitter = http://www.Twitter.com/DisRizEnt 🎥 Facebook= http://www.DisRizTV.Live ⠀ 📸 InstaGram = http://www.Instagram.com/DisRizEnt 📸 Tumblr = http://disrizwava.tumblr.com For New videos every Friday at 09:00 a.m. of each week! s Always Folks, DisRiz Entertainment ✌🏽
    https://wn.com/Combined_Joint_Task_Force_Horn_Of_Africa_|_Cjtf_Hoa_|_Ch_47_|_Pathfinders
    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47  | Pathfinders | ThrowBack Thursday 2017
    1:12

    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders | ThrowBack Thursday 2017

    • Order:
    • Duration: 1:12
    • Uploaded Date: 22 Dec 2022
    • views: 1167
    Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United States Africa Command (AFRICOM). It originated under Operation Enduring Freedom – Horn of Africa (OEF-HOA) as part of the United States response to the September 11, 2001 attacks. A tribute to the 82nd Pathfinder Company | 2-82 (AHB) Assault Helicopter Battalion | 82nd Combat Aviation Brigade. Army Pathfinders are trained to provide navigational aid and advisory services to military aircraft in areas designated by supported unit commanders. The Pathfinders' secondary missions include providing advice and limited aid to units planning air assault or airdrop operations. The first paratroopers to be dropped on Normandy are the pathfinders. These men are grouped into teams, each composed of a lieutenant (squad leader), four radio operators and four paratroopers in charge of the overall security during operations. They are dropped into enemy territory without initial marking, simply based on terrain observation and navigation calculations aboard the C-47 Dakota aircraft. The Pathfinders are then tasked with marking-up drop zones (DZ) and landing zones (LZ) before the arrival of the airborne fighting companies while implementing the “Eureka” transceivers of which they are equipped. The latter send pulses picked up by the “Rebecca” transceivers installed under the fuselage of the C-47s, which allows the pilots to orient themselves. It is also possible to use these two means of transmission to send short Morse messages, both for pilots and for scouts. The Pathfinders are equipped with day and night markings because the reinforcements airborne and air-transported are planned also on the day of June 6, 1944, at 21:00. Daylighting consists of the use of yellow-colored panels to align to form the letter “T” as well as smoke. These smokes are green in color to indicate a “clear” DZ or LZ, ie without enemies, and red in color to account for the presence of adversaries on contact. At night, the Pathfinders are equipped with holophane lamps. In all the jump zones dedicated to the 82nd Airborne Division, the DZ “O” markup is the only one to be carried out in its entirety: for the other Pathfinders, the lack of resources recovered after the launch or the presence of enemies on the DZ prevent the full realization of the mission. #CJTFHOA #CH47ChinookHelicopter 82ndCABPathfinders PC EQUIPMENT iBUYPOWER i7 Pro Gaming PC https://amzn.to/3Eht3GL VIDEO CAPTURE DEVICES Elgato HD60 S+ https://amzn.to/3BhgfhJ Elgato HD60 S https://amzn.to/3bcAAu7 Elgato CamLink https://amzn.to/3EjkkUI Elgato Stream Deck https://amzn.to/3CiXagD Elgato Green Screen - Collapsible Chroma Key Panel https://amzn.to/2Znjsz4 DISRIZENT Editing CPU iMac M1 https://amzn.to/3mdpyLu MY ESSENTIALS: TUBEBUDDY: https://www.tubebuddy.com/DisRizEnt JOIN ME ON INSTAGRAM: https://instagram.com/DisRizEnt MotionVFX AFFILIATE LINKS: TEMPLATES I USE: mPuppet Store Page: https://motionvfx.sjv.io/c/2427543/688058/10011 MotionVFX Plugins Purchase: https://motionvfx.sjv.io/c/2427543/696661/10011 Social Media Stories Template: https://motionvfx.sjv.io/c/2427543/669880/10011 Around The World Template: https://motionvfx.sjv.io/c/2427543/669877/10011 LUTs I USE: mBundle Film - 50% OFF: https://motionvfx.sjv.io/c/2427543/702229/10011 Vlogger Bundle I USE: mBundle Vlogger - 50% OFF: https://motionvfx.sjv.io/c/2427543/760657/10011 THE CALL OUTS I USE | YouTube Lower-Thirds: mChannel Modern: https://motionvfx.sjv.io/c/2427543/810921/10011 mCallouts SPECS: https://motionvfx.sjv.io/c/2427543/670506/10011 UPCOMING EDITS: mTracker 3D: https://motionvfx.sjv.io/c/2427543/890767/10011 MotionVFX: https://motionvfx.sjv.io/c/2427543/614453/10011 To Support The Channel Ca$hApp : $DisRizTv = https://cash.app/$DisRizTv Any Person Donating Will Also Receive A Shout Out! Become A Patron-D.S.P Supporter For Full Length Videos: Check it out @ https://www.patreon.com/user?u=16277560 💯💯💯💯 💯 💯 Follow DisRizEnt ON FACEBOOK, TWITTER, & INSTAGRAM: Business Website = https://www.DisRizEnt.com **Follow all my other social medias** ★★ Subscribe and click the Bell 🛎 for notifications on NEW Videos so you don’t miss anything ★★ Watch, Like & Share ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ 💻 YouTube Channel: DisRiz-TV Media = http://www.DisRiz.com 🕊️ Twitter = http://www.Twitter.com/DisRizEnt 🎥 Facebook= http://www.DisRizTV.Live ⠀ 📸 InstaGram = http://www.Instagram.com/DisRizEnt 📸 Tumblr = http://disrizwava.tumblr.com For New videos every Friday at 09:00 a.m. of each week! s Always Folks, DisRiz Entertainment ✌🏽
    https://wn.com/Combined_Joint_Task_Force_Horn_Of_Africa_|_Cjtf_Hoa_|_Ch_47_|_Pathfinders_|_Throwback_Thursday_2017
    Interview with Joshua Mead-OIF OEF Horn of Africa Veteran
    1:18:59

    Interview with Joshua Mead-OIF OEF Horn of Africa Veteran

    • Order:
    • Duration: 1:18:59
    • Uploaded Date: 25 May 2017
    • views: 136
    Interview conducted on April 25, 2017 by Eileen Hurst. Joshua Mead served in the CT Air National Guard. To view his collection and explore our other veterans please visit our website at: www.ccsu.edu/vhp.
    https://wn.com/Interview_With_Joshua_Mead_Oif_Oef_Horn_Of_Africa_Veteran
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Geography of the Horn of Africa
      12:07
      The Geography of the Horn of Africaremove from playlist
    • Africa Matters: Horn of Africa Tensions
      25:32
      Africa Matters: Horn of Africa Tensionsremove from playlist
    • The Horn of Africa
      3:46
      The Horn of Africaremove from playlist
    • Horn of Africa
      2:03
      Horn of Africaremove from playlist
    • Strategic Geography: Horn of Africa
      36:59
      Strategic Geography: Horn of Africaremove from playlist
    • Is the Horn of Africa facing a wider conflict? | Inside Story
      25:46
      Is the Horn of Africa facing a wider conflict? | Inside Storyremove from playlist
    • Why does the Horn of Africa matter?
      25:38
      Why does the Horn of Africa matter?remove from playlist
    • Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africa
      4:21
      Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africaremove from playlist
    • The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyond
      1:19:20
      The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyondremove from playlist
    • The drought crisis in the Horn of Africa
      1:08
      The drought crisis in the Horn of Africaremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Geography of the Horn of Africa

    The Horn of Africa, consisting of Ethiopia, Eritrea, Djibouti and Somalia is sticking out of eastern Africa and contains extreme examples of fertility and barrenness, summits and depths, and prosperity and despair. Join in on a journey across the breathtaking Ethiopian Highlands which tower over Africa, the extremely hostile Afar Triangle which lies at the wake of three tectonic plates, and along the barren Somali coast with its turbulent history and challenging natural geography. Chapters: 0:41 The Ethiopian Highlands 4:51 The Afar Triangle 8:25 Somalia If you want to see more videos like this one, be sure to subscribe! And if you want to support what I am doing, you can leave a small donation here: https://buymeacoffee.com/factspark Any support is greatly appreciated
    12:07
    The Geography of the Horn of Africa
    The Horn of Africa, consisting of Ethiopia, Eritrea, Djibouti and Somalia is sticking out ...
    published: 05 Sep 2024
    Play in Full Screen
    25:32
    Africa Matters: Horn of Africa Tensions
    Somalia has expelled a senior Ethiopian diplomat, signalling worsening relations between t...
    published: 02 Nov 2024
    Play in Full Screen
    3:46
    The Horn of Africa
    Take a closer look at the human and physical geography of the Horn of Africa region
    published: 29 Jun 2018
    Play in Full Screen
    2:03
    Horn of Africa
    The cradle of humanity, the Horn of Africa is a mountainous peninsula comprising several c...
    published: 23 Feb 2018
    Play in Full Screen
    36:59
    Strategic Geography: Horn of Africa
    The Horn of Africa faces obstacles to security and development in the form of terrorism, c...
    published: 25 Jan 2018
    Play in Full Screen
    25:46
    Is the Horn of Africa facing a wider conflict? | Inside Story
    A conflict in Ethiopia is spilling over its borders and threatening to destabilise the Hor...
    published: 15 Nov 2020
    Play in Full Screen
    25:38
    Why does the Horn of Africa matter?
    Europe wants to increase its presence in the Horn of Africa, moving away from just develop...
    published: 27 Oct 2022
    Play in Full Screen
    4:21
    Ethiopia - Somalia quarrel could destabilise horn of Africa | World of Africa
    Ethiopia's deal to lease a port in Somalia's breakaway region of Somaliland has infuriated...
    published: 30 Jan 2024
    Play in Full Screen
    1:19:20
    The Horn of Africa: Its strategic importance for Europe, the Gulf States and beyond
    In this seminar, Alexander Rondos will address the challenges facing the region and the Ho...
    published: 19 Apr 2016
    Play in Full Screen
    1:08
    The drought crisis in the Horn of Africa
    Water is running out in parts of #Somalia and forcing more families already fleeing confli...
    published: 11 Mar 2022
    Play in Full Screen

    Horn of Africa

    The Horn of Africa (Somali: Geeska Afrika, Oromo: Gaaffaa Afriikaa, Amharic: የአፍሪካ ቀንድ?yäafrika qänd, Arabic: القرن الأفريقي al-qarn al-'afrīqī, Tigrinya: ቀርኒ ኣፍሪቃ?) (shortened to HOA; alternatively Somali Peninsula) is a peninsula in Northeast Africa. It juts hundreds of kilometers into the Arabian Sea and lies along the southern side of the Gulf of Aden. The area is the easternmost projection of the African continent. Referred to in ancient and medieval times as Bilad al Barbar ("Land of the Berbers"), the Horn of Africa denotes the region containing the countries of Djibouti, Eritrea, Ethiopia, and Somalia.

    It covers approximately 2,000,000 km2 (770,000 sq mi) and is inhabited by roughly 115 million people (Ethiopia: 96.6 million, Somalia: 10.4 million, Eritrea: 6.4 million, and Djibouti: 0.81 million). Regional studies on the Horn of Africa are carried out, among others, in the fields of Ethiopian Studies as well as Somali Studies.

    History

    Prehistory

    Shell middens 125,000 years old have been found in Eritrea, indicating the diet of early humans included seafood obtained by beachcombing.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Operation Enduring Freedom-Afghanistan War (documentary)

    "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for the War in Afghanistan, together with a number of smaller military actions, under the umbrella of the Global "War on Terror" (GWOT). The operation was originally called "Operation Infinite Justice" (often misquoted as "Operation Ultimate Justice"), but as similar phrases have been used by adherents of several religions as an exclusive description of God, it is believed to have been changed to avoid offense to Muslims, who are the majority religion in Afghanistan U.S. President George W. Bush's remark that "this crusade, this war on terrorism, is going to take a while", which prompted widespread criticism from the Islamic world, may also have contributed to the renaming of the operation
    1:29:52
    Operation Enduring Freedom-Afghanistan War (documentary)
    "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for th...
    published: 20 Sep 2014
    Play in Full Screen
    4:18
    Bombing Afghanistan | Operation Enduring Freedom [Real Footage]
    Welcome to the CobraOneTwelve YouTube Channel. this channel produces short Music Cinematic...
    published: 30 Mar 2021
    Play in Full Screen
    22:04
    Operation Enduring Freedom (documentary)
    Operation Enduring Freedom (OEF) is the official name used by the government of the United...
    published: 06 Feb 2016
    Play in Full Screen
    6:21
    Operation Enduring Freedom (Animated Map) - Fall of the Taliban 2001
    Sources: US Center for Military History https://history.army.mil/ Wright, Donald et al. ...
    published: 13 Sep 2021
    Play in Full Screen
    5:23
    Operation Enduring Freedom Begins - 2001 | Today in History | 7 Oct 16
    On October 7, 2001, the current war in Afghanistan started as the United States and Britai...
    published: 07 Oct 2016
    Play in Full Screen
    15:36
    2001 Invasion of Afghanistan | Animated History
    Support our channel and learn a new language by using our link to try Speakly today with a...
    published: 09 Jul 2023
    Play in Full Screen
    5:29
    Operation Enduring Freedom - Short Change Hero
    hi spent 10 hours on this, Used Videos: https://www.youtube.com/watch?v=tP-ysPz7tJ8 http...
    published: 03 Jul 2023
    Play in Full Screen
    1:20
    Operation Enduring Freedom
    Operation Enduring Freedom was the official name used by the U.S. government for the Glob...
    published: 17 Aug 2021
    Play in Full Screen
    17:55
    Bin Laden's Hard Drives | How SEAL Team Took Down Osama bin Laden | Why Osama Bin Laden Attacked USA
    @Eradocs In this video we have discussed about the most tragic moment in history of earth...
    published: 19 Nov 2024
    Play in Full Screen
    12:20
    2nd night of US airstrikes in Afghanistan - Operation Enduring Freedom - Protests in Pakistan
    October 8, 2001, 5:30pm CBS Evening News
    published: 02 Oct 2020
    Play in Full Screen
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩
      1:06
      Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩remove from playlist
    • Operation Enduring Freedom (documentary)
      22:04
      Operation Enduring Freedom (documentary)remove from playlist
    • operation ocean shield|NATO|horn of africa|technological videos
      5:10
      operation ocean shield|NATO|horn of africa|technological videosremove from playlist
    • Operation Enduring Freedom - HOA (pt. 1)
      4:40
      Operation Enduring Freedom - HOA (pt. 1)remove from playlist
    • Operation Enduring Freedom-Afghanistan War (documentary)
      1:29:52
      Operation Enduring Freedom-Afghanistan War (documentary)remove from playlist
    • Operation Enduring Freedom
      23:46
      Operation Enduring Freedomremove from playlist
    • A look at Camp Lemonnier Djibouti, the only U.S. military base in Africa
      3:33
      A look at Camp Lemonnier Djibouti, the only U.S. military base in Africaremove from playlist
    • Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders
      0:54
      Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfindersremove from playlist
    • Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47  | Pathfinders | ThrowBack Thursday 2017
      1:12
      Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders | ThrowBack Thursday 2017remove from playlist
    • Interview with Joshua Mead-OIF OEF Horn of Africa Veteran
      1:18:59
      Interview with Joshua Mead-OIF OEF Horn of Africa Veteranremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩

    List of United States of America battles in the Operation Enduring Freedom - Horn of Africa, listed alphabetically with photos, images, and maps when possible. Every major battle, skirmish, or conflict in Operation Enduring Freedom - Horn of Africa involving the United States of America is included here, along with information like exactly where the battle took place. If you want to learn even more about these Operation Enduring Freedom - Horn of Africa battles that involved Operation Enduring Freedom - Horn of Africa you can click on the names of the battles for more information. Items here include everything from World War II to Attack on Pearl Harbor.This list answers the question, "What Operation Enduring Freedom - Horn of Africa battles was United States of America involved in?"...more 0:00 - Intro 0:00:08 - Action of 28 October 2007 0:00:17 - Battle of Bargal 0:00:24 - Action of 3 June 2007 0:00:32 - S/V Quest incident 0:00:40 - Action of 18 March 2006 0:00:49 - Action of 1 April 2010 ❤️Music❤️ DreamHeaven - https://www.youtube.com/channel/UCjQ44COnIK-vsbBw8jEm1zA ❤️Subscribe❤️ https://www.youtube.com/channel/UCp7ESmIrwLW6xRJ4cPzaBiQ?sub_confirmation=1 ❤️About Us❤️ Topporium is a place where are the most interesting and fresh tops from all over the world. Come to us instead of the morning newspaper and enjoy the interesting selections. Topporium is your daily positive charge!
    1:06
    Operation Enduring Freedom - Horn Of Africa Battles Involving The United States Of America 🤩
    List of United States of America battles in the Operation Enduring Freedom - Horn of Afric...
    published: 03 Aug 2021
    Play in Full Screen
    22:04
    Operation Enduring Freedom (documentary)
    Operation Enduring Freedom (OEF) is the official name used by the government of the United...
    published: 06 Feb 2016
    Play in Full Screen
    5:10
    operation ocean shield|NATO|horn of africa|technological videos
    please subscribe please like see my old videos This operation is a part of operation e...
    published: 24 Jul 2022
    Play in Full Screen
    4:40
    Operation Enduring Freedom - HOA (pt. 1)
    Part 1 of 3. D Co 1-102D INF RGT (MTN) Operation Enduring Freedom - Horn of Africa
    published: 22 May 2021
    Play in Full Screen
    1:29:52
    Operation Enduring Freedom-Afghanistan War (documentary)
    "Operation Enduring Freedom" (OEF) is the official name used by the U.S. government for th...
    published: 20 Sep 2014
    Play in Full Screen
    23:46
    Operation Enduring Freedom
    If you find our videos helpful you can support us by buying something from amazon. https:/...
    published: 08 Jan 2016
    Play in Full Screen
    3:33
    A look at Camp Lemonnier Djibouti, the only U.S. military base in Africa
    In Djibouti, on the Horn of Africa, the United States has its only military base on the Af...
    published: 18 Feb 2022
    Play in Full Screen
    0:54
    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders
    Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United Stat...
    published: 08 Dec 2022
    Play in Full Screen
    1:12
    Combined Joint Task Force-Horn of Africa | CJTF HOA | CH-47 | Pathfinders | ThrowBack Thursday 2017
    Combined Joint Task Force – Horn of Africa (CJTF-HOA) is a joint task force of United Stat...
    published: 22 Dec 2022
    Play in Full Screen
    1:18:59
    Interview with Joshua Mead-OIF OEF Horn of Africa Veteran
    Interview conducted on April 25, 2017 by Eileen Hurst. Joshua Mead served in the CT Air Na...
    published: 25 May 2017
    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)); } }); }); }); // -->
    ×