- published: 08 Jan 2013
- views: 5516209
'+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; })); }); -->
"Not Enough Time" is the third single from the 1992 album Welcome to Wherever You Are, it was released simultaneously with "Baby Don't Cry" (Europe and Australia) but only in the US and Japan, by Australian rock band INXS. The song was written by Andrew Farriss and Michael Hutchence, the music in Sydney and the lyrics in Paris, France.
The lyrics to the song were originally intended for another composition from Welcome To Wherever You Are, which became later became the album's opening song 'Questions'. The original version can be heard on the 2002 remaster of the album.
Australian singer, Deni Hines, featured as a backing vocalist on the song and also married guitarist, Kirk Pengilly, a year later in 1993.
A video has been released for the song on YouTube on 3 August 2011.
The B-sides include a solo compositions from bassist Gary Beers; "Firma Terror" and another by Lead guitarist Kirk Pengilly entitled "Light the Planet" as well as "Deepest Red", an outtake from the X album.
Not Enough Time (足りない時間, Tarinai Jikan) is a Japanese manga written and illustrated by Shoko Hidaka (日高 ショーコ, Hidaka Shōko). It is licensed in North America by Digital Manga Publishing, which released the manga through its imprint, Juné, on July 25, 2007. It is licensed in Taiwan by Sharp Point Press and in Germany by Carlsen Verlag.
Holly Ellingwood of Active Anime praised the characterisation. Mania's Danielle Van Gorder describes the linework of the art as "assured", and appreciated the "variety" in the anthology.Comics Village's Katherine Farmar regretted the brevity of the stories, saying that although the author creates a good atmosphere of "yearning", that the feeling could not build enough in the space of a short story.
Signalrunners is an American/British electronic music duo comprising Alan Nimmo (Scotland) & Andrew Michael Bayer (USA) formed in 2003, located in Washington, D.C. and operating Fraction Records.
INXS "Not Enough Time" official music video, remastered in HD. Stream Not Enough Time: https://INXS.lnk.to/NotEnoughTime "Not Enough Time" is the third single from INXS 8th studio album "Welcome to Wherever You Are," released in 1992. ——————— Subscribe for more INXS: http://bit.ly/subscribe-to-inxs Facebook: https://www.facebook.com/inxs Twitter: https://twitter.com/inxs Instagram: https://www.instagram.com/officialinxs/ Tik Tok: https://www.tiktok.com/@inxs Site: http://inxs.com Shop: https://shop.inxs.com #INXS #NotEnoughTime #Remastered
FOLLOW FISHCRACKS ON SOUNDCLOUD: https://soundcloud.com/fishcracks STREAM FISHCRACKS ON SPOTIFY AND APPLE MUSIC: https://open.spotify.com/artist/4To8tDAkDqCfPXecTlsJSE https://music.apple.com/gb/artist/fishcracks/1594447953 SUBSCRIBE: https://www.youtube.com/c/Fishcracks Stay awesome 🐟
The Song will be released on the 03.02.2009 on Beatport! Buy it! "Not Enough Time" is the first single release from the forthcoming new Cosmic Gate album "Sign Of The Times", which is scheduled for a release in March 2009, so keep your eyes peeled! www.cosmic-gate.com
Stream/Download:https://vibe.deepdiscomusic.com/ddr610 ►Rezilienza https://www.youtube.com/c/Rezilienza https://www.facebook.com/Rezilienza/ https://www.instagram.com/rezilienza/ https://soundcloud.com/rezilienza ►Gio Mee https://www.youtube.com/@GioMee-st9gm https://open.spotify.com/intl-it/artist/1xOxp6YgZcto6e87Bb6tVs https://www.instagram.com/giomee_deephouse/ ►Deep Disco Records https://www.youtube.com/@deepdisco4087 https://www.facebook.com/deepdiscorecords/ https://soundcloud.com/deepdiscochannel https://www.deepdiscomusic.com/ https://spoti.fi/2AnoHlt Rezilienza is a Music Blog & Label, dedicated to promote new Artists (musicians/labels, composers, producers, photographers/filmmakers) We love what we do and our priority is always providing premium quality musics. We are Music ...
Head to https://squarespace.com/odysseas to save 10% off your first purchase of a website or domain using code ODYSSEAS - Join my newsletter: https://odysseas.ck.page/509a9315a4 Read past issues: https://www.thefountain.me/ X account: https://x.com/odysseas_px - An article on the side-income idea (courtesy of @aidanhelfant ) https://nathanbarry.com/wealth-creation/ Napping idea original video: https://youtube.com/shorts/R4vzsLhDDkc?si=XnvIMieF3z7gnVpx - TIMESTAMPS 00:00-1:28 Anti-hustle time management 1:28-2:46 "I have no energy" 2:46-5:21 Working around energy levels 5:21-7:20 Calm versus busy periods 7:20-13:28 How money can buy time 13:28-14:58 Take a break 14:58-18:59 Time for loved ones AND hobbies 18:59-21:05 Sacrifice some hobbies so others can thrive 21:05-23:20 Hobby...
KICK - The INXS Experience, "Not Enough Time" recorded live at Daryl’s House Club 4.29.18, Pawling NY. For booking information, contact Panzyler Entertainment Group, www.panzyler.com or [email protected] See more info on KICK at: www.get-kicked.com Audio: Peter Moshay Video: Gary Ljungquist
Check out my new video ( Cosmic Gate feat Tiff Lacey - Open Your Heart - Original Mix Slowed and Reverb by Bigg B ) : https://youtu.be/-Uuqhdyj_Ys Cosmic Gate feat. Emma Hewitt - Not Enough Time (Original Mix) Video made by Me . I do not own any rights for the music . Leave a comment , 10x for watching my movie !
As I explore the feelings of inadequacy that I have for myself, I feel like I'm peeling away the layers and finding all of kinds of things I wasn't expecting. Maybe even my focus on structure and productivity is a distraction from something even deeper, something even more valuable that I should be paying closer attention to: the present moment. Support this project and get access to bonus content → https://www.patreon.com/nathanieldrew Or donate → https://paypal.me/nathanieldrewyt ------------ Sign up to my newsletter here 🍦→ https://www.nathanieldrew.com/newsletter My online courses → https://www.nathanieldrew.com/onlinecourses My online store → https://nathanieldrew.com/store My other channel → https://www.youtube.com/channel/UCZbOmMsPgxuWmj5pGymAOnA Get access to exclusive conten...
From the INXS album Welcome To Wherever You Are (Atlantic, 1992). Composed by Andrew Farriss and Michael Hutchence. http://www.facebook.com/songsoftheday https://www.facebook.com/media/set/?set=vb.135937746451958&type=2 LYRICS: And I was lost for words in your arms Attempting to make sense Of my aching heart If I could just be everything and everyone to you This life would just be so easy Not enough time For all that I want for you Not enough time For every kiss And every touch And all the nights I wanna be inside you We'll make time stop for the two of us Make time stop And listen for our sighs Not enough time For all that I want for you Not enough time For every kiss And every touch And all the nights I wanna be inside you In our fight against the end Making love we are immo...
This song is from the movie: The Rise And Fall Of A White Collar Hooligan People have been asking about this song for a while. I am not taking credit for the song.
Buy Andrew Bayer's new album on iTunes: http://smarturl.it/neverleave A classic 2009 release from Signalrunners (aka Andrew Bayer and Alan Nimmo). We've included the original mix of "Meet Me In Montauk" and the Oliver Smith remix. Follow Anjunabeats: Website: http://www.anjunabeats.com Facebook: http://www.facebook.com/anjunabeats Twitter: http://www.twitter.com/anjunabeats Instagram: http://www.instagram.com/anjunabeats Google+: http://bit.ly/beats-google SoundCloud: http://soundcloud.com/anjunabeats
Signalrunners feat Julie Thompson - These Shoulders (Original Mix)
Label: Anjunabeats Catalog#: ANJ-074 Country: UK Released: 22 Jan 2007 Genre: Electronic Style: Trance, Progressive Trance Producers: Andrew Bayer & Alan Nimmo BPM, Key: 132 BPM, G One of my absolute Anjuna favorites! So incredibly uplifting. Wallpaper - http://wallbase.cc/wallpaper/909835
HQ WAV file. [No copyright infringement intended. Promotional purposes only]. Incredible tune. As pure as it gets! Enjoy :D Artists: Alan Nimmo & Andrew Michael Bayer (Signalrunners), Mike Foyle Released: 2005 Label: Armind
For HQ version, add &fmt=18 after the url f.ex. http://youtube.com/xxxxx&fmt=18 Signalrunners - Corrupted (Original Mix)
Signalrunners feat. Julie Thompson - These Shoulders (Club Mix) Love it From A State of Trance 365 Please watch in HQ!:http://www.youtube.com/watch?v=5sqqjN6eWYE&fmt=18 Enjoy
Track: Signalrunners - 3000 Miles Away (Original Mix) This is the first track to my new channel 'Full of Trance'! Classic track by signalrunner! Enjoy! =) Check out my main channel. Full of Progressive: https://www.youtube.com/user/GarbagePales Picture Link: http://interfacelift.com/wallpaper/D9c657eb/03592_inderschweiz_1920x1080.jpg * To the Owner / record label: If having this song on you tube is an issue. Please send me a PM and I will be happy to remove it. Thanks *
Buy/Stream: https://Anjunabeats.lnk.to/DLBOLLYo Subscribe: http://po.st/ytbeats Release Date: 1st October 2007 Follow Anjunabeats on Spotify: http://po.st/sAnjunabeats Buy/Stream: https://Anjunabeats.lnk.to/DestinyYo Listen to 'Don't Look Back': https://youtu.be/WlM3kYUf5SA Ahead of Andrew Bayer & ilan Bluestone's 'Destiny' being released tomorrow, our throwback this week is from 2007, when a young Andrew Bayer teamed up with Alan Nimmo under their Signalrunners project. "The follow up to the astounding Aria Epica by half Scottish, half American duo Alan Nimmo and Andrew Bayer aka Signalrunners is bound to cause a storm. Don’t Look Back immediately grabs your attention with its techy sequencing and electro bassline drop bound to hit right where it counts. It then unexpectedly breaks int...
Download this release at: http://clk.tradedoubler.com/click?p=24371&a=1488904&url=http%3A%2F%2Fitunes.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D80627363%26id%3D80627374%26s%3D143441%26uo%3D6%26partnerId%3D2003 The most gentle piano play you have ever heard and the best beats to go underneath them. If there ever was a way to fill clubs with some classical music, this is it. Love Theme Dusk shook the world with its unforgettable, sensitive sound, as it was being hammered by the big jocks all around the globe. No one less than Armin van Buuren opened with the song for 40.000 white-dressed party lovers at Sensation White 2005. But more followed, as it had massive impact and was favourited by countless of music lovers. Even though the piano melody was written by Dave Schona...
Subscribe: http://po.st/ytbeats Follow Anjunabeats on Spotify: http://po.st/sAnjunabeats Release Date: 1st October 2007 As we look forward to the start of the Anjunabeats North American tour, an appropriately-titled TBT from Andrew Bayer's Signalrunners project with Alan Nimmo. Website: http://www.anjunabeats.com Facebook: http://www.facebook.com/anjunabeats Twitter: http://www.twitter.com/anjunabeats Spotify: http://open.spotify.com/user/anjunabeats Instagram: http://www.instagram.com/anjunabeats Google+: http://bit.ly/beats-google SoundCloud: http://soundcloud.com/anjunabeats
"Not Enough Time" is the third single from the 1992 album Welcome to Wherever You Are, it was released simultaneously with "Baby Don't Cry" (Europe and Australia) but only in the US and Japan, by Australian rock band INXS. The song was written by Andrew Farriss and Michael Hutchence, the music in Sydney and the lyrics in Paris, France.
The lyrics to the song were originally intended for another composition from Welcome To Wherever You Are, which became later became the album's opening song 'Questions'. The original version can be heard on the 2002 remaster of the album.
Australian singer, Deni Hines, featured as a backing vocalist on the song and also married guitarist, Kirk Pengilly, a year later in 1993.
A video has been released for the song on YouTube on 3 August 2011.
The B-sides include a solo compositions from bassist Gary Beers; "Firma Terror" and another by Lead guitarist Kirk Pengilly entitled "Light the Planet" as well as "Deepest Red", an outtake from the X album.
There's a time to play and there's a time for sex
There's a time to lounge and there's a time to catch wreck
Watch your spot, cause if you sleep you'll get got
Our sound is hot cause we're true to hip-hop
It's the little big man, y'all little niggas just relax
I'm coming like a nut, butt niggas catching heart attacks
Adversaries better maintain
Don't even riff, stram, cause I'm a one-man gangbang
Boom, I hit it, now money I really did it
Brung out the beast in me, and the freaks be getting with it
Yes the fame is what they sweat
But you came for me to entertain then I'll make you wet
Meanwhile, got to keep a low profile
Our style is true, so yes I do smile
Original, just like the Dirty Rotten
And while our foes is plotting, Show is riding shotgun
There's a time to play and there's a time for sex
There's a time to lounge and there's a time to catch wreck
Watch your spot, cause if you sleep you'll get got
Our sound is hot cause we're true to hip-hop
Since I hit the boom, they say my brain is doomed
I object, it's sustained, now name this tune
Bringing more than other brothers on computers
Long as my vision ain't blurry, don't worry, pass the buddhas
Forget karate, cause I'd rather kick a lyric
You ain't trying to hear it? Then I'll be talking to your spirit
Show hit me off with the hype shit
Who needs pencils and papers? Brain cells is what I write with
The format, told you last LP I'm all that
Step to A.G., then you're best to be sure, black
Roll with my crew, I got the O.E.
20 dollar sack, and my hat to the back just like TLC
Now when you play, it'd better not be with Show and Dre
Or sex in between the sheets at my rest
Now it's time to lounge and I'm free from all clowns
Now who's catching wreck? I hit the cess, yes
There's a time to play and there's a time for sex
There's a time to lounge and there's a time to catch wreck
Watch your spot, cause if you sleep you'll get got
Our sound is hot cause we're true to hip-hop
I get rough and I hurt 'em like a puff of the ganja
Tough like Tonka, you'll get seen by the Jolly Green
Monster, the G sell out? Hell no
A good fellow who sports the shell toes
Step to me, I'll shoot you and your deputy
Everybody's in jeopardy except for me
They pop shit, like their skills I can't top it
I'm the one to rock with, lounge and pop some chocolate
I'm coming through, so what you gonna do?
When I hit you in the head with the lead from the number 2
A black boo, leaving suckers froze like a statue