- published: 06 May 2015
- views: 29822
'+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; })); }); -->
"Do You Know? (The Ping Pong Song)" is a pop song from singer Enrique Iglesias. It is the first single from his album Insomniac and takes the latter part of its English name from the sample of a ping pong ball bouncing that is employed as a percussion track throughout the song. The song's Spanish version is entitled "Dímelo" and was released to Latin radio, becoming Iglesia's 17th number one song on the US Billboard Hot Latin Songs. In 2007 the song sold 3.1 million copies worldwide.
Iglesias himself generally refers to the song as simply "Do You Know?", as it was his record label's insistence to add on "The Ping Pong Song" in parentheses to make it more distinctive and marketable.
The instrumental backing tracks are based on sampled loops from the well-known production company Bunker 8 Digital Labs. These samples include all of the original tracks in "Otiga Verde" from the sample library. The opening piano, guitar chord riffs, and lead sound synthesizer which is heard throughout the song are directly lifted from the individual sample loops.
Do You Know is the sixth studio album by American singer Jessica Simpson. The album was released on September 9, 2008, in the United States by a joint-venture between Columbia Nashville and Epic Records. The album is her first effort in an attempt to cross over to country music. Songwriter Brett James produced the album along with John Shanks. The album debuted at #1 in the Billboard Country Charts and at #4 in the Billboard 200 with sales of 65,000.
After the release of her 2006 pop album A Public Affair, Simpson stated she wanted to go back to her roots and do country music because she "has been brought up around country music", and wants to give something back. Simpson had already sung country themed songs previous like "These Boots Are Made for Walkin'". She started her country move by appearing in the music video for "You Don't Think I'm Funny Anymore", by country legend Willie Nelson. She then went to Nashville to start recording her album.
An aura is a perceptual disturbance experienced by some with migraines or seizures before either the headache or seizure begins. It often manifests as the perception of a strange light, an unpleasant smell, or confusing thoughts or experiences. Some people experience aura without a subsequent migraine or seizure (see silent migraine). Auras vary by individual experience; some people experience smells, lights, or hallucinations. Less known symptoms of the eye include disturbances, where the eyes roll in the back of the head caused by photosensitivity. A sufferer of this type of aura may experience tearfulness of the eyes and uncontrollable sensations of light followed by reduced symptoms after approximately 20 minutes; it is the rarest type of aura.
When occurring, auras allow epileptic people time to prevent injury to themselves and/or others. The time between the appearance of the aura and the migraine lasts from a few seconds up to an hour. The aura can stay with a migraine sufferer for the duration of the migraine; depending on the type of aura, it can leave the person disoriented and confused. It is not uncommon for migraine sufferers to experience more than one type of aura during the migraine. Most people who have auras have the same type of aura every time.
Aura is the ninth studio album by British rock band Asia, recorded in 2000 at Loco Studios, South Wales and first released in 2001.
The lyrics for "Awake" were adapted from "The Rubaiyat" of Omar Khayyám. Although in the liner notes the lyrics are credited to Geoff Downes and John Payne, it is believed that they have been written mainly or solely by Payne. "Ready to Go Home" was originally recorded by Andrew Gold and Graham Gouldman of 10cc and appeared on the 1995 album Mirror Mirror. The lyrics for "The Longest Night" were inspired by Wilfred Owen's poem of 1918.
Aura was issued by Recognition Records in two versions: regular jewel-case edition (CDREC501) and special Digi-Pack edition (CDRECX501). The latter included three extra tracks. Released in 2007 by Acadia, label of Evangeline Records, version of the album contains bonus CD featuring Steve Howe acoustic guitar solo, recorded live at Chestnut Cabaret in Philadelphia, Pennsylvania on 21 November 1992 during US Aqua tour.
The Aura are a Muslim Jat tribe, found mainly in Gujar Khan Tehsil of Rawalpindi District. Chak 21 S.B. is large settlement of the Aura in Sargodha District. These Aura are immigrants from Gujar Khan Tehsil who were settled in the Sargodha region in the 19th Century. Other villages include Balakhar in Rawalpindi District and Abdullahpur in Jhelum District.
Provided to YouTube by Epic Do You Know with Dolly Parton · Jessica Simpson Do You Know ℗ 2008 Sony Music Entertainment Released on: 2008-09-09 Acoustic Guitar: Bryan Sutton Composer, Lyricist: Dolly Parton Electric Guitar: Troy Lancaster Electric Guitar, Producer: John Shanks Drums: Shannon Forrest Keyboards: Charles Judge Bass: Craig Young Producer: Brett James Engineer: Alex Gibson Engineer: Vance Powell Assistant Engineer: Aaron Kasdorf Assistant Engineer: John Caldwell Mixing Engineer: Luke Wooten Mastering Engineer: Andrew Mendelson Recording Engineer: Jeff Rothschild Auto-generated by YouTube.
Provided to YouTube by Epic Pray Out Loud · Jessica Simpson Do You Know ℗ 2008 Sony Music Entertainment Released on: 2008-09-09 Background Vocal: Hillary Lindsey Background Vocal, Composer, Lyricist, Producer: Brett James Guitar, Composer, Lyricist, Producer: John Shanks Fiddle, Mandolin: Jonathan Yudkin Acoustic Guitar: Ilya Toshinskiy Electric Guitar: Tom Bukovac Keyboards: Charles Judge Bass: Jimmie Lee Sloas Assistant Producer: Nate Lowery Engineer: Alex Gibson Engineer: Vance Powell Engineer: Craig Headen Assistant Engineer: Aaron Kasdorf Assistant Engineer: Seth Morton Assistant Engineer: John Caldwell Mixing Engineer: Luke Wooten Mastering Engineer: Andrew Mendelson Recording Engineer: Jeff Rothschild Auto-generated by YouTube.
(C) Goes to Jessica & her record.:]
Jessica Simpson's official music video for 'Sweetest Sin'. Click to listen to Jessica Simpson on Spotify: http://smarturl.it/JessicaSimpSpotify?IQid=JessicaSSS As featured on In This Skin. Click to buy the track or album via iTunes: http://smarturl.it/InThisSkin?IQid=JessicaSSS Google Play: http://smarturl.it/JSSSGPlay?IQid=JessicaSSS Amazon: http://smarturl.it/ITSAmazon?IQid=JessicaSSS More From Jessica Simpson Irresistible: https://youtu.be/-qCDypgAV_E These Boots Are Made For Walkin': https://youtu.be/DPtfsk4ETjM I Wanna Love You Forever: https://youtu.be/4bJ0F8KhhZ8 More great 00s videos here: http://smarturl.it/Ultimate00?IQid=JessicaSSS Follow Jessica Simpson Website: http://jessicasimpson.com/ Facebook: https://www.facebook.com/jessicasimpson Twitter: https://twitter.com/jessica...
From her sixth studio album, Do You Know? (c) 2008 Epic, Columbia Nashville A Texas native, Jessica Simpson began her career in gospel music and in her teenage years, signed to Columbia Records. She released her first album at the peak of the teen pop era during the late '90's. She was marketed as a contrast to Britney Spears due to her more innocent image and powerful singing voice. Simpson went on to release three more pop albums, two Christmas albums and a country album as well as run a successful business. Released in 2008, Do You Know was Simpson's crossover into country music. The album peaked at #1 on the country charts and #4 on the pop charts. Two singles were released.
Jessica Simpson's official music video for 'I Wanna Love You Forever'. Click to listen to Jessica Simpson on Spotify: http://smarturl.it/JessicaSimpSpotify?IQid=JessicaSWLYF As featured on Playlist: The Very Best of Jessica Simpson. Click to buy the track or album via iTunes: http://smarturl.it/TVBOJS?IQid=JessicaSWLYF Google Play: http://smarturl.it/IWLYFGPlay?IQid=JessicaSWLYF Amazon: http://smarturl.it/TVBOJSAmazon?IQid=JessicaSWLYF More From Jessica Simpson These Boots Are Made for Walkin': https://youtu.be/DPtfsk4ETjM With You: https://youtu.be/VWl7WjAtBME Irresistible: https://youtu.be/-qCDypgAV_E More great 00s videos here: http://smarturl.it/Ultimate00?IQid=JessicaSWLYF Follow Jessica Simpson Website: http://jessicasimpson.com/ Facebook: https://www.facebook.com/jessicasimpson ...
Provided to YouTube by Epic Sipping On History · Jessica Simpson Do You Know ℗ 2008 Sony Music Entertainment Released on: 2008-09-09 Bass, Guitar, Producer: John Shanks Fiddle, Mandolin: Jonathan Yudkin Drums, Recording Engineer: Jeff Rothschild Organ, Piano: Charles Judge Composer, Lyricist: Hillary Lindsey Composer, Lyricist: Luke Laird Producer: Brett James Assistant Producer: Nate Lowery Engineer: Alex Gibson Engineer: Vance Powell Engineer: Craig Headen Assistant Engineer: Aaron Kasdorf Assistant Engineer: Seth Morton Assistant Engineer: John Caldwell Mixing Engineer: Luke Wooten Mastering Engineer: Andrew Mendelson Auto-generated by YouTube.
Jessica Simpson's official music video for 'These Boots Are Made For Walkin''. Click to listen to Jessica Simpson on Spotify: http://smarturl.it/JessicaSimpSpotify?IQid=JessicaSBMW As featured on Playlist: The Very Best of Jessica Simpson. Click to buy the track or album via iTunes: http://smarturl.it/TVBOJS?IQid=JessicaSBMW Google Play: http://smarturl.it/TBAMFWGPlay?IQid=JessicaSBMW Amazon: http://smarturl.it/TVBOJSAmazon?IQid=JessicaSBMW More From Jessica Simpson Irresistible: https://youtu.be/-qCDypgAV_E With You: https://youtu.be/VWl7WjAtBME I Wanna Love You Forever: https://youtu.be/4bJ0F8KhhZ8 More great 00s videos here: http://smarturl.it/Ultimate00?IQid=JessicaSBMW Follow Jessica Simpson Website: http://jessicasimpson.com/ Facebook: https://www.facebook.com/jessicasimpson Twit...
Provided to YouTube by Epic You're My Sunday · Jessica Simpson Do You Know ℗ 2008 Sony Music Entertainment Released on: 2008-09-09 Background Vocal, Composer, Lyricist: Hillary Lindsey Bass, Guitar, Producer: John Shanks Fiddle, Mandolin: Jonathan Yudkin Drums, Recording Engineer: Jeff Rothschild Organ, Piano: Charles Judge Composer, Lyricist: Luke Laird Producer: Brett James Assistant Producer: Nate Lowery Engineer: Alex Gibson Engineer: Vance Powell Engineer: Craig Headen Assistant Engineer: Aaron Kasdorf Assistant Engineer: Seth Morton Assistant Engineer: John Caldwell Mixing Engineer: Luke Wooten Mastering Engineer: Andrew Mendelson Auto-generated by YouTube.
I hope I'm Man Enough because today we are listening to Jessica Simpson's 5th and final studio album Do You Know. What did I think? Watch the video to find out! Don't forget to Comment, Like, Share, and Subscribe Social Links: https://www.instagram.com/salvadorjrocha/ https://twitter.com/SalSaysStuff https://www.tiktok.com/@salrocha1?lang=en Do You Know - Tracklist: 1. Come On Over 2. Remember That 3. Pray Out Loud 4. You're My Sunday 5. Sipping On History 6. Still Beautiful 7. Still Don't Stop Me 8. When I Loved You Like That 9. Might As Well Be Making Love 10. Man Enough 11. Do You Know - Feat. Dolly Parton 12. Never Not Beautiful Do You Know is the sixth studio album by American singer Jessica Simpson. The album was first released digitally on September 5, 2008 for the US iTunes S...
"Do You Know? (The Ping Pong Song)" is a pop song from singer Enrique Iglesias. It is the first single from his album Insomniac and takes the latter part of its English name from the sample of a ping pong ball bouncing that is employed as a percussion track throughout the song. The song's Spanish version is entitled "Dímelo" and was released to Latin radio, becoming Iglesia's 17th number one song on the US Billboard Hot Latin Songs. In 2007 the song sold 3.1 million copies worldwide.
Iglesias himself generally refers to the song as simply "Do You Know?", as it was his record label's insistence to add on "The Ping Pong Song" in parentheses to make it more distinctive and marketable.
The instrumental backing tracks are based on sampled loops from the well-known production company Bunker 8 Digital Labs. These samples include all of the original tracks in "Otiga Verde" from the sample library. The opening piano, guitar chord riffs, and lead sound synthesizer which is heard throughout the song are directly lifted from the individual sample loops.
(1st verse) The sun don't shine on me no more. Better times thrown out the door. So what the fuck am I waiting for. You're not there for me, that's for sure. (Chorus) Do you know how much I care? How can you be so unaware? (2nd verse) It's your life, but it's my hell. Where I stand now, I can't tell. I've peeled off my protective shell. My emotions never served me well. (chorus) Do you know how much I care? How can you be so unaware? (3rd verse) I can't believe I fell again. I can tell that you won't bend. I hate to tell you, you're not my friend. So hat's off to you, this is the end.to blame