- published: 08 Jun 2008
- views: 64581721
'+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; })); }); -->
American Pie may refer to:
American Pie is a series of teen films conceived by Adam Herz. The first film in the series was released on July 9, 1999, by Universal Pictures, and became a worldwide pop culture phenomenon, spawning three direct sequels. The second and third films were released at two-year intervals, whereas the fourth film was released in 2012. From 2005 to 2009, four spin-off films were released. A ninth feature film has been announced in response to the success of the eighth film.
Throughout the first film in the original series, Jim Levenstein (Jason Biggs) tries to develop a relationship with his school classmate Nadia (Shannon Elizabeth), and along with his best friends Kevin Myers (Thomas Ian Nicholas), Paul Finch (Eddie Kaye Thomas), and Chris Ostreicher (Chris Klein), attempts to lose his virginity. In the second film, with good friend, and Finch's frenemy Steve Stifler (Seann William Scott), the friends host a summer party and Jim switches his interest to his friend Michelle Flaherty (Alyson Hannigan). In the third film, Jim and Michelle plan to marry, but the forced invitation of Stifler could ruin everything. In the fourth film, the gang gets back together in anticipation for their thirteenth high school reunion. The spin-off series revolves around relatives of Stifler, including his brother Matt (Tad Hilgenbrink) and cousins Erik (John White), Dwight (Steve Talley), Scott (John Patrick Jordan), and their respective friends attempting similar activities.
"American Pie" is a song by American folk rock singer and songwriter Don McLean. Recorded and released on the American Pie album in 1971, the single was a number-one US hit for four weeks in 1972. In the UK, the single reached No. 2 on its original 1972 release and a reissue in 1991 reached No. 12. The song was listed as the No. 5 song on the RIAA project Songs of the Century.
Don McLean wrote the song in Cold Spring, New York and Philadelphia, Pennsylvania. The song made its debut in Philadelphia at Temple University when he opened for Laura Nyro on March 14, 1971.
Except to acknowledge that he first learned about Buddy Holly's February 3, 1959 death when he was folding newspapers for his paper route on the morning of February 4, 1959 (the line "February made me shiver/with every paper I'd deliver"), McLean has generally avoided responding to direct questions about the song lyrics, such as saying, "They're beyond analysis. They're poetry." He also stated in an editorial published in 2009 on the 50th anniversary of the crash that killed Holly, Ritchie Valens, and J. P. "The Big Bopper" Richardson, that writing the first verse of the song exorcised his long-running grief over Holly's death and that he considers the song to be "a big song (…) that summed up the world known as America." McLean dedicated the American Pie album to Holly.
Joga may refer to:
Joga is also a small village in the district Mainpuri, Uttar Pradesh, India.
"Jóga" is a song by Björk, released as the first single from her 1997 album Homogenic.
An electronic song, "Jóga" fuses these elements with baroque and classical styles. The track's sound was partially inspired by Icelandic music, containing what have been described as "volcanic beats". Lyrically, the piece is an ode to Björk's native land and her best friend, while containing subtexts relating to emergency. "Jóga" has been critically acclaimed ever since its release, with reviewers praising her powerful vocal performance, as well as the track's composition and overall production. Commercially, the song was a moderate success, charting in several international markets.
"Jóga" is dedicated to —and named after— Björk's best friend, Jóga Johannsdóttir, who is usually thanked in her album credits. Like the rest of the album, it was produced at El Cortijo in Málaga, Spain. She wrote the song while walking and admiring the landscape, a common way for her to write songs since childhood. Björk explained "an overall picture" of it to engineer Markus Dravs, who then came out with a rhythm that she felt was "too abstract".Mark Bell, the producer of the track, then came and "took 99 percent of what [he] did and came up with some noises", giving Dravs new ideas. The singer wrote the string arrangements, which were provided late in the production process by the Icelandic String Octet.
Joga is an Italian Europop act produced by Nick Ferrando with Nathalie Aarts on vocals. Joga songs are present on Toshiba-EMI's Dancemania non-stop megamix series, and in the Bemani games. Their major songs are "Dam Dariram", "Bye Bye Baby Balloon" and "No Nobody's Love". "White Christmas" was added to the Trance X-Mas compilation (Polystar Records, 2003), and this song to date has been their last collaboration as producer and singer.
Amazon music link: https://amzn.to/3a1iVm3 Gifts: - Poster: https://amzn.to/2K0qLSw - T-Shirt: https://amzn.to/3b95Fxi - Mug: https://amzn.to/2wxpj6S - The Don McLean story: https://amzn.to/2XB4HWi - Don McLean autographed biography: https://amzn.to/2VqH28F - The True Story of James J. Buddy McLean: https://amzn.to/2Rxvpvf Why the Bob Dylan image? It was a mistake, now please let it go. Lyrics: A long long time ago I can still remember how That music used to make me smile And I knew if I had my chance That I could make those people dance And maybe they'd be happy for a while But February made me shiver With every paper I'd deliver Bad news on the doorstep I couldn't take one more step I can't remember if I cried When I read about his widowed bride But something touched me deep inside Th...
Support The Channel - https://www.buymeacoffee.com/YoungPilgrim
Don McLean's American Pie with lyrics. Please comment and rate! LYRICS: A long, long time ago... I can still remember How that music used to make me smile. And I knew if I had my chance That I could make those people dance And, maybe, they'd be happy for a while. But february made me shiver With every paper I'd deliver. Bad news on the doorstep; I couldn't take one more step. I can't remember if I cried When I read about his widowed bride, But something touched me deep inside The day the music died. So bye-bye, miss american pie. Drove my chevy to the levee, But the levee was dry. And them good old boys were drinkin' whiskey and rye Singin', "this'll be the day that I die. "this'll be the day that I die." Did you write the book of love, And do you have fa...
Artista: Nino MC Música: American Pie Produção: DJ Di Marques Ouça nossa playlist no (Spotify): Homenagem aos Relíquias Playlist Siga as nossas redes sociais: Instagram: @greecassuaprodutoraaa, @odiodesp_ Redes sociais dos artistas: @ninoo_mc @djdimarquesoficial Contrate os nossos Artistas: 📲 (11) 98298-0909 Este videofonograma é um produto original. A cópia dele ou o reenvio do mesmo resultará em grandes implicações ao seu canal do youtube ou até a exclusão do mesmo. SATÉLITE FUNK® GREE CASSUA FILMES ® #SatéliteFunk #AmericanPie
A compilation of best moments from everyone's favourite American Pie character, the Stifmeister. Ah, Steve Stifler IS indeed the G.O.A.T and these best moments prove exactly that! American Pie (1999): A generation defining hit comedy, American Pie follows four high school friends through their sexually frustrated senior year as they strive for the most eagerly anticipated rite of adulthood: losing one's virginity. This sweet treat offers an affectionate look at a time in our lives when we try to hold onto our dignity -- and end up failing miserably. Starring Jason Biggs, Seann William Scott, Alyson Hannigan, Mena Suvari, Chris Klein, Tara Reid, and Natasha Lyonne, with Jennifer Coolidge and Eugene Levy. Watch American Pie on Google Play: https://bit.ly/3DJJVWR Watch American Pie on iTun...
The man, the myth, the legend: Steven Stifler. American Pie (1999): A generation defining hit comedy, American Pie follows four high school friends through their sexually frustrated senior year as they strive for the most eagerly anticipated rite of adulthood: losing one's virginity. This sweet treat offers an affectionate look at a time in our lives when we try to hold onto our dignity -- and end up failing miserably. Starring Jason Biggs, Seann William Scott, Alyson Hannigan, Mena Suvari, Chris Klein, Tara Reid, and Natasha Lyonne, with Jennifer Coolidge and Eugene Levy. Watch American Pie on Google Play: https://bit.ly/3DJJVWR Watch American Pie on iTunes: https://apple.co/3DHOWiM You'll never look at warm apple pie the same way again! American Pie takes a hysterical look at the goa...
American Pie movie clips: http://j.mp/1uvLCCk BUY THE MOVIE: http://amzn.to/sZ6QCe Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Four teenage boys enter a pact to lose their virginity by prom night. FILM DESCRIPTION: In this coming-of-age comedy, a group of friends at the end of their senior year make a pact to lose their virginity by prom night. In their outrageous attempts to fulfill this mission, they come to some surprising, hilarious and often touching realizations about themselves, their friendships, their notions of love, romance and their relations with the opposite sex. CREDITS: TM & © Universal (1999) Cast: Jason Biggs, Chris Klein, Thomas Ian Nicholas, Alyson Hannigan, Natasha Lyonne, Eddie Kaye Thomas, Chris Owen, Seann William Scott, Eugene Le...
Official Lyric Video for American Pie by Don McLean #DonMcLean #AmericanPie
Wait, he ACTUALLY nailed 3 cheerleaders in one week?! American Pie Presents: Band Camp (2005) - Get ready for the antics when Stifler’s younger brother spends a summer encountering camp counselors, hidden cameras, and a pair of Playmates in this hilarious romp. Watch American Pie Presents: Band Camp on Google Play: https://bit.ly/30N34cs Watch American Pie Presents: Band Camp on iTunes: https://apple.co/3FH3pMp You'll never look at warm apple pie the same way again! American Pie takes a hysterical look at the goal of four "unlucky in love" high school friends who make the ultimate pact: lose their virginity by prom night. As they try to manipulate their way into the...hearts of some of their classmates, their plans often backfire with hilarity. Follow the raging hormones of four teenag...
American Pie may refer to:
A long, long time ago
I can still remember how that music used to make me smile
And I knew if I had my chance that I could make those people dance
And maybe they'd be happy for a while
But February made me shiver with every paper I'd deliver
Bad news on the doorstep, I couldn't take one more step
I can't remember if I cried when I read about his widowed bride
But something touched me deep inside the day the music died
So bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
And them good old boys were drinking whiskey and rye
Singing this'll be the day that I die, this'll be the day that I die
Did you write the book of love and do you have faith in God above
If the Bible tells you so?
Now do you believe in rock and roll? Can music save your mortal soul?
And can you teach me how to dance real slow?
Well, I know that you're in love with him
'Cause I saw you dancing in the gym
You both kicked off your shoes
Man, I dig those rhythm and blues
I was a lonely teenage bronc'n' buck
With a pink carnation and a pickup truck
But I knew I was out of luck
The day the music died
So bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
And them good old boys were drinking whiskey and rye
Singing this'll be the day that I die, this'll be the day that I die
Now, for ten years we've been on our own
And moss grows fat on a rolling stone
But that's not how it used to be
When the jester sang for the king and queen
In a coat he borrowed from James Dean
And a voice that came from you and me
Oh, and while the king was looking down
The jester stole his thorny crown
The courtroom was adjourned
No verdict was returned
And while Lenin read a book on Marx
The quartet practiced in the park
And we sang dirges in the dark
The day the music died
So bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
And them good old boys were drinking whiskey and rye
Singing this'll be the day that I die, this'll be the day that I die
Helter skelter in a summer swelter
The birds flew off with a fallout shelter
Eight miles high and falling fast
Landed foul on the grass
The players tried for a forward pass
With the jester on the sidelines in a cast
Now the half time air was sweet perfume
While sergeants played a marching tune
We all got up to dance
Oh, but we never got the chance
'Cause the players tried to take the field
The marching band refused to yield
Do you recall what was revealed
The day the music died?
We started singing bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
Them good old boys were drinking whiskey and rye
And singing this'll be the day that I die, this'll be the day that I die
Oh, and there we were all in one place, a generation lost in space
With no time left to start again
So come on Jack be nimble, Jack be quick
Jack Flash sat on a candlestick 'cause fire is the devil's only friend
Oh, and as I watched him on the stage
My hands were clenched in fists of rage
No angel born in hell
Could break that Satan's spell
And as the flames climbed high into the night
To light the sacrificial rite
I saw Satan laughing with delight
The day the music died
He was singing bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
Them good old boys were drinking whiskey and rye
And singing this'll be the day that I die, this'll be the day that I die
I met a girl who sang the blues
And I asked her for some happy news
But she just smiled and turned away
I went down to the sacred store
Where I'd heard the music years before
But the man there said the music wouldn't play
And in the streets the children screamed
The lovers cried and the poets dreamed
But not a word was spoken
The church bells all were broken
And the three men I admire most
The Father, Son, and the Holy Ghost
They caught the last train for the coast
The day the music died
And they were singing bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
Them good old boys were drinking whiskey and rye
Singing this'll be the day that I die, this'll be the day that I die
They were singing, bye, bye Miss American Pie
Drove my Chevy to the levee but the levee was dry
Them good old boys were drinking whiskey and rye