- published: 22 Jan 2022
- views: 64755
'+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; })); }); -->
HIDDEN ERROR: Usage of "spouse" is not recognizedHIDDEN ERROR: Usage of "children" is not recognizedHIDDEN ERROR: Usage of "signature" is not recognizedHIDDEN ERROR: Usage of "death_cause" is not recognizedHIDDEN ERROR: Usage of "parents" is not recognizedHIDDEN ERROR: Usage of "resting_place" is not recognized
John Winston Ono Lennon, MBE (born John Winston Lennon; 9 October 1940 – 8 December 1980) was an English singer and songwriter who rose to worldwide fame as a co-founder of the band the Beatles, the most commercially successful band in the history of popular music. With fellow member Paul McCartney, he formed a celebrated songwriting partnership.
Born and raised in Liverpool, Lennon became involved in the skiffle craze as a teenager; his first band, the Quarrymen, evolved into the Beatles in 1960. When the group disbanded in 1970, Lennon embarked on a solo career that produced the critically acclaimed albums John Lennon/Plastic Ono Band and Imagine, and iconic songs such as "Give Peace a Chance", "Working Class Hero", and "Imagine". After his marriage to Yoko Ono in 1969, he changed his name to John Ono Lennon. Lennon disengaged himself from the music business in 1975 to raise his infant son Sean, but re-emerged with Ono in 1980 with the new album Double Fantasy. He was murdered three weeks after its release.
John Lennon (1768–1846), was a naval captain, born at Downpatrick, Northern Ireland in 1768. He is stated to have served as a midshipman in the British Royal Navy during the American Revolution. In 1796, when in command of the schooner Favorite of Martinique, carrying letters of marque, he was very severely wounded, and his ship was taken, after a fierce engagement of one hour and twenty minutes' duration, by a French privateer of very superior force.
In 1798 he was in command of the General Keppel, also of Martinique, which was capsized in a white squall on passage from Philadelphia, when Lennon and some of his crew were rescued by a passing schooner, after suffering great perils and hardships. Lennon performed various daring feats in the West Indies in 1806–9; but his most remarkable exploits were in the Hibernia, a Cowes-built barque, carrying six guns and about twenty-two men and boys all told, in which he traded for some years from the West India island of St. Thomas. In 1812 orders were issued that no vessels should leave the island without convoy, on account of the American privateers. The Hibernia and three other merchantmen, whose aggregate cargoes were valued at half a million sterling, had long been waiting. Unwilling to detain them further, Governor Maclean agreed to their sailing without convoy, on condition of Lennon hoisting his pennant as commodore. Although harassed by the Rossie, Commodore Joshua Barney, an American privateer of superior force, Lennon brought his vessels safe into the English Channel on 18 October 1812.
John Lennon (1940–1980) was an English singer-songwriter and founding member of The Beatles.
John Lennon may also refer to:
Acrobatic Rock'n'Roll is a very athletic, competitive form of dance that originated from lindy hop. Unlike lindy hop, however, it is a choreographed dance designed for performance. It is danced by both couples and groups, either all-female or four to eight couples together. This is normally a very fast and physically demanding dance.
During the development of the musical genre rock and roll, dances to go with the music were also created. From swing, which came into being around 1920, Lindy Hop emerged, the first partner dance ever to feature acrobatic elements. Lindy Hop was modified around 1940 to suit faster music, creating the style known as boogie woogie.
A 1959 dance book describes "Rock 'n' Roll" as "performed without undue tension, the body and legs being flexible, so that there may be a physical rhythmic expression of co-ordination with the beats of music." "...a dance which leaves much scope for personal expression and interpretation in style, movement, rhythm, and even in the manner in which the figures are constructed." The basic rhythm is Quick, Quick, Slow, Slow. The Slow steps "will be taken first on to the ball of the foot, the heel then lowering".
1-2-3-4 Rock and Roll is an EP produced by British heavy metal band, Girlschool. It was released in 1983 by Bronze Records, in an attempt to boost the declining sales of the band and launch the upcoming new album Play Dirty. The title track was produced by Ramones' producers Ritchie Cordell and Glen Kolotkin, who completed with samples the recording process that the band refused to carry on. The same song was released by the American band Rail the same year.
"Tush" is a re-recording of the ZZ Top song the band already covered on Hit and Run, with Kim McAuliffe on vocals instead of Enid Williams. "Don't Call It Love" is also a re-recording of the song already present in the Wildlife EP and in the album Screaming Blue Murder. Both songs were produced by Chris Tsangarides. Bronze issued also a 7-inch single with a shorter version of the title track and without the song "Emergency".
Rock’n Roll is a limited Dread Zeppelin album from 1991 available only in Japan (or import). The album contains both studio recordings and live performances. The short running time of the album hints at a promotional tool for the band in Japan.
The leaflet contains lyrics for all songs (in English), a picture of the seven band members in what looks like a Japanese city street, followed by two pages of Japanese text and finally the track listing in Japanese and English.
Of note both live songs have great sound, with the crowd cheering and band members heard talking to them, mostly on Immigrant Song where Tortelvis presents the band members.
Rock 'n' Roll is the sixth studio album by John Lennon. Released in 1975, it is an album of late 1950s and early 1960s songs as covered by Lennon. Recording the album was problematic and spanned an entire year: Phil Spector produced sessions in October 1973 at A&M Studios, and Lennon produced sessions in October 1974 at Record Plant Studios (East). Lennon was being sued by Morris Levy over copyright infringement of one line in his song "Come Together". As part of an agreement, Lennon had to include three Levy-owned songs on Rock 'n' Roll. Spector ran away with the session recordings, later being involved in a motor accident, which left the album's tracks unrecoverable until the beginning of the Walls and Bridges sessions. With Walls and Bridges coming out first, featuring one Levy-owned song, Levy sued Lennon expecting to see Lennon's Rock 'n' Roll album.
The album was released in February 1975, reaching number 6 in both the United Kingdom and the United States, later being certified gold in both countries. It was supported by the single "Stand by Me", which peaked at number 20 in the US, and 30 in the UK. The cover was taken by Jürgen Vollmer during the Beatles' stay in Hamburg. It was Lennon's last album until 1980: With no recording contract obligation, he took a hiatus from recording to raise his son Sean.
Excerpt from The Beatles: Get Back S01E02
Released in February 1975, the album features Lennon's covers of songs from the late 1950s and early 1960s. 這張專輯於1975年2月發行, 收錄了列儂翻唱的1950年代末和1960年代初的歌曲。 Old fish Music Boutiques Introducing some of the lesser known or neglected but good songs, bands and singers, etc. If there is any error or omission, please feel free to correct it. Old fish音樂精品店 主要介紹一些較冷門或被忽略 但好聽的歌和樂隊及歌手等等 如有錯漏 歡迎糾正
JOHN LENNON. GIMME SOME TRUTH. THE ULTIMATE MIXES. The Very Best of John Lennon. 36 tracks completely remixed from the original multitracks in Stereo, 5.1 and Dolby Atmos. Get ready to hear John Lennon in a whole new way. Preorder now at http://bit.ly/JL-GST SLIPPIN' AND SLIDIN' Slippin' and a slidin', peepin' and a hidin', been told a long time ago Slippin' and a slidin', peepin' and a hidin', been told long time ago I been told, baby, you been bold, I won't be your fool no more Oh, big conniver, nothin' but a jiver, I done got hip to your jive Oh, big conniver, nothin' but a jiver, I done got hip to your jive Slippin' and a slidin', peepin' and a hidin', won't be your fool no more Oh, my Linda, she's a solid sender, you know you better surrender Oh, my Linda, she's a solid sender, you...
Yoko Ono accepts John Lennon's Rock and Roll Hall of Fame Award when her late husband was honored at the 1994 Hall of Fame Induction Ceremony as a solo artist. Visit us! http://rockhall.com/ Subscribe to RockHall : http://www.youtube.com/subscription_center?add_user=rockhall Facebook: http://www.facebook.com/rockandrollhalloffame Twitter: http://twitter.com/rock_hall Google +: http://plus.google.com/u/0/115412030406922618012 Check out all the inductees: http://rockhall.com/inductees/ Upcoming events: http://rockhall.com/events/
JOHN LENNON. GIMME SOME TRUTH. THE ULTIMATE MIXES. The Very Best of John Lennon. 36 tracks completely remixed from the original multitracks in Stereo, 5.1 and Dolby Atmos. Listen to JOHN LENNON like you've never heard him before. OUT NOW → http://bit.ly/JL-GST STAND BY ME When the night has come and the land is dark And the moon is the only light we see No I won't be afraid, no I won't be afraid Just as long as you stand, stand by me And darling, darling stand by me Oh, now, now, stand by me, stand by me, stand by me If the sky that we look upon should tumble and fall And the mountain should crumble to the sea I won't cry, I won't cry, no I won't shed a tear Just as long as you stand, stand by me And darling, darling stand by me Oh, stand by me, stand by me, stand by me, stand by me Wh...
Music video by The Dirty Mac performing “Yer Blues” Director: Michael Lindsay-Hogg Executive Producer: Sandy Lieberson Producer: Robin Klein The Dirty Mac performing ""Yer Blues"" from The Rolling Stones Rock and Roll Circus Recorded before a live audience in London in 1968, The Rolling Stones Rock and Roll Circus was originally conceived as a BBC-TV special. Directed by Michael Lindsay-Hogg, it centers on the original line up of The Rolling Stones -- Mick Jagger, Keith Richards, Brian Jones, Charlie Watts, Bill Wyman (with Nicky Hopkins and Rocky Dijon) -- who serves as both the show’s hosts and featured attraction. For the first time in front of an audience, “The World’s Greatest Rock and Roll Band” performs six Stones classics. The program also includes extraordinary performances by Th...
Provided to YouTube by Universal Music Group Rock And Roll Music (Remastered 2009) · The Beatles Beatles For Sale ℗ 2009 Calderstone Productions Limited (a division of Universal Music Group) Released on: 1964-12-04 Associated Performer, Maracas, Timpani, Bells, Percussion, Bongos: Ringo Starr Associated Performer, Piano, Producer: George Martin Composer Lyricist: Chuck Berry Auto-generated by YouTube.
The Beatles performing “The Ballad Of John And Yoko.” Watch more videos from The Beatles: https://thebeatles.lnk.to/YTPlaylists Subscribe to The Beatles’ YouTube channel & ring the bell to never miss a new video: https://thebeatles.lnk.to/YTSignup Sign up for The Beatles’ Official Email List: https://www.thebeatles.com/newsletter Stream The Beatles: 🎙️ Apple Music: https://thebeatles.lnk.to/stream/AppleMusic 🎙️ Spotify: https://thebeatles.lnk.to/stream/Spotify 🎙️ Amazon Music: https://thebeatles.lnk.to/stream/AmazonMusic 🎙️ Pandora: https://thebeatles.lnk.to/stream/Pandora 🎙️ Tidal: https://thebeatles.lnk.to/stream/Tidal 🎙️ Deezer: https://thebeatles.lnk.to/stream/Deezer 🎙️ YouTube Music: https://thebeatles.lnk.to/stream/YouTubeMusic Follow The Beatles: ⭐ https://www.thebeatles.com ⭐...
Unboxing the Mind Games Ultimate Collection 2 LP set by John Lennon. #thebeatles #beatles #beatlessongs #beatlemania #beatlesreaction #beatlesforever #beatlesfan #beatlesfans #beatlesforsale #beatleslove #beatlescovers #beatlessong #johnlennon #paulmccartney #macca #georgeharrison #ringostarr #ringo #yokoono #lindamccartney #wings #paulmccartneyandwings #dennylaine #fireman #plasticonoband #travelingwilburys #jefflynne #tompetty #bobdylan #royorbinson #georgemartin #abbeyroad #letitbe #yellowsubmarine #thewhitealbum #whitealbum #magicalmysterytour #sgtpepperslonelyheartsclubband #sgtpepper #revolver #rubbersoul #help #aharddaysnight #withthebeatles #pleaseplease #please #me #mccartney #ram #wildlife #redrose #speedway #bandontherun #venus #mars #speedofsound #london #town #backtothe80s #e...
Track 2 of 10. If you have a suggestion for any rare albums/songs you would like to see uploaded, leave a comment and I'll try to locate and post it!
HIDDEN ERROR: Usage of "spouse" is not recognizedHIDDEN ERROR: Usage of "children" is not recognizedHIDDEN ERROR: Usage of "signature" is not recognizedHIDDEN ERROR: Usage of "death_cause" is not recognizedHIDDEN ERROR: Usage of "parents" is not recognizedHIDDEN ERROR: Usage of "resting_place" is not recognized
John Winston Ono Lennon, MBE (born John Winston Lennon; 9 October 1940 – 8 December 1980) was an English singer and songwriter who rose to worldwide fame as a co-founder of the band the Beatles, the most commercially successful band in the history of popular music. With fellow member Paul McCartney, he formed a celebrated songwriting partnership.
Born and raised in Liverpool, Lennon became involved in the skiffle craze as a teenager; his first band, the Quarrymen, evolved into the Beatles in 1960. When the group disbanded in 1970, Lennon embarked on a solo career that produced the critically acclaimed albums John Lennon/Plastic Ono Band and Imagine, and iconic songs such as "Give Peace a Chance", "Working Class Hero", and "Imagine". After his marriage to Yoko Ono in 1969, he changed his name to John Ono Lennon. Lennon disengaged himself from the music business in 1975 to raise his infant son Sean, but re-emerged with Ono in 1980 with the new album Double Fantasy. He was murdered three weeks after its release.
Yeah
Oh
I got a girl named Bony Moronie
She's as skinny as a stick of macaroni
Got to see her rock and roll with her blue jeans on
She's not very fat, just skin and bone
Huh
Well, now I love her and she loves me
Oh, how happy now we're gonna be
Making love underneath the apple tree, oh
Well, I told her mama and her papa, too
Just exactly what I'm gonna do
We're gonna get married on a night in June
Rock and roll by the light of the silvery moon
Well, yeah
Well, now I love her and she loves me
Oh, how happy now we're gonna be
Making love underneath the apple tree, hey
Huh hey, hey, hey
Well, she's my one and only, she's my hearts desire
She's a real up setter, she's a real live wire
Everybody's watching when my baby walks by
She's so good looking, really catches the eye
Huh oh
Yes
Let 'em in
Well, now I love her, she loves me
Oh, how happy now we're gonna be
Making love underneath the apple tree
Yeah, yeah, underneath the apple
Making love, yeah
Making love, making love, harder
Harder, harder, harder oh baby