- published: 05 May 2023
- views: 130148
'+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; })); }); -->
Ralph Molina (born June 22, 1943) is an American musician, best known as the drummer for Neil Young's backing band Crazy Horse.
Born in Puerto Rico, Molina has been a member of Crazy Horse since they were formed in 1962 as Danny & the Memories. He has remained throughout the band's many personnel changes, and has performed on all 20 releases by the band, with and without Young. Molina's style of drumming is characterized by simple, but steady beats and fills.
"Cowgirl in the Sand" is a song written by Neil Young and first released on his 1969 album Everybody Knows This Is Nowhere. Young has also included the live versions of the song on several albums and on the Crosby, Stills, Nash and Young album Four Way Street. It has also been covered by The Byrds on their self-titled album. Like two other songs from Everybody Knows This Is Nowhere, "Cinnamon Girl" and "Down by the River", Young wrote "Cowgirl in the Sand" while he was suffering from the flu with a high fever at his home in Topanga, California.
The song's lyrics are about a promiscuous woman, or perhaps three different women if each verse describes a different woman. Author Nigel Williamson describes the lyrics as "obscure and dreamlike, addressed to some idealized woman." Music critic Johnny Rogan describes the lyrics as "oblique", describing the woman as being both "idealistic" and "idealized" by the singer, referring particularly to the line "When so many love you, is it the same?" Author David Downing suggests that this line reflects ambiguity as to whether increased sexual freedom is a blessing or whether it is a curse. Downing, however, feels that the next line, "it's the woman in you that makes you want to play this game", was already outdated when the song was released in the late 1960s. At the time of the song's initial release, Rolling Stone Magazine described the lyrics as "quietly accusative". Young himself has claimed that "Cowgirl in the Sand" is about his impression of "beaches in Spain", despite the fact that when he wrote the song he had never been to Spain.
Nils Lofgren tells a story about working with Neil Young on the song "Southern Man"
George Whitsell jamming with Ralph Molina
Roger Waters on Joe Rogan. Joe Rogan #1878
A haunting little track from Ralph's excellent new album ' Love and Inspiration'
Molina, Talbot, Lofgren, Young - It's Magical from the album “All Roads Lead Home” Written by Ralph Molina - Blue Treasure Music BMI Produced by Ralph Molina 2023 NYA Records LLC under exclusive license to Reprise Records. Musicians: Ralph Molina - vocals Marco Cecilia - piano Joshua Sklair - lead guitar Jan King - guitar Three dear old friends and Crazy Horse bandmates for over 50 years, Ralph Molina, Billy Talbot and Nils Lofgren, kept recording their songs at home during the pandemic and are proud to share this collection of music. Lifelong friend and bandmate Neil Young adds a special track to complete this unique 10-song compilation. Friends with deep bonds, though at times on different paths, found that All Roads Lead Home. Dedicated to Danny Whitten, David Brigs, Elliot Roberts...
Neil Young & Crazy Horse, son Neil Young (guitarra y voz), Frank Sampedro (guitarra), Billy Talbot (bajo), Ralph Molina (bateria), en vivo para Austin City Limits Festival 2012
Ralph Molina is a drummer, singer, and solo artist. Ralph has been a member of Crazy Horse since their beginning in 1962 as Danny & the Memories. He has performed on all releases by Crazy Horse, with and without Neil Young. We talked about everything from his musical roots with singing in doo-wop groups in New York City, to how he and the band keep it spontaneous when recording and performing with Neil Young, to how Ralph has lasted so long in the music world. In this episode, Ralph generously shares a lot of wisdom, talks about his future plans in Crazy Horse with Neil Young, and shares some good stories with me. Please check out Ralph Molina's solo album "Love & Inspiration". * If you'd like to support The Comin' Home Podcast With John Alan, you can do that at one of the links her...
Provided to YouTube by CDBaby Follow That Star · Ralph Molina Love & Inspiration ℗ 2019 Blue Treasure Music Inc. Released on: 2019-05-04 Auto-generated by YouTube.
https://www.rollingstone.com/music/music-news/neil-young-chrome-hearts-down-by-the-river-review-1235110707 Neil Young and the Chrome Hearts channeled Crazy Horse at their first headlining show in Port Chester, New York. Powered by VoiceFeed. https://voicefeed.web.app?utm_source=youtube_musicnews&utm_medium=podcast Developer:https://twitter.com/_horotter
Another lovely track from Ralph's new album 'Love and Inspiration'
Provided to YouTube by Reprise Cowgirl in the Sand (2009 Remaster) · Neil Young · Crazy Horse Everybody Knows This Is Nowhere ℗ 2009 Reprise Records Bass: Billy Talbot Unknown: Crazy Horse Electric Guitar: Danny Whitten Vocals: Danny Whitten Producer, Recorded by: David Briggs Electric Guitar: Neil Young Harmonica, Producer: Neil Young Lead Vocals: Neil Young Drums, Vocals: Ralph Molina Writer: Neil Young Auto-generated by YouTube.
Cowgirl In The Sand - Recorded 12/4/1970 - Official Bootleg! Neil Young Carnegie Hall Hear it now at http://www.NeilYoungArchives.com Visit the store at https://NeilYoungArchives.com to get yours now. Experience all of Neil Young's music at Neil Young Archives!
Neil Young performs "Cowgirl in the Sand" at the Farm Aid concert in Bristow, Virginia on September 17, 2000. Farm Aid was started by Willie Nelson, Neil Young and John Mellencamp in 1985 to keep family farmers on the land and has worked since then to make sure everyone has access to good food from family farmers. Dave Matthews joined Farm Aid's board of directors in 2001. For more information about Farm Aid, visit: http://farmaid.org/youtube Farm Aid's performances are donated by the artists in order to raise funds and raise awareness for family farmers. They've raised their voices to help — what can you do?
Provided to YouTube by Reprise Cowgirl in the Sand · Neil Young Greatest Hits ℗ 1969 Reprise Records Bass Guitar: Billy Talbot Guitar: Danny Whitten Harmony Vocals: Danny Whitten Engineer: David Briggs Engineer: Henry Saskowski Engineer: Kendal Pacios Guitar: Neil Young Lead Vocals: Neil Young Drums: Ralph Molina Harmony Vocals: Ralph Molina Writer: Neil Young Auto-generated by YouTube.
Cowgirl in the Sand - Live (1971) Neil Young - Young Shakespeare Live Out Now Hear it now at NeilYoungArchives.com! From the album Young Shakespeare Visit the store at https://NeilYoungArchives.com to order yours now. Experience all of Neil Young's music at Neil Young Archives!
Yes it's Fillmore. Yes he's Danny W.
Provided to YouTube by Atlantic Records Cowgirl in the Sand (Live) · Crosby, Stills, Nash & Young 4 Way Street ℗ 1992 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States Engineer: Bill Halverson Bass Guitar: Calvin Samuels Guitar, Vocals: David Crosby Producer: David Crosby Guitar, Organ, Piano, Vocals: Graham Nash Producer: Graham Nash Remastering Engineer: Joe Gastwirt Drums: Johnny Barbata Guitar, Vocals: Neil Young Producer: Neil Young Guitar, Organ, Piano, Vocals: Stephen Stills Producer: Stephen Stills Writer: Neil Young Auto-generated by YouTube.
Neil Young performs "Cowgirl in the Sand" at the Farm Aid concert in Seattle, Washington on September 18, 2004. Farm Aid was started by Willie Nelson, Neil Young and John Mellencamp in 1985 to keep family farmers on the land and has worked since then to make sure everyone has access to good food from family farmers. Dave Matthews joined Farm Aid's board of directors in 2001. For more information about Farm Aid, visit: http://farmaid.org/youtube Farm Aid's performances are donated by the artists in order to raise funds and raise awareness for family farmers. They've raised their voices to help — what can you do?
Brian Dolzani as The Loner: The Music of Neil Young Park City Music Hall Bridgeport, CT 7/11/24 FULL SHOW * Solo set & band set * Brian Dolzani: vocals/guitar Todd Waldron: backup vocals/guitar Bill Conroy: bass John Macchia: drums Live sound: Mike Galgano Lights: Adam Welsh Video render + audio mixing: Brian Dolzani Connecticut-based songwriter Brian Dolzani's Neil Young appreciation show captures the essence of Neil's music more than anyone you'll likely hear. Along with his own, lengthy catalog of original self-penned songs, Brian also performs both acoustic solo sets along with a full band show honoring the rock-n-roll legend called, "Brian Dolzani as The Loner: The Music of Neil Young". SUBSCRIBE today and come out to a show! SIGN UP FOR Brian's tour schedule: https://tinyurl.c...
Provided to YouTube by Reprise Cowgirl in the Sand (2017 Remaster) · Neil Young · Crazy Horse Decade ℗ 1969 Reprise Records Bass: Billy Talbot Unknown: Crazy Horse Electric Guitar: Danny Whitten Vocals: Danny Whitten Producer, Recorded By: David Briggs Electric Guitar: Neil Young Harmonica: Neil Young Producer: Neil Young Lead Vocals: Neil Young Drums, Vocals: Ralph Molina Writer: Neil Young Auto-generated by YouTube.
Ralph Molina (born June 22, 1943) is an American musician, best known as the drummer for Neil Young's backing band Crazy Horse.
Born in Puerto Rico, Molina has been a member of Crazy Horse since they were formed in 1962 as Danny & the Memories. He has remained throughout the band's many personnel changes, and has performed on all 20 releases by the band, with and without Young. Molina's style of drumming is characterized by simple, but steady beats and fills.
Hello cowgirl in the sand
Is this place
at your command
Can I stay
for a little while
Can I see your
sweet sweet smile
Old enough now
to change your name
When so many love you
is it the same?
It's the woman in you
that makes you want
to play this game.
Hello ruby in the dust
Has your band
begun to rust
After all
the sin we've had
I thought
we might turn back
Old enough now
to change your name
When so many love you
is it the same
It's the woman in you
that makes you want
to play this game.
Hello woman of my dreams
Is this not
the way it seems
Purple words
on a grey background
To be a woman
and to be turned down
Old enough now
to change your name
When so many love you
is it the same
It's the woman in you
that makes you want