- published: 05 Dec 2019
- views: 12801
'+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; })); }); -->
Axel Stordahl (August 8, 1913 – August 30, 1963) was an arranger who was active from the late 1930s through the 1950s. He is perhaps best known for his work with Frank Sinatra in the 1940s at Columbia Records. With his sophisticated orchestrations, Stordahl is credited with helping to bring pop arranging into the modern age.
Stordahl was born in Staten Island, New York to Norwegian immigrant parents. He began his career as a trumpeter in jazz bands which played in several dance bands around Long Island and the Catskills during the late 1920s and early 1930s. He also began arranging around this time, and in 1933 he joined Bert Bloch's orchestra in both capacities. Over the next couple of years, Stordahl sang on the side in a vocal trio dubbed the Three Esquires.
In 1935, he joined Tommy Dorsey's new orchestra and soon became the band's main arranger. In January 1940, Sinatra joined the group as vocalist, and it became apparent that Stordahl's arrangements were particularly well suited to the singer's voice.
Wild Wild West or The Wild Wild West may also refer to:
The Wild Wild West is an American television series that ran on CBS for four seasons (104 episodes) from September 17, 1965 to April 4, 1969. Two television movies were made with the original cast in 1979 and 1980, and the series was adapted for a motion picture in 1999.
Developed at a time when the television western was losing ground to the spy genre, this show was conceived by its creator, Michael Garrison, as "James Bond on horseback." Set during the administration of President Ulysses Grant (1869–77), the series followed Secret Service agents James West (Robert Conrad) and Artemus Gordon (Ross Martin) as they solved crimes, protected the President, and foiled the plans of megalomaniacal villains to take over all or part of the United States.
The show also featured a number of fantasy elements, such as the technologically advanced devices used by the agents and their adversaries. The combination of the Victorian era time-frame and the use of Verne-esque technology has inspired some to give the show credit as being one of the more "visible" origins of the steampunk subculture. These elements were accentuated even more in the 1999 movie adaptation.
The Wild Wild West is a 1921 short Western film directed by Lee Kohlmar and featuring Hoot Gibson.
Pistas A1 As Time Goes By A2 A Blues Serenade A3 It's Easy To Remember A4 That Old Feeling B1 Imagination B2 What Is There To Say B3 Love Letters B4 I'm Getting Sentimental Over You
"Night and Day" (1942) Frank Sinatra with Axel Stordahl
as time goes by a blues serenade it's easy to remember that old feeling imagination what is there to say? love letters i’m getting sentimental ouer you
Axel Stordahl Neiani Jasmine & Jade (1960) Dot Records (DLP 25282)
The Moon of Manakoora Composer: Alfred Newman Performer: Axel Stordahl & Orchestra Label: Dot DLP 25282 - Track A3 Recorded: 1960
Imagination from the LP 'Dreamtime' Composer: Jimmy Van Heusen Performer: The Strings Of Axel Stordahl Label: Capitol H445 - Track B1 Recorded: 1953
Frank Sinatra - The Coffee Song 1946 - Axel Stordahl orchestra
Provided to YouTube by Universe Remasterings Over the Rainbow (feat. Axel Stordahl and His Orchestra, the George Siravo Orchestra, Hugo Winterhalter and His Orchestra) · Frank Sinatra · Axel Stordahl and His Orchestra · the George Siravo Orchestra · Hugo Winterhalter and His Orchestra · Edgar Yip Harburg · Harold Arlen · Edgar Yip Harburg · Harold Arlen The Voice: Songs by Sinatra / Swing and Dance with Frank Sinatra (1942 - 1951 Columbia Years) ℗ Universe Remasterings Released on: 2013-01-01 Auto-generated by YouTube.
Written by Eric Maschwitz and Jack Strachey in 1935, recorded by Frank Sinatra on Columbia Records in 1946. As always, a real joy to add my voice to this Axel Stordahl arrangement.
Will Smith's official music video for 'Wild Wild West'. Click to listen to Will Smith on Spotify: http://smarturl.it/WSmithSpot?IQid=WSWWW As featured on Greatest Hits. Click to buy the track or album via iTunes: http://smarturl.it/WSmithGHiTunes?IQid=WSWWW Google Play: http://smarturl.it/WSmithWWWPlay?IQid=WSWWW Amazon: http://smarturl.it/WSmithGHAmz?IQid=WSWWW More from Will Smith Gettin Jiggy Wit It: https://youtu.be/3JcmQONgXJM Miami: https://youtu.be/IwBS6QGsH_4 Switch: https://youtu.be/uzUozo1628U More great 90s videos here: http://smarturl.it/Ultimate90?IQid=WSWWW Follow Will Smith Website: http://www.willsmith.com Facebook: https://www.facebook.com/WillSmith Subscribe to Will Smith on YouTube: http://smarturl.it/WSmithSub?IQid=WSWWW --------- Lyrics: Wild Wild West, Jim We...
Music video by Kool Moe Dee performing Wild Wild West.(C) 1987 Sony Music Entertainment
Clips from the first four Season Two episodes of Wild Wild West. These four episodes might very well represent the greatest collection of entertaining villains that ever appeared on television--each of them portrayed by an excellent character actor who brought just the right level of Ham to the roles: "Night of the Eccentrics" 9/16/66--Victor Buono as Count Manzeppi "Night of the Golden Cobra" 9/23/66--Boris Karloff as Mr. Singh "Night of the Raven" 9/30/16--Michael Dunn as Dr. Loveless "Night of the Big Blast" 10/7/16--Ida Lupino as Dr. Faustina please visit my blog at http://comicsradio.blogspot.com/
Wild Wild West movie clips: http://j.mp/1zUZ1jv BUY THE MOVIE: http://bit.ly/2bVuLq4 Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: When Miss East (Ling Bai) tries to get Jim West (Will Smith) shot, he goes on a shooting spree. FILM DESCRIPTION: Yet another TV series is revived for the big screen, as Will Smith and Kevin Kline join forces as James T. West and Artemus Gordon, the most sophisticated government agents of the 1860's, in the film adaptation of The Wild Wild West. West and Gordon represent two opposite ends of the personality scale: West is a smooth-talking charmer and man of action who prefers to shoot first and ask questions much, much later; while Gordon is intensely methodical and cerebral, with a genius for gadgets and mechanical innovations....
Hi guys, here's the new video preview of Wild Motherfuckers an italian duo formed by the most known Dj's, ZATOX & TATANKA! Follow Wild Motherfuckers: On Facebook: http://www.facebook.com/WildMF On Twitter: http://www.twitter.com/WmfInfo On Youtube: http://www.youtube.com/WildMotherfuckers And, if you don't do it already Follow Zatox: On Facebook: http://www.facebook.com/djzatoxcom On Twitter: http://twitter.com/DJZatox On Youtube: http://www.youtube.com/djzatoxofficial On Soundcloud: http://soundcloud.com/djzatox Website: http://www.djzatox.com Follow Tatanka: On Facebook: http://www.facebook.com/officialdjtatanka On Twitter: http://twitter.com/tatankadj On Youtube: http://www.youtube.com/officialdjtatanka On Soundcloud: http://soundcloud.com/officialdjtatanka
Follow our official Spotify Playlist: https://open.spotify.com/playlist/59eoyKtgLasipoKD19PmJk?si=b177b68d4fae4dea Get merchandising and help us grow: https://www.mandragora.mx Follow me on Instagram: https://www.instagram.com/holasoyneto Follow me on Spotify: https://open.spotify.com/artist/2Aasv... Follow me on Soundcloud: www.soundcloud.com/holasoynetobaby Follow me on Facebook: www.facebook.com/mandragoralive #psytrance #trancefamily #futureprog Hi, my name is Mandragora, I am a time traveller from 1354, while I was looking for weeds in the forest I fell into a wormhole, I traveled through infinite alternate realities for like a year, after I got bored of all that cosmic stuff I decided to camp on year 2012, then I found this weird music making box and I knew something big was c...
We may be a little late on this one but we've seen the comments! Here is our Ashe song! Its been a while since we did an overwatch song but if you wanna see more of these, make sure you hit that like button! Download on iTunes: http://bit.ly/nerdoutmusic Listen on Spotify: http://bit.ly/NerdoutSpotify 10,000 likes - ✅ UNLOCKED 1 Hour Version - https://youtu.be/EaPA5eVKqco 15,000 Likes - ✅ UNLOCK The Instrumental/Karaoke - https://youtu.be/W-4L78p-eoE 20,000 Likes - 🔒 UNLOCK The Live Performance [Must be unlocked within 2 months of upload date] Join our Discord: https://discord.gg/qKu9nGm Follow us on Twitter: https://twitter.com/nerdoutmusic Follow us on Facebook: https://www.facebook.com/nerdoutmusic Follow us on Spotify: http://bit.ly/NerdoutSpotify Follow us on Twitch: https://www.tw...
Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt Wild Wild West (1999) Official Trailer - Will Smith, Salma Hayek Movie HD The two best hired guns in the West must save President Grant from the clutches of a 19th century inventor-villain. Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
Wild Wild West movie clips: http://j.mp/1zUZ1jv BUY THE MOVIE: http://bit.ly/2bVuLq4 Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Jim (Will Smith) and Artemus (Kevin Kline) discover Spider Canyon and the mechanical beast that lives within. FILM DESCRIPTION: Yet another TV series is revived for the big screen, as Will Smith and Kevin Kline join forces as James T. West and Artemus Gordon, the most sophisticated government agents of the 1860's, in the film adaptation of The Wild Wild West. West and Gordon represent two opposite ends of the personality scale: West is a smooth-talking charmer and man of action who prefers to shoot first and ask questions much, much later; while Gordon is intensely methodical and cerebral, with a genius for gadgets and mechanica...
The scene in which Jim West & Artemis Gordon are fighting after escaping with the magnet's around their necks, easily one of the funniest scene's in the movie I couldn't find any videos for it when I wanted to watch it one day so I decided to make one myself All rights & products related to this film are property of Warner Bro's, I am not attempting to illegally share or profit from this movie... it is quite simply a small clip from a great movie, so here's hoping to doesnt get blocked or removed Like and share it guys!
Axel Stordahl (August 8, 1913 – August 30, 1963) was an arranger who was active from the late 1930s through the 1950s. He is perhaps best known for his work with Frank Sinatra in the 1940s at Columbia Records. With his sophisticated orchestrations, Stordahl is credited with helping to bring pop arranging into the modern age.
Stordahl was born in Staten Island, New York to Norwegian immigrant parents. He began his career as a trumpeter in jazz bands which played in several dance bands around Long Island and the Catskills during the late 1920s and early 1930s. He also began arranging around this time, and in 1933 he joined Bert Bloch's orchestra in both capacities. Over the next couple of years, Stordahl sang on the side in a vocal trio dubbed the Three Esquires.
In 1935, he joined Tommy Dorsey's new orchestra and soon became the band's main arranger. In January 1940, Sinatra joined the group as vocalist, and it became apparent that Stordahl's arrangements were particularly well suited to the singer's voice.
Out to the west there's a trail that leads somewhere
And a call of the wild that takes some people there
Through Monument Valley to California sun
From New Amsterdam to the way the west was won
Well, years will go by when you won't get nowhere
You're cold and you're tired and you're free and you don't care
You keep pushin' on when your friends keep turning back
And you keep building towns and laying railroad track
And things get crazy and you have to use that gun
And you wonder if this is the way the west is won
But keep thinkin' that way and you won't get nowhere
'Cause you got a right just to get where you're goin' to
Gotta keep runnin', gotta be the best
Gotta walk tall in the wild west
You keep on the move or you try to settle down
And there's strangers from further and further away in town
And you give them some tools and they know what must be done
And you know who's the boss and you know the west was won
And they say
Where I come from, you can't get nowhere
I'm breaking my back for some opportunity
Making my fortune and I'll take it all home
Tell my kids about the wild west
And there's still beauty as the flowers bloom on desert sands
And there's still hope as the sun rises over the Rio Grande
But it's so crowded now and nothing's simple anymore
And they're still knocking at your door
You hear guns in the night and you hope they're not for you
'Cause a dog eats a dog then he eats his master too
In the land of the free and the not so often brave
There's both love or money now choose which you will save
But keep thinkin' that way and you won't get nowhere
'Cause you got a right just to get where you're goin' to
Gotta keep runnin', gotta be the best
Gotta walk tall in the wild west
Keep thinkin' that way and you won't get nowhere
'Cause you got a right just to get where you're goin' to
Gotta keep runnin', gotta be the best
Gotta walk tall in the wild west
Gotta walk tall in the wild west