- published: 09 Jun 2023
- views: 1987697
'+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; })); }); -->
"Paul Revere" is a song by American hip hop group Beastie Boys, released as the third single from their debut album Licensed to Ill (1986). It was written by Adam Horovitz, Joseph Simmons, Darryl McDaniels, and Rick Rubin. It was produced by Rick Rubin and the Beastie Boys. The song tells a fictional story of how the Beastie Boys met.
Adam Horovitz told how the song evolved from an incident when the Beastie Boys were waiting outside a recording studio for Run-D.M.C., when Joseph Simmons ("Run") suddenly came running down the street screaming incoherently. When he reached the Beastie Boys, he said "Here's a little story I got to tell...". After much confusion, Simmons stated "THAT's the song". The band worked on it from there.
In 2007, an artist called Kia Shine released a single called "Krispy" with a similar beat, raising questions about copyright infringement.
The song tells a fictional story of how Adrock, Mike D, and MCA first met. Adrock describes riding through the desert on a horse named Paul Revere (hence, the title of the song) with a quart of beer, on the run from the police. He runs into MCA, who asks him for a drink. When Adrock refuses, MCA pulls a gun on him and says, "You got two choices of what you can do...I can blow you away or you can ride with me." Adrock agrees, saying that he'll go if they can get to the border because "The sheriff's after me for what I did to his daughter".
Paul Revere (/rɪˈvɪər/; December 21, 1734 O.S. – May 10, 1818) was an American silversmith, engraver, early industrialist, and a Patriot in the American Revolution. He is best known for alerting the Colonial militia to the approach of British forces before the battles of Lexington and Concord, as dramatized in Henry Wadsworth Longfellow's poem, "Paul Revere's Ride".
Revere was a prosperous and prominent Boston silversmith, who helped organize an intelligence and alarm system to keep watch on the British military. Revere later served as a Massachusetts militia officer, though his service culminated after the Penobscot Expedition, one of the most disastrous campaigns of the American Revolutionary War, for which he was absolved of blame. Following the war, Revere returned to his silversmith trade and used the profits from his expanding business to finance his work in iron casting, bronze bell and cannon casting, and the forging of copper bolts and spikes. Finally in 1800 he became the first American to successfully roll copper into sheets for use as sheathing on naval vessels.
Paul Revere & the Raiders was an American rock band that saw considerable U.S. mainstream success in the second half of the 1960s and early 1970s. Among their hits were the songs "Kicks" (1966; ranked No. 400 on Rolling Stone's list of The 500 Greatest Songs of All Time), "Hungry" (1966), "Him Or Me – What's It Gonna Be?" (1967) and the Platinum-certified classic No. 1 single "Indian Reservation" (1971).
Initially based in Boise, Idaho, the Raiders began as an instrumental rock band led by organist and founder Paul Revere Dick (January 7, 1938 – October 4, 2014).
In his early 20s, Revere owned several restaurants in Caldwell, Idaho, and first met singer Mark Lindsay (born March 9, 1942, Eugene, Oregon) while picking up hamburger buns from the bakery where Lindsay worked. The circumstance of their meeting was later referred to in the tongue-in-cheek song "Legend of Paul Revere", recorded by the group. Lindsay joined Revere's band in 1958. Originally called the Downbeats, they changed their name to Paul Revere & the Raiders in 1960 on the eve of their first record release for Gardena Records. The band garnered their first hit in the Pacific Northwest in 1961, with the instrumental "Like, Long Hair". The record had enough national appeal that it peaked at No. 38 on the Billboard chart on April 17, 1961. When Revere was drafted for military service, he became a conscientious objector and worked as a cook at a mental institution for a year and a half of deferred service. During the same time period, Lindsay pumped gas in Wilsonville, Oregon. On the strength of their Top 40 single, Lindsay toured the U.S. in the summer of 1961 with a band that featured Leon Russell taking Revere's place on piano.
Seeing Sounds is the third studio album by American funk rock band N.E.R.D released June 10, 2008 on Star Trak Entertainment and Interscope Records in the United States. After ending their contract with Virgin Records in 2005, the band felt their previous album Fly or Die (2004) was too consistent. Using their own money, the band recorded the album in Florida and California. The album was produced solely by record production duo The Neptunes, consisting of Pharrell Williams and Chad Hugo, with additional assistance by rock band Spymob and was mainly written by Williams. The album's title, as well as its content, revolves around the neurological phenomenon of synesthesia, the mixing of sensory modalities.
The album debuted at number seven on the U.S. Billboard 200 chart, selling 80,000 in its first week. It peaked in the top 20 in Australia, Canada, the Netherlands, Switzerland and the United Kingdom, while also charting in the several other countries. Upon its release, Seeing Sounds received generally mixed to positive reviews from most music critics. Some writers called the record N.E.R.D's best album to date and praised its production, while others negatively criticized Williams' singing and the album's lyrical content.
"Sooner or Later" is a song by post-grunge/alternative metal band Breaking Benjamin. It is the second single of their second album released in 2004, We Are Not Alone.
The song received a fair amount of radio play, as it reached No. 2 on the Mainstream Rock chart, No. 7 on the Alternative Songs chart and No. 99 on the Hot 100. The song was performed live on The Tonight Show with Jay Leno, April 8, 2005.
As of February 11, 2010, Sooner or Later has been released as downloadable content on Guitar Hero 5 as part of the Breaking Benjamin Track Pack, along with two other singles: "Until the End" and "Give Me a Sign".
A music video was made for "Sooner or Later". The music video featured the band playing in a small enclosed area surrounded by screens, showing clips of a woman going from place to place. As she enters the room, the band is gone showing on the screens as they walk away.
"Sooner or Later" is a song recorded by American country music group The Forester Sisters on their 1987 album You Again. In 1989, the song was recorded by country artist Eddy Raven and released in December 1989 as the third single from his album Temporary Sanity. The song reached #6 on the Billboard Hot Country Singles & Tracks chart. The song was written by Susan Longacre, Bill LaBounty and Beckie Foster.
Paul Revere (1734–1818), was an American activist and artisan.
Paul Revere may also refer to:
“Stick Season (We’ll All Be Here Forever)” Out Now: https://noahkahan.lnk.to/StickSeasonWABHF Follow Noah Kahan: Facebook: http://facebook.com/noahkahanmusic Instagram: http://instagram.com/noahkahanmusic Twitter: http://twitter.com/noahkahan TikTok: https://www.tiktok.com/@noahkahanmusic Spotify: https://republic.lnk.to/NoahKahanSpYD SoundCloud: http://soundcloud.com/noahkahan Lyrics: County line, I’m counting down mailboxes until my house This place had a heartbeat in it’s day Vail bought the mountains and nothing was the same Yes, the boys are drunk, the sun is high Their license plates Live Free or Die But it just ain't that simple, it never was We’ll drink to New Year’s then they’ll leave me to clean up One day I’m gonna cut it clear Ride like Paul Revere and when they...
Provided to YouTube by Universal Music Group Paul Revere · Beastie Boys Licensed To Ill ℗ 1986 UMG Recordings, Inc. Released on: 1986-01-01 Producer: Rick Rubin Producer: Beastie Boys Studio Personnel, Engineer: Steve Ett Composer Lyricist: Darryl McDaniels Composer Lyricist: Joseph Simmons Composer Lyricist: Adam Keefe Horovitz Composer Lyricist: Rick Rubin Auto-generated by YouTube.
“Stick Season (Forever)” Out Now: https://noahkahan.lnk.to/SSForeverVD Follow Noah: Facebook: https://www.facebook.com/noahkahanmusic/ Instagram: https://www.instagram.com/noahkahanmusic Twitter: https://twitter.com/NoahKahan TikTok: https://www.tiktok.com/@noahkahanmusic Spotify: https://republic.lnk.to/NoahKahanSpYD SoundCloud: https://soundcloud.com/noahkahan Lyrics: County line, I’m counting down mailboxes until my house This place had a heartbeat in it’s day Vail bought the mountains and nothing was the same Yes, the boys are drunk, the sun is high Their license plates Live Free or Die But it just ain't that simple, it never was We’ll drink to New Year’s then they’ll leave me to clean up One day I’m gonna cut it clear Ride like Paul Revere and when they ask me who I am I...
Paul Revere was a Patriot leader and symbol of the American Revolution. Find out more about the man who infamously warned the minutemen of a British invasion in 1775 in this video. #Biography Subscribe for more from HISTORY: http://histv.co/SubscribeHistoryYT Explore the life of Paul Revere: http://www.history.com/topics/american-revolution/paul-revere 10 things you might not know about Paul Revere: http://www.history.com/news/history-lists/11-things-you-may-not-know-about-paul-revere Who were the Sons of Liberty? http://www.history.com/shows/sons-of-liberty/infographics/sons-of-liberty Learn the story behind Revere's court-martial: http://www.history.com/news/the-court-martial-of-paul-revere Revere wasn't the only midnight rider. Get to know William Dawes: http://www.history.com/ne...
https://www.patreon.com/homeschoolpop Learn about Paul Revere in this short learning video for kids! You will learn basic facts about Paul Revere and the role he played in the American Revolutionary War! ❤️ Homeschool Pop? Join our team and get tattoos here: http://homeschoolpop.com Thanks for learning with us today! We hope to see you next video! Homeschool Pop Team
After researching Paul Revere's midnight ride on April 18, 1775, I discovered that the story I heard growing up—you know the one where Paul Revere rides through the streets of Boston courageously shouting, "The British are coming!"—isn't actually true!!! The story originated with poet Henry Wadsworth Longfellow, who lived from 1807 to 1882. A few years after the events of April 18, 1775, Longfellow wrote a poem about Paul Revere's ride... but he stretched the truth a little. First of all, there were two riders. Paul Revere and William Dawes, who rode on a different path than Revere in case one of them got caught. And secondly, Paul Revere never actually said "the British are coming," because the British were already there. Revere's mission wasn't to warn the Minutemen about the British...
About America: Facts vs. Fiction: Former Naval officer Jamie Kaler presents a wake-up call about the hidden facts behind the most familiar and beloved stories about our country's history. Start Streaming ► https://www.discoveryplus.com/show/america-facts-vs-fiction Subscribe to discovery+ on YouTube: https://bit.ly/SubscribeDiscoveryPlus Facebook: https://www.facebook.com/discoveryplus/ Instagram: https://www.instagram.com/discoveryplus/ Twitter: https://twitter.com/discoveryplus/
Paul Revere & The Raiders - Indian Reservation HQ Sound
A dramatic reading of “Paul Revere’s Ride” with subtitles and sound effects. The full text of Henry Wadsworth Longfellow’s classic poem is included. Perfect to use as a read aloud or as audio support for students! Teachers: Click the links below to get teaching materials you can use with this video. “Paul Revere’s Ride” Printable & Digital Unit Plan https://www.teacherspayteachers.com/Product/Paul-Reveres-Ride-Unit-Poetry-Activities-Longfellow-Printable-and-Digital-2205960 “Paul Revere’s Ride” FREE Comprehension & Analysis Questions https://www.litinfocus.com/paul-reveres-ride-analysis-questions-and-comprehension-activities/ “Paul Revere’s Ride” FREE PDF Printable https://www.litinfocus.com/free-paul-reveres-ride-printable-pdf/
Artist:Beastie Boys song:Paul Revere disclaimer: This video is for listening purpose only. I do not own the rights to the content!
Paul Revere & The Raiders - Indian Reservation HQ Sound
"Hungry" by Paul Revere & The Raiders Listen to Paul Revere & The Raiders: https://paulrevereandtheraiders.lnk.to/listenYD Follow Paul Revere & The Raiders: Facebook: https://PaulRevereandTheRaiders.lnk.to/followFI Instagram: https://PaulRevereandTheRaiders.lnk.to/followII Spotify: https://PaulRevereandTheRaiders.lnk.to/followSI Chorus: 'Cause I'm hungry for those good things, baby Hungry through and through I'm hungry for that sweet life, baby With a real fine girl like you Yes, I'm hungry for those good things, baby Hungry through and through Well, I'm hungry for that sweet life, baby With a real fine girl like you #PaulRevereandTheRaiders #Hungry #classicrock
One of their best songs.
"Kicks" by Paul Revere and The Raiders Listen to Paul Revere & The Raiders: https://paulrevereandtheraiders.lnk.to/listenYD Follow Paul Revere & The Raiders: Facebook: https://PaulRevereandTheRaiders.lnk.to/followFI Instagram: https://PaulRevereandTheRaiders.lnk.to/followII Spotify: https://PaulRevereandTheRaiders.lnk.to/followSI Chorus: And don't it seem like Kicks just keep gettin' harder to find And all your kicks ain't bringin' you peace of mind Before you find out it's too late, girl, you better get straight No, but not with kicks #PaulRevere #TheRaiders #Kicks #OfficialAudio
Paul Revere & The Raiders "Him Or Me - What's It Gonna Be?" on The Ed Sullivan Show, April 30, 1967. Subscribe now to never miss an update: https://ume.lnk.to/EdSullivanSubscribe Watch Motown performances from The Ed Sullivan Show https://youtube.com/watch?v=B9YrYoY0N4I&list=PLQWND5qZhbj3tfQKiK-5FzjLSTUz5WRTf Watch classic Rock and Roll performances from The Ed Sullivan Show: https://www.youtube.com/watch?v=yxrz00XSOAo&list=PLQWND5qZhbj06AA1fnZQnHvOqP5ZctF8Y Watch Iconic Singers perform on The Ed Sullivan Show: https://www.youtube.com/watch?v=MIIU9xkGAMs&list=PLQWND5qZhbj1fSTRzLrpV3vLO1yOGx8vH Sign up to receive the Ed Sullivan Show newsletter! https://EdSullivan.lnk.to/SubscribeToEmail Follow The Ed Sullivan Show: Website http://edsullivan.com/ Facebook https://facebook.com/EdSulliv...
I understand alot of the pictures are of Native-Americans from other tribes, but there simply were not enough descent Cherokee pictures to do the video. Thanks ..Mike ..... Besides, isn't the real name of the song"Indian Reservation"?
I don't own the copyrights to any of the songs posted and no money is being made from any of my postings. For entertainment use. See song listing in comments section.
The controversial TV show The Smothers Brothers Comedy Hour provided a perfect setting for Paul Revere & the Raiders in early 1967. Both the Raiders and the Smothers Brothers, (Tom & Dick) were at their zenith. Looking completely sleek, lean and mean in their cool and sexy streamlined white tights and hip-length white velvet jackets, tailored to the max, the Raider's showmanship and musical tightness on this version of their hit "Ups and Downs," is unsurpassed by any rock band of their day. Little wonder they were the most visible band of the 60's. Over 750 television airings. "This is America's number #1 show band" according to legendary keyboardist, Paul Shaffer, of the Late Night Letterman show. Band members included: Paul Revere,(keyboard) Mark Lindsay, (vocals) Jim "Harpo" Vall...
"Good Thing" by Paul Revere & The Raiders Listen to Paul Revere & The Raiders: https://paulrevereandtheraiders.lnk.to/listenYD Follow Paul Revere & The Raiders: Facebook: https://PaulRevereandTheRaiders.lnk.to/followFI Instagram: https://PaulRevereandTheRaiders.lnk.to/followII Spotify: https://PaulRevereandTheRaiders.lnk.to/followSI Chorus: Ssshhh, ahh Seems this worlds gotch you down Your feelin?bad vibrations frown Well, open your eyes girl, look at me Im gonna show you how it ought to be Were gonna?have a good thing Such a good thing baby #PaulRevereandTheRaiders #GoodThing #classicrock
"Paul Revere" is a song by American hip hop group Beastie Boys, released as the third single from their debut album Licensed to Ill (1986). It was written by Adam Horovitz, Joseph Simmons, Darryl McDaniels, and Rick Rubin. It was produced by Rick Rubin and the Beastie Boys. The song tells a fictional story of how the Beastie Boys met.
Adam Horovitz told how the song evolved from an incident when the Beastie Boys were waiting outside a recording studio for Run-D.M.C., when Joseph Simmons ("Run") suddenly came running down the street screaming incoherently. When he reached the Beastie Boys, he said "Here's a little story I got to tell...". After much confusion, Simmons stated "THAT's the song". The band worked on it from there.
In 2007, an artist called Kia Shine released a single called "Krispy" with a similar beat, raising questions about copyright infringement.
The song tells a fictional story of how Adrock, Mike D, and MCA first met. Adrock describes riding through the desert on a horse named Paul Revere (hence, the title of the song) with a quart of beer, on the run from the police. He runs into MCA, who asks him for a drink. When Adrock refuses, MCA pulls a gun on him and says, "You got two choices of what you can do...I can blow you away or you can ride with me." Adrock agrees, saying that he'll go if they can get to the border because "The sheriff's after me for what I did to his daughter".
Now here's a little story I got to tell
About three bad brothers you know so well
It started way back in history
With Ad Rock, MCA, and me, Mike D
Been had a little horsey named Paul Revere
Just me and my horsey and a quart of beer
Riding across the land, kicking up sand
Sheriff's posse's on my tail 'cause I'm in demand
One lonely Beastie I be
All by myself, without nobody
The sun is beatin' down on my baseball hat
The air is gettin' hot, the beer is gettin' flat
Lookin' for a girl, I ran into a guy
His name is MCA, I said, "Howdy," he said, "Hi"
He told a little story that sounded well rehearsed
Four days on the run and that he's dying of thirst
The brew was in my hand and he was on my tip
His voice was hoarse, his throat was dry, he asked me for a sip
He said, "Can I get some?" I said, "You can't get none"
And I had a chance to run, he pulled out his shotgun
Quick on the draw, I thought I'd be dead
He put the gun to my head and this is what he said
"Now my name is MCA, I got a license to kill
I think you know what time it is, it's time to get ill
Now what do we have here? An outlaw and his beer?
I run this land, you understand? I made myself clear"
We stepped into the wind, he had a gun, I had a grin
You think this story's over but it's ready to begin
Now I got the gun and you got the brew
You got two choices of what you can do
It's not a tough decision as you can see
I can blow you away or you can ride with me
I said, "I'll ride with you if you can get me to the border"
The sheriff's after me for what I did to his daughter
I did it like this, I did it like that
I did it with a whiffle ball bat
So I'm on the run, the cop got my gun
And right about now, it's time to have some fun
The King Ad Rock, that is my name
And I know the fly spot where they got the champagne
We rode for six hours then we hit the spot
The beat was a-bumpin' and the girlies was hot
This dude was starin' like he knows who we are
We took the empty spot next to him at the bar
MCA said, "Yippee yo, you know this kid?"
I said, "I didn't but I know he did"
The kid said, "Get ready 'cause this ain't funny
My name's Mike D and I'm about to get money"
Pulled out the jammy, aimed it at the sky
He yelled, "Stick 'em up!" and let two fly
Hands went up and people hit the floor
He wasted two kids then ran for the door
I'm Mike D and I get respect
Your cash and your jewelry is what I expect
MCA was with it and he's my ace
So I grabbed the piano player and I punched him in the face
The piano player's out, the music stopped
His boy had beef and he got dropped
Mike D grabbed the money, MCA snatched the gold