- published: 24 May 2014
- views: 2132
'+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; })); }); -->
Jason Thomas Mraz (/məˈræz/; born June 23, 1977) is an American singer-songwriter who first came to prominence in the San Diego coffee shop scene in 2000. In 2002, he released his debut studio album, Waiting for My Rocket to Come, which contained the hit single "The Remedy (I Won't Worry)". With the release of his second album, Mr. A-Z, in 2005, Mraz achieved major commercial success. The album peaked at number 5 on the Billboard 200 and sold over 100,000 copies in the US. In 2008, Mraz released his third studio album, We Sing. We Dance. We Steal Things. It debuted at number 3 on the Billboard 200 and was an international commercial success primarily due to the hit "I'm Yours". The song peaked at number 6 on the Billboard Hot 100, giving him his first top ten single, and spent a then-record 76 weeks on the Hot 100. His fourth album, Love Is a Four Letter Word, peaked at number 2 on the Billboard 200, his highest-charting album to date.
Mraz has won two Grammy Awards and received two additional nominations, and has also won two Teen Choice Awards, a People's Choice Award and the Hal David Songwriters Hall of Fame Award. He has earned Platinum and multi-Platinum certifications in over 20 countries, and has toured in North America, South America, Europe, Asia, Australia, the Middle East and parts of Africa. As of July 2014, Mraz has sold over seven million albums, and over 11.5 millions digital singles. His musical style, from rhythmic feeling to his use of nylon string guitars, has been heavily influenced by Brazilian music.
Back to the Future is a 1985 American science-fiction adventure comedy film directed by Robert Zemeckis, written by Zemeckis and Bob Gale, produced by Gale and Neil Canton, and starring Michael J. Fox, Christopher Lloyd, Lea Thompson, Crispin Glover and Thomas F. Wilson. Steven Spielberg, Kathleen Kennedy, and Frank Marshall served as executive producers. In the film, teenager Marty McFly (Fox) is sent back in time to 1955, where he meets his future parents in high school and accidentally becomes his mother's romantic interest. Marty must repair the damage to history by causing his parents-to-be to fall in love, and with the help of friend, eccentric scientist Dr. Emmett "Doc" Brown (Lloyd), he must find a way to return to 1985.
Zemeckis and Gale wrote the script after Gale mused upon whether he would have befriended his father if they had attended school together. Various film studios rejected the script until the financial success of Zemeckis' Romancing the Stone. Zemeckis approached Spielberg, who agreed to produce the project at Amblin Entertainment, with Universal Pictures as distributor. The first choice for the role of Marty McFly was Michael J. Fox. However, he was busy filming his television series Family Ties and the show's producers would not allow him to star in the film. Consequently, Eric Stoltz was cast in the role. During filming, Stoltz and the filmmakers decided that the role was miscast, and Fox was again approached for the part. Now with more flexibility in his schedule and the blessing of his show's producers, Fox managed to work out a timetable in which he could give enough time and commitment to both.
Back to the Future is an upcoming musical with music and lyrics by Alan Silvestri and Glen Ballard and a book by Robert Zemeckis and Bob Gale, adapted from their original screenplay. Based on the 1985 film of the same name the musical is expected to make its world première in London's West End in 2015, the 30th anniversary year of the start of the successful franchise and the year to which the trilogy's characters travelled in Part II. The show will feature original music alongside hits from the film, including "The Power of Love" and "Johnny B. Goode".
During a question and answer session at a 2004 DeLorean convention, Bob Gale said that "It seems like Back to the Future would make a great Broadway show. So someday, maybe that'll happen. That's something I'd like to see." In February 2012, it was first revealed that a musical adaption of the 1985 film Back to the Future was being developed and had been explored for around eight years prior. Workshops for the musical took place in 2014, in July in London and the following month in Los Angeles, with the intention to open the show in the West End in 2015, in time for the 30th anniversary of the film.
Back to the Future is an animated series for television based on the live action Back to the Future movie trilogy. The show lasted two seasons, each featuring 13 episodes, and ran on CBS from September 14, 1991, to December 26, 1992, and reran until August 14, 1993 on CBS. The network chose not to renew the show for a third season, "citing low ratings." It later reran on FOX, as a part of the Fox Box block from March 22 to August 30, 2003.
It was the very first production of Universal Cartoon Studios. Christopher Lloyd, Thomas F. Wilson, Mary Steenburgen and James Tolkan reprised their roles. Although the cartoon takes place after the movies, co-creator Bob Gale has stated that it and the comics take place in their own 'what if' and alternate timelines and are not part of the main continuity.
Following the conclusion of Back to the Future Part III, Dr. Emmett L. Brown settled in 1991 in Hill Valley with his new wife Clara, their sons Jules and Verne, and the family dog, Einstein, living in the same farmland where Clara lived in 1885. As with the films, time travel was achieved through the use of a modified DeLorean, which had apparently been re-built after it was destroyed at the end of the trilogy. The DeLorean now has voice-activated "time circuits" and can also travel instantaneously to different locations in space and time, in addition to folding into a suitcase. The characters also traveled through time using the steam engine time machine Doc invented at the end of the third film.
Jason Mraz announces he and Alex Preston have plans of writing and jamming together! He also gives some very good advice to Alex through this video. Jason Mraz then talks about his new album "yes" and his collaboration with Raining Jane. He also talks about why they called it "yes" and tour plans. Lastly he gives advice to artists who get "no" first. Subscribe to Synergistic Videos http://www.youtube.com/subscription_center?add_user=synergisticvideos http://synergisticproductions.com http://www.facebook.com/SynergisticProductions http://www.twitter.com/_Synergistic_ http://www.instagram.com/SynergisticProductions http://www.synergisticproductions.tumblr.com http://www.youtube.com/user/SynergisticVideos Produced & Distributed by Jason England & Catalina Walsh of Synergistic...
Local band performance during Sapulut Forest Development Sdn Bhd FMU14 Annual Dinner 2019. Annual Dinner themed Back To School. Singer : Anastasha Arlene Junigo Lead Guitarist : Henry Jamis Rhythm Guitar : Rieko Bunsadan Keyboard : Joeyce Walter Drums : Raykes Linggu Bass Guitar : Daniel Sasius (not in picture)
The official video of "More Than Friends (feat. Meghan Trainor)" by Jason Mraz from the album 'Know.' Know. Available Now: https://Atlantic.lnk.to/KnowID Directed by Warren Kommers Produced by SixTwentySix Productions Executive Producers: Austin Barbera & Jake Krask Producer: Conor Bailey DP: Bryant Jansen 1st AD: Jonas Morales Production Designer: Clayton Beisner Choreographer: Nina McNeely Edited by: Warren Kommers Colored by: Greggory Reese @TheMill Subscribe for more official content from Jason Mraz: https://Atlantic.lnk.to/JasonMrazSubscribe Follow Jason Mraz http://jasonmraz.com http://facebook.com/jasonmraz http://twitter.com/jason_mraz http://instagram.com/jason_mraz http://jasonmraz.tumblr.com/ The official YouTube channel of Atlantic Records artist Jason Mraz. Since getting...
My new album ‘Mystical Magical Rhythmical Radical Ride' is out on June 23! ✨ Pre-order/save now: https://jasonmraz.lnk.to/MMRRRalbumID The official video of "Living In The Moment" by Jason Mraz from the album 'Love Is A Four Letter Word.' Download: http://smarturl.it/love Directed and produced by Derec Dunn & Shannon Toumey. Subscribe for more official content from Jason Mraz: https://Atlantic.lnk.to/JasonMrazSubscribe Follow Jason Mraz http://jasonmraz.com http://facebook.com/jasonmraz http://twitter.com/jason_mraz http://instagram.com/jason_mraz http://jasonmraz.tumblr.com/ The official YouTube channel of Atlantic Records artist Jason Mraz. Since getting his start in coffeehouses in San Diego, Jason Mraz has brought his positive message and soulful, folk-pop sound to rapt audie...
The official video of "Long Drive" by Jason Mraz from the album YES! YES! available now: http://smarturl.it/YesJasonMraz Listen to the playlist on Spotify! http://spoti.fi/1kbkkd9 Stream YES!: http://smarturl.it/JMYesStream “Long Drive” from the short film ‘We Can Take The Long Way’ Watch: http://youtu.be/0OfyQtaVpHA Love Someone: http://youtu.be/J74Y6kDDTkM Hello, You Beautiful Thing: http://youtu.be/gMkWxjVv-hU Subscribe for more official content from Jason Mraz: https://Atlantic.lnk.to/JasonMrazSubscribe Follow Jason Mraz http://jasonmraz.com http://facebook.com/jasonmraz http://twitter.com/jason_mraz http://instagram.com/jason_mraz http://jasonmraz.tumblr.com/ The official YouTube channel of Atlantic Records artist Jason Mraz. Since getting his start in coffeehouses in San Dieg...
My new album ‘Mystical Magical Rhythmical Radical Ride' is out on June 23! ✨ We Sing. We Dance. We Steal Things. We Deluxe Edition. Out now on limited edition 3-LP Vinyl, 2-CD, and digital formats! This 15th anniversary release features a new remaster of the album plus 14 bonus songs, including previously unreleased demo & vault tracks. A limited number of special crystal-clear vinyl are available at the Jason Mraz Online Store. Order yours now! https://lnk.to/jmwwwd Pre-order/save now: https://jasonmraz.lnk.to/MMRRRalbumID The official video of "Lucky (feat. Colbie Caillat)" by Jason Mraz from the album 'We Sing. We Dance. We Steal Things.' Subscribe for more official content from Jason Mraz: https://Atlantic.lnk.to/JasonMrazSubscribe Follow Jason Mraz http://jasonmraz.com http://fa...
The official video newly remastered in 4K of "Love Someone" by Jason Mraz from the album YES! YES! (Deluxe Edition) will be available October 25 on limited edition 2-LP Gold Vinyl and digital formats! This expanded 10th anniversary release features 5 previously unreleased live tracks, new artwork, and an exclusive poster inside the Vinyl packaging. Pre-order or pre-save now! https://jasonmraz.lnk.to/yes Sign up for the Newsletter to receive updates from Jason: https://jasonmraz.lnk.to/Newsletter “Love Someone” from the short film ‘We Can Take The Long Way’ Watch: http://youtu.be/0OfyQtaVpHA Hello, You Beautiful Thing: http://youtu.be/gMkWxjVv-hU Long Drive: http://youtu.be/e2wIq8qggzs Subscribe for more official content from Jason Mraz: https://Atlantic.lnk.to/JasonMrazSubscribe Foll...
Jason Thomas Mraz (/məˈræz/; born June 23, 1977) is an American singer-songwriter who first came to prominence in the San Diego coffee shop scene in 2000. In 2002, he released his debut studio album, Waiting for My Rocket to Come, which contained the hit single "The Remedy (I Won't Worry)". With the release of his second album, Mr. A-Z, in 2005, Mraz achieved major commercial success. The album peaked at number 5 on the Billboard 200 and sold over 100,000 copies in the US. In 2008, Mraz released his third studio album, We Sing. We Dance. We Steal Things. It debuted at number 3 on the Billboard 200 and was an international commercial success primarily due to the hit "I'm Yours". The song peaked at number 6 on the Billboard Hot 100, giving him his first top ten single, and spent a then-record 76 weeks on the Hot 100. His fourth album, Love Is a Four Letter Word, peaked at number 2 on the Billboard 200, his highest-charting album to date.
Mraz has won two Grammy Awards and received two additional nominations, and has also won two Teen Choice Awards, a People's Choice Award and the Hal David Songwriters Hall of Fame Award. He has earned Platinum and multi-Platinum certifications in over 20 countries, and has toured in North America, South America, Europe, Asia, Australia, the Middle East and parts of Africa. As of July 2014, Mraz has sold over seven million albums, and over 11.5 millions digital singles. His musical style, from rhythmic feeling to his use of nylon string guitars, has been heavily influenced by Brazilian music.
well the future boy where are you from
my time machine crashed over yonder
Syphillis is a bitch but contracting HIV is much worse
why are you pushing info into me
I have no need for it
I'm from the stars
Well I thought you'd like to know your scoop
I'm taking babies back with me, yeah
I'm taking them back home
so they can see there's a much better place
I've got a sister with an open mind
and my friends are all junkies
but there still my friends
Well as long as they don't use monkeys
we enjoy the heat, the stolen days in this winter of
thosand three
well the future boy said I've got friends
but you know sometimes it all depends
on how tall they are, against yourself
Well I am the future boy
I am the future boy
I am the future boy
I am the future boy
I am the future boy
I am the future boy
I am the future boy
I am the future boy
find your way home
Well my friends have all gone and left me
so I decided to come here and see
myself as a baby
but it looks like I'm stuck here this time
oh shit
I'm gonna miss my friends
but I know you're still the future boy
yes I'm still the future boy
I'm gonna build you a time machine to get back home
you're still the future boy
still the future boy
still the future boy
well I'm still the future boy
oh, this whole damn world is your toy boy
so get back on tour boy