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

By any means necessary

By any means necessary is a translation of a phrase used by the French intellectual Jean-Paul Sartre in his play Dirty Hands. It entered the popular civil rights culture through a speech given by Malcolm X at the Organization of Afro-American Unity Founding Rally on June 28, 1964. It is generally considered to leave open all available tactics for the desired ends, including violence; however, the “necessary” qualifier adds a caveat—if violence is not necessary, then presumably, it should not be used.

Jean-Paul Sartre

The phrase is translation of a sentence used in French intellectual Jean-Paul Sartre's play Dirty Hands:

Malcolm X

It entered the popular culture through a speech given by Malcolm X in the last year of his life.

Mandela case

In the final scene of the 1992 movie Malcolm X, Nelson Mandela—recently released after 27 years of political imprisonment—appears as a schoolteacher in a Soweto classroom. Yet Mandela informed director Spike Lee that he could not utter the famous final phrase "by any means necessary" on camera fearing that the apartheid government would use it against him if he did. Lee obliged, and the final seconds of the film feature black-and-white footage of Malcolm X himself delivering the phrase.

By any means necessary (disambiguation)

By any means necessary may refer to:

  • A common English phrase in use by 1700, similar to By hook or by crook
  • By any means necessary, a phrase used by Jean-Paul Sartre and associated by American civil rights advocates with Malcolm X
  • "By Any Means Necessary" (Babylon 5), an episode of the television series Babylon 5
  • By Any Means Necessary (album), an album by Pastor Troy
  • By Any Means Necessary (Gary Thomas album)
  • BAMN, a civil rights group in Detroit, San Francisco Bay Area, and Los Angeles Metropolitan Area.
  • See also

  • By Any Means (2008 TV series), a travel documentary series
  • By Any Means (2013 TV series), a crime drama series
  • By Any Means Necessary (Babylon 5)

    "By Any Means Necessary" is an episode from the first season of the science fiction television series Babylon 5.

    Synopsis

    A computer glitch results in an accident aboard the station that kills one of the dock workers. In light of the accident and in protest for being overworked, the dock workers start an illegal labor strike. The accident also resulted in the destruction of cargo that included a G'Quan Eth, a hard-to-obtain flower which G'Kar needs for a religious ritual in a few days. It turns out that Londo Mollari has the only one left on the station, but is tauntingly refusing to sell it at a previously agreed high price to G'Kar in order to aggravate him in revenge for the Narn attack on Ragesh 3, during which his nephew was abused. In retaliation, G'Kar arranges for an important Centauri idol to be stolen to force the surrender of the plant while Sinclair is forced to endure this petty conflict as a neutral agent.

    Orin Zento, the (ostensible) negotiator sent by the Earth Senate Labor Committee to settle the strike, offers nothing but empty promises and threats of retribution for the striking workers. The strike gives the Earth Senate the excuse that it was looking for to invoke the "Rush Act", a law that permits a commander to use any means necessary, including the use of force, to end a strike. The strikers end up rioting when Garibaldi's security force goes to arrest them; however, Commander Sinclair manages to end the situation before anyone gets seriously injured.

    Wire Waltz

    Wire Waltz is the second album from band The Last Town Chorus, released in 2006, three years after their eponymous debut. It contains the band's most well known track, a cover of David Bowie's "Modern Love", also featured in a season two episode of Grey's Anatomy.

    By the time the album was recorded, former member Nat Gut had departed the band.

    Track listing

    All songs written and composed by Megan Hickey, except as noted. 

    Singles

    "Modern Love" was released as the only single from the album. It was released on 7" vinyl in the UK with "Wintering In Brooklyn" as a B-side.

    Personnel

    All tracks written and produced by Megan Hickey, except as noted. Hickey performs Lap Steel Guitar and Vocals on all tracks. Other personnel as noted below.

    "Wire Waltz"

  • Percussion: Mark Fredericks & Alan Bezozi
  • Bass: Ken Heitmeuller
  • Hammond Organ & Piano: Joe McGinty
  • Violin: Maxim Moston
  • Guitar: Pete Galub
  • "You"

  • Guitar: Pete Galub
  • Percussion: Alan Bezozi
  • Harmony Vocals: Amy Allison
  • "Modern Love"

  • Written by David Bowie
  • Podcasts:

    • HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)

      Official music video for HAMMERFALL "Any Means Necessary." GET THE ALBUM: http://store.nuclearblastusa.com/Artist/Hammerfall/11163 SUBSCRIBE to HAMMERFALL: http://bit.ly/subs-ham-yt SUBSCRIBE to NUCLEAR BLAST: http://bit.ly/subs-nb-yt Taken from the album "No Sacrifice, No Victory" out now via Nuclear Blast Records! PURCHASE ALBUM AT: Nuclear Blast USA http://store.nuclearblastusa.com/Artist/Hammerfall/11163 Nuclear Blast EUROPE http://www.nuclearblast.de/index.php?search=hammerfall&Action=showShopSearchResult&searchtype=band Nuclear Blast MP3 Store http://www.nuclearblast-musicshop.de/index.php?band_id=520 eMUSIC http://www.emusic.com/artist/hammerfall-MP3-Download/11701227.html NAPSTER http://free.napster.com/view/artist/index.html?id=12028127 RHAPSODY http://www.rhapsody.com/ham...

      published: 22 Jan 2009
    • HAMMERFALL - Any Means Necessary (Live) | Napalm Records

      Order "Live! Against The World" here: https://smarturl.it/LiveAgainstTheWorld Out on October 23rd Video Credits: PRODUCED By: FOG Productions GmbH & Eat The Beat Music PROJECT MANAGEMENT By: Florian Dietze & Chris Klimek DIRECTED BY: Yves Zosso & Jörg Maas SET-MANAGER: Thomas Jolich CAMERA: Stephan Börger, Dirk Meinhardt, Ulf Wogenstein, Torsten Wanschura, Marcus Ftritzsch, Niko Gindler, Sebastian Brüning VIDEO RECORDED By: 0221 Mediagroup GmbH/ Sebastian Scholz ADDITIONAL AUDIO RECORDED By: Thomas Odenthal RECORDED At: Arena Ludwigsburg VIDEO EDIT By: Katharina Maas RECORDING COUNTRY: Germany

      published: 23 Oct 2020
    • Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainment

      SUBSCRIBE to Warner Bros. Entertainment: http://bit.ly/32v18jf Connect with Warner Bros. Entertainment Online: Follow Warner Bros. Entertainment INSTAGRAM: https://www.instagram.com/warnerbrosentertainment/ Like Warner Bros. Entertainment on FACEBOOK: https://www.facebook.com/warnerbrosent/ Follow Warner Bros. Entertainment TWITTER: https://twitter.com/WBHomeEnt About Malcolm X: Often misunderstood, Malcolm X was one of the leading forces of the United States' Civil Rights Movement. He inspired many--and frightened many--but is destined to be remembered as one of the greatest men of his era. This riveting biography directed by Spike Lee and starring Denzel Washington in an Academy Award-nominated performance reveals the man at the center of a storm of change. About Warner Bros. Enterta...

      published: 09 Feb 2021
    • Jorja Smith - By Any Means (Official Video)

      By Any Means, out now: https://orcd.co/byanymeans https://blacklivesmatters.carrd.co/ https://www.theblackcurriculum.com/ https://www.blackmindsmatteruk.com/ Jorja - “a special thanks to my friends, family and everyone involved who I’ve met along the way x" Follow Jorja: https://www.instagram.com/jorjasmith_/ https://www.facebook.com/jorjasmithmusic https://twitter.com/JorjaSmith https://open.spotify.com/artist/1CoZyIx7UvdxT5c8UkMzHd?si=83iHDpQaTj-vw5rsLc3Ruw https://geo.music.apple.com/gb/artist/jorja-smith/1088331223?mt=1&app=music Produced and Co-Write: Ezrah Roberts-Grey Mixing and Mastering: Prash 'Engine-Earz' Mistry Art: Erin Corrian-Alexis Video: Director - Otis Dominique - @oatsiris Director - Ellington Hammond - @ellingtonhammond Producer - Precious Mahaga - @preciousmahaga Creat...

      published: 10 Aug 2020
    developed with YouTube
    HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)
    3:35

    HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)

    • Order:
    • Duration: 3:35
    • Uploaded Date: 22 Jan 2009
    • views: 25325194
    Official music video for HAMMERFALL "Any Means Necessary." GET THE ALBUM: http://store.nuclearblastusa.com/Artist/Hammerfall/11163 SUBSCRIBE to HAMMERFALL: http://bit.ly/subs-ham-yt SUBSCRIBE to NUCLEAR BLAST: http://bit.ly/subs-nb-yt Taken from the album "No Sacrifice, No Victory" out now via Nuclear Blast Records! PURCHASE ALBUM AT: Nuclear Blast USA http://store.nuclearblastusa.com/Artist/Hammerfall/11163 Nuclear Blast EUROPE http://www.nuclearblast.de/index.php?search=hammerfall&Action=showShopSearchResult&searchtype=band Nuclear Blast MP3 Store http://www.nuclearblast-musicshop.de/index.php?band_id=520 eMUSIC http://www.emusic.com/artist/hammerfall-MP3-Download/11701227.html NAPSTER http://free.napster.com/view/artist/index.html?id=12028127 RHAPSODY http://www.rhapsody.com/hammerfall iTUNES http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=6475279 AMAZON http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&field-keywords=hammerfall FYE http://www.fye.com/viewamgrefdata.htm?artistId=212623&product=&category=455366 BARNES AND NOBLE http://music.barnesandnoble.com/Artist/Hammerfall/c/247168
    https://wn.com/Hammerfall_Any_Means_Necessary_(Official_Music_Video)
    HAMMERFALL - Any Means Necessary (Live) | Napalm Records
    3:46

    HAMMERFALL - Any Means Necessary (Live) | Napalm Records

    • Order:
    • Duration: 3:46
    • Uploaded Date: 23 Oct 2020
    • views: 101985
    Order "Live! Against The World" here: https://smarturl.it/LiveAgainstTheWorld Out on October 23rd Video Credits: PRODUCED By: FOG Productions GmbH & Eat The Beat Music PROJECT MANAGEMENT By: Florian Dietze & Chris Klimek DIRECTED BY: Yves Zosso & Jörg Maas SET-MANAGER: Thomas Jolich CAMERA: Stephan Börger, Dirk Meinhardt, Ulf Wogenstein, Torsten Wanschura, Marcus Ftritzsch, Niko Gindler, Sebastian Brüning VIDEO RECORDED By: 0221 Mediagroup GmbH/ Sebastian Scholz ADDITIONAL AUDIO RECORDED By: Thomas Odenthal RECORDED At: Arena Ludwigsburg VIDEO EDIT By: Katharina Maas RECORDING COUNTRY: Germany
    https://wn.com/Hammerfall_Any_Means_Necessary_(Live)_|_Napalm_Records
    Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainment
    30:32

    Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainment

    • Order:
    • Duration: 30:32
    • Uploaded Date: 09 Feb 2021
    • views: 107051
    SUBSCRIBE to Warner Bros. Entertainment: http://bit.ly/32v18jf Connect with Warner Bros. Entertainment Online: Follow Warner Bros. Entertainment INSTAGRAM: https://www.instagram.com/warnerbrosentertainment/ Like Warner Bros. Entertainment on FACEBOOK: https://www.facebook.com/warnerbrosent/ Follow Warner Bros. Entertainment TWITTER: https://twitter.com/WBHomeEnt About Malcolm X: Often misunderstood, Malcolm X was one of the leading forces of the United States' Civil Rights Movement. He inspired many--and frightened many--but is destined to be remembered as one of the greatest men of his era. This riveting biography directed by Spike Lee and starring Denzel Washington in an Academy Award-nominated performance reveals the man at the center of a storm of change. About Warner Bros. Entertainment: At Warner Bros. Entertainment, we believe in the power of story. From classics to contemporary masterpieces, explore and watch a library full of extraordinary, stirring, and provocative entertainment that goes beyond the big screen. Subscribe to discover new favorites from the studio that brought you Friends, JOKER, the Conjuring Universe, and The Wizarding World of Harry Potter™. Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainment https://youtu.be/T0i8KfduCYw Warner Bros. Entertainment https://www.youtube.com/user/WarnerBrosOnline
    https://wn.com/Malcolm_X_|_By_Any_Means_Necessary_The_Making_Of_Malcolm_X_|_Warner_Bros._Entertainment
    Jorja Smith - By Any Means (Official Video)
    4:58

    Jorja Smith - By Any Means (Official Video)

    • Order:
    • Duration: 4:58
    • Uploaded Date: 10 Aug 2020
    • views: 18369581
    By Any Means, out now: https://orcd.co/byanymeans https://blacklivesmatters.carrd.co/ https://www.theblackcurriculum.com/ https://www.blackmindsmatteruk.com/ Jorja - “a special thanks to my friends, family and everyone involved who I’ve met along the way x" Follow Jorja: https://www.instagram.com/jorjasmith_/ https://www.facebook.com/jorjasmithmusic https://twitter.com/JorjaSmith https://open.spotify.com/artist/1CoZyIx7UvdxT5c8UkMzHd?si=83iHDpQaTj-vw5rsLc3Ruw https://geo.music.apple.com/gb/artist/jorja-smith/1088331223?mt=1&app=music Produced and Co-Write: Ezrah Roberts-Grey Mixing and Mastering: Prash 'Engine-Earz' Mistry Art: Erin Corrian-Alexis Video: Director - Otis Dominique - @oatsiris Director - Ellington Hammond - @ellingtonhammond Producer - Precious Mahaga - @preciousmahaga Creative Director - Erin Corrian-Alexis - @erincalexis Director of Photography - Joel Honeywell - @joelhoneywell Editor - James Demetriou - @amusethebutcher Casting- Chanté burke - @chantelouisaxx Featuring: Florence Govere Kellen Sanon Ildefonse Sanon Pearl Mahaga Alexander Livermore-Marshall Sakeema Peng Crook Imani Malika Sané Zyann-Sarah Louise Lewis Munyaradzi Jani Muvami Deon Corrian-Alexis Dylan Corrian-Alexis Riley Corrian-Alexis Shivendra Green Aalisha Green Amaani Green Yusuf Hamdaani Green Chanté Burke Christopher Burke Sharon Elliot-Burke Jolene Smith Peter Meredith Alex Roofe Luther X Etadafe Roofe Hasna Ali Kya Mae Ali Kiarni Lloyd ‘Fergz’ Ferguson Kiara Wallace Carmen Jackson Ishmail Harris Bethanie Falconer Stefan Forrest Stacey Hawley Josiah Hawley Taj Reid Monetell Williams George Gimberwick Ollie Payne Kara Louise Alexander Leslie Alexander Paige Rider Kyrie Remy Rider-Williams Romeek Powel Sebastian Augustin Toni-Blaze Ibekwe Suzie Ezike Ashleigh Jaide Samuels Robinson Kyrie Rider Williams Paige Rider La-Myar James Sharolyn Falconer Aaliyan Williams Leon Marsh Keon Marsh Rose Carter Jordan Clarke Ronald Clarke Liam Gould Shane Mighty Nathan Evans Marcus Edwards Raphael Stanley Montana Thomas Daniel Badu Pablo Rodrigues Pablo Torres Brandon Balanta Fabian Mukeza Andre Gordon Ricardo Round Isaiah Prince Ekemba-Lewis Anastasia Princess Ekemba-Lewis Karen Rowe Adrien Miko Lesia Alexander David Sperring Mavis Sperring Joshua Sperring Elijah Sperring Tina Sperring Jordan Sperring-Lee Anthony Robinson Callum Mullings Roy Grey Marcia Roberts-Grey Ezrah Roberts-Grey Noah Jones Jake Jones Mason Jones Gabrielle Evans Darren Rowe Deniro Millings Lyrics: Intro Go ahead and fix your crown And watch it all burn in smoke Go ahead and stand your ground We’re on the long road to freedom Verse 1 Too much time tryna figure out why Too much time to be patient All this time you been feeding us lies Ain’t no truth in your statements Too much pain in These little white lies You left here All this time tryna figure out how we’re still here I take pride in the things that we’ve done Side by side in the revolution Won’t stay silent for things that I love Cus we know Dem Na care about us White men can’t jump but at least they can run Broke these chains just to put our hands up They could never see the kingdom coming You wanna see us all amount to nothing Chorus I can see your face see the light in your eyes I can see the change Feel the heat of the fire If you can feel the pain then you know you’re alive Both feet on the line By any means I will fight for you for you Bridge I’ve spent too many days in my head now Did you think we would forget, how? Too many destinies too many sentences Read now Read now see all this pain in the headlines But I have cried for the last time But know what happens see You would be blind if it was just an eye for an eye And what if you change the world We rise from the flames the victor its far from a perfect picture I know we sinful But we are human Would you be grateful if you took my place Say my name There is redemption In the steps we take Say 1 life n I’m gna use it Innocent til I am proven 1 last chance and you blew it 1 last dance in the ruins So much hate in your movements told me I couldn’t prove it 1 last prayer for the sinners You only learn what you witnessed I can see your face see the light in your eyes I can see the change Feel the heat of the fire If you can feel the pain then you know you’re alive Both feet on the line By any means I will fight For you for you Bridge I’ve spent too many days in my head now Did you think we would forget , how? Too many destinies too many sentences Read now Read now see all this pain in the headlines But I have cried for the last time But know what happens see You would be blind if it was just an eye for an eye
    https://wn.com/Jorja_Smith_By_Any_Means_(Official_Video)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)
      3:35
      HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)remove from playlist
    • HAMMERFALL - Any Means Necessary (Live) | Napalm Records
      3:46
      HAMMERFALL - Any Means Necessary (Live) | Napalm Recordsremove from playlist
    • Malcolm X |
      30:32
      Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainmentremove from playlist
    • Jorja Smith - By Any Means (Official Video)
      4:58
      Jorja Smith - By Any Means (Official Video)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)

    Official music video for HAMMERFALL "Any Means Necessary." GET THE ALBUM: http://store.nuclearblastusa.com/Artist/Hammerfall/11163 SUBSCRIBE to HAMMERFALL: http://bit.ly/subs-ham-yt SUBSCRIBE to NUCLEAR BLAST: http://bit.ly/subs-nb-yt Taken from the album "No Sacrifice, No Victory" out now via Nuclear Blast Records! PURCHASE ALBUM AT: Nuclear Blast USA http://store.nuclearblastusa.com/Artist/Hammerfall/11163 Nuclear Blast EUROPE http://www.nuclearblast.de/index.php?search=hammerfall&Action=showShopSearchResult&searchtype=band Nuclear Blast MP3 Store http://www.nuclearblast-musicshop.de/index.php?band_id=520 eMUSIC http://www.emusic.com/artist/hammerfall-MP3-Download/11701227.html NAPSTER http://free.napster.com/view/artist/index.html?id=12028127 RHAPSODY http://www.rhapsody.com/hammerfall iTUNES http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=6475279 AMAZON http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&field-keywords=hammerfall FYE http://www.fye.com/viewamgrefdata.htm?artistId=212623&product=&category=455366 BARNES AND NOBLE http://music.barnesandnoble.com/Artist/Hammerfall/c/247168
    3:35
    HAMMERFALL - Any Means Necessary (OFFICIAL MUSIC VIDEO)
    Official music video for HAMMERFALL "Any Means Necessary." GET THE ALBUM: http://store.nuc...
    published: 22 Jan 2009
    Play in Full Screen
    3:46
    HAMMERFALL - Any Means Necessary (Live) | Napalm Records
    Order "Live! Against The World" here: https://smarturl.it/LiveAgainstTheWorld Out on Octo...
    published: 23 Oct 2020
    Play in Full Screen
    30:32
    Malcolm X | "By Any Means Necessary: The Making of Malcolm X" | Warner Bros. Entertainment
    SUBSCRIBE to Warner Bros. Entertainment: http://bit.ly/32v18jf Connect with Warner Bros. ...
    published: 09 Feb 2021
    Play in Full Screen
    4:58
    Jorja Smith - By Any Means (Official Video)
    By Any Means, out now: https://orcd.co/byanymeans https://blacklivesmatters.carrd.co/ http...
    published: 10 Aug 2020
    Play in Full Screen

    By any means necessary

    By any means necessary is a translation of a phrase used by the French intellectual Jean-Paul Sartre in his play Dirty Hands. It entered the popular civil rights culture through a speech given by Malcolm X at the Organization of Afro-American Unity Founding Rally on June 28, 1964. It is generally considered to leave open all available tactics for the desired ends, including violence; however, the “necessary” qualifier adds a caveat—if violence is not necessary, then presumably, it should not be used.

    Jean-Paul Sartre

    The phrase is translation of a sentence used in French intellectual Jean-Paul Sartre's play Dirty Hands:

    Malcolm X

    It entered the popular culture through a speech given by Malcolm X in the last year of his life.

    Mandela case

    In the final scene of the 1992 movie Malcolm X, Nelson Mandela—recently released after 27 years of political imprisonment—appears as a schoolteacher in a Soweto classroom. Yet Mandela informed director Spike Lee that he could not utter the famous final phrase "by any means necessary" on camera fearing that the apartheid government would use it against him if he did. Lee obliged, and the final seconds of the film feature black-and-white footage of Malcolm X himself delivering the phrase.

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