- 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.
The Netherlands (i/ˈnɛðərləndz/; Dutch: Nederland [ˈneːdərˌlɑnt]) is the main "constituent country" (Dutch: land) of the Kingdom of the Netherlands. It is a small, densely populated country located in Western Europe with three island territories in the Caribbean. The European part of the Netherlands borders Germany to the east, Belgium to the south, and the North Sea to the northwest, sharing maritime borders with Belgium, the United Kingdom and Germany. The largest and most important cities in the Netherlands are Amsterdam, The Hague and Rotterdam. Amsterdam is the country's capital, while The Hague holds the Dutch seat of government and parliament. The port of Rotterdam is the largest port in Europe – as large as the next three largest combined – and was the world's largest port between 1962 and 2004. The name Holland is also frequently used to informally refer to the whole of the country of the Netherlands.
"Netherlands" literally means "lower countries", influenced by its low land and flat geography, with only about 50% of its land exceeding one metre above sea level. Most of the areas below sea level are man-made. Since the late 16th century, large areas (polders) have been reclaimed from the sea and lakes, amounting to nearly 17% of the country's current land mass.
The Netherlands (Dutch: Nederland) is a country located in Western Europe.
Netherlands or Nederland may also refer to:
Amsterdam (English /ˈæmstərdæm/ or /ˌæmstərˈdæm/;Dutch: [ɑmstərˈdɑm]) is the capital city and most populous city of the Kingdom of the Netherlands. Its status as the Dutch capital is mandated by the Constitution of the Netherlands though it is not the seat of the Dutch government, which is The Hague. Amsterdam has a population of 834,119 within the city proper, 1,329,779 in the urban area and 1,603,531 in the metropolitan area. The city region has an approximate population of 2,431,000. The city is located in the province of North Holland in the west of the country, and is also North Holland's largest city. It comprises much of the northern part of the Randstad, one of the larger conurbations in Europe, with a population of approximately 7 million.
Amsterdam's name derives from Amstelredamme, indicative of the city's origin as a dam of the river Amstel. Originating as a small fishing village in the late 12th century, Amsterdam became one of the most important ports in the world during the Dutch Golden Age (17th century), a result of its innovative developments in trade. During that time, the city was the leading center for finance and diamonds. In the 19th and 20th centuries the city expanded, and many new neighbourhoods and suburbs were planned and built. The 17th-century canals of Amsterdam and the 19–20th century Defence Line of Amsterdam are on the UNESCO World Heritage List.
Raï is a 1995 French film directed by Thomas Glou. It won the Golden Leopard at the 1995 Locarno International Film Festival.
It won the Golden Leopard at the 1995 Locarno International Film Festival.
Raï at the Internet Movie Database
The Haskins Rifle, also known as the RAI 300 (Research Armament Model 300) or Haskins M500 rifle was a bolt-action weapon designed by Jerry Haskins between 1981 and 1982 for snipers in the US Military. Unlike most military sniper rifles, the Haskins was purpose-built for the military, not reworked from an existing civilian firearm - another such sniper rifle was the Soviet SVD.
The Haskins was developed from a US Army requirement for an antimaterial capability. Standard 7.62×51mm sniper rifles were unable to meet the penetration requirements. Several experimental cartridges were produced, culminating in a convertible lightweight bolt-action rifle able to use .50 caliber machine-gun cartridges, or a lighter, faster, then-wildcat cartridge optimized for antipersonnel use, with some antimaterial ability.
The US Army declined to purchase the lighter rifle, but purchased a small number of the .50 caliber rifles. They are now used by some United States Army Special Forces snipers. The Haskins m500 sniper rifle fires a .50 caliber round as far as 2 km and can still hit a target the size of a garbage bin.
Rai 4 (pronounced Rai Quattro) is an Entertainment television channel broadcast by Italian state broadcaster Rai on digital terrestrial television in Italy and digital satellite television through Tivù Sat. Launched on 14 July 2008 with the film Elephant, Rai 4's programming includes films, TV series and cartoons.
A few programmes include:
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'
🌍 Welcome to our channel! 🌍 In today's video, we embark on an incredible journey through the wonders of the Netherlands. 🇳🇱 From the bustling streets of Amsterdam to the tranquil canals of Giethoorn, join us as we uncover the rich history, vibrant culture, and stunning landscapes that make the Netherlands a must-visit destination. ✨ Discover the iconic windmills of Kinderdijk, the colorful tulip fields of Keukenhof, and the historic cities like Delft and Haarlem. Immerse yourself in the vibrant nightlife of Groningen and the modern architecture of Rotterdam. Wander through the medieval streets of Utrecht and experience the international ambiance of The Hague. Share your favorite spots in the Netherlands below – we’d love to hear your stories! Safe travels, and tot ziens! #Netherlands #...
Get FREE breakfast for life with HelloFresh, use code FREELIFELORE at https://bit.ly/3WdSpzY ! One free breafast item per box while subscription is active Watch more than 30 additional exclusive RealLifeLore videos on Nebula in Modern Conflicts: https://nebula.tv/modernconflicts Please Subscribe: / @reallifelore RealLifeLore on Spotify: https://spoti.fi/47yMfzp RealLifeLore on Facebook: / reallifelore Select video clips courtesy of Getty Images Select video clips courtesy of the AP Archive Special thanks to MapTiler, OpenStreetMap Contributors, and GEOlayers https://www.maptiler.com/copyright/ https://www.openstreetmap.org/copyright https://aescripts.com/geolayers/
Discover the fascinating world of the Netherlands in this captivating documentary! 🌷 From its picturesque canals and historic windmills to its progressive values and open-minded culture, the Netherlands is a land that blends tradition with modernity like no other. This video explores the secrets behind the country’s reputation as one of the most liberal nations on Earth. We’ll uncover what makes Dutch society so unique, the charm of their breathtaking women, and how its relaxed lifestyle attracts people from around the globe. Whether you’re curious about the cost of living, Dutch cuisine, stunning architecture, or its vibrant nightlife, this documentary has it all! Learn about Amsterdam’s famous Red Light District, the legalization of marijuana, and the Dutch commitment to sustainability ...
🗓️ Netherlands v Argentina: 2022 FIFA World Cup (December 9, 2022) Watch full World Cup matches and more on FIFA+: https://www.plus.fifa.com/en/showcase/bcc8b05a-2210-4e1f-9d45-edc927c90987 Follow FIFA World Cup & FIFA Women's World Cup: 👉 https://www.instagram.com/fifaworldcup 👉 https://www.instagram.com/fifawomensworldcup 👉 https://twitter.com/FIFAWorldCup 👉 https://twitter.com/FIFAWWC 👉 https://www.facebook.com/fifaworldcup 👉 https://www.facebook.com/fifawomensworldcup 👉 https://www.tiktok.com/@fifaworldcup 👉 https://www.tiktok.com/@fifawomensworldcup #Netherlands #Argentina #FIFAWorldCup
An apartment building was hit by an explosion and fire in a residential neighbourhood of the Dutch city of The Hague on Saturday morning, the local fire department said, with at least four people injured. "At around 6:15 a.m. a three-story apartment building partially collapsed and a fire broke out," the Hague fire department said in a statement. #hague #news18 #englishnews News18 Mobile App - https://onelink.to/desc-youtube
What are the pros and cons of living in The Netherlands? It doesn't matter whether you're relocating for business, education, or just because you want a change of scenery; moving to a new nation may be stressful for a lot of people. Therefore, before to deciding to live in Holland, you have to take into consideration a variety of variables, including the cost of living, the community, the school system, the level of safety, the availability of employment, and the environment. According to the third rule of Newton, which states that "every act has an equal and opposing response," living in the Netherlands has both positive and negative aspects to it. Consider all of the perks of living in the Netherlands, then make a final decision about making the move there. PROS: 1. High Quality Educati...
Life in NETHERLANDS: The WORLD'S MOST LIBERAL Country with EXTREMELY BEAUTIFUL WOMEN - Documentary Explore the captivating "Travel Documentary" that takes you deep into the Netherlands, one of the world's most liberal countries. This video dives into life in the Netherlands, shedding light on the unique, open-minded culture and its fascinating blend of modernity with tradition. Discover the most interesting facts about Netherlands – from beautiful landscapes to the impressive bike culture, and the vibrant art scene in Amsterdam. If you're an expat curious about things to do in Netherlands Amsterdam, you'll find out all about the welcoming Netherlands people and their warm hospitality. We explore the lives of the women of Netherlands, known for their beauty, intelligence, and independence...
16 Strange And Crazy Things That Exist Only In The Netherlands! The Netherlands is a small but vibrant country located in Northwestern Europe. Known for its iconic windmills, some of which are centuries old, these windmills are not only a proud symbol of the nation but also play a crucial role in shaping the country’s beautiful landscape. However, few know that behind one of the world’s most livable nations lies a darker side. Perhaps the most surprising aspect is the world’s most bustling “red-light district”. So why does a country viewed as a paradise for millions have such a shocking side? We’ll explore that in this video about 16 shocking facts about the Netherlands.
I've lived in the Netherlands for more than 20 years as an American expat, and there's so much I love about this country—but there are also a few things that I have struggled to adjust to. In this video, I share my honest thoughts on some of the challenges, from the long grey days of winter and the conformist culture to the limited sense of personal space. This isn’t about criticism—it’s about offering a balanced perspective on life as an expat in the Netherlands.
#shorts #kwoowk
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.