- published: 22 Jan 2010
- views: 7936
'+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; })); }); -->
Dream Team may refer to:
The 1992 United States men's Olympic basketball team, nicknamed the "Dream Team", was the first American Olympic team to feature active NBA players. Described by American journalists as the greatest sports team ever assembled, and called by the Naismith Memorial Basketball Hall of Fame "the greatest collection of basketball talent on the planet", it defeated its opponents by an average of 44 points en route to the gold medal against Croatia at the 1992 Summer Olympics held in Barcelona, Spain.Chuck Daly served as coach, assisted by Lenny Wilkens, P. J. Carlesimo, and Mike Krzyzewski.
At the 1988 Summer Olympics in Seoul, the United States national basketball team, made up of college stars, finished in third place. The defeat increased calls for professionals to be allowed to play in the Olympics. Borislav Stanković of FIBA advocated for this for years until the organization agreed in April 1989 despite American and Russian votes against the proposal.USA Basketball asked the NBA to supply players for its 1992 roster; the league was initially unenthusiastic, not foreseeing the cultural phenomenon that the team would become.Sports Illustrated was the first to nickname the forthcoming American roster as the "Dream Team", on the cover of its February 18, 1991 issue. So many corporate sponsors (including McDonald's, Coca-Cola, and Kellogg) wished to use the team to advertise their products that some were rejected.
The Dream Team was an Australian Football League (AFL) representative team created to take part in the AFL Hall of Fame Tribute Match against a Victorian representative team.
Although not officially a State of Origin game, eligibility for the Dream Team was based upon State of Origin rules: players who played their junior football within Victoria were eligible for Victoria, and players who played their junior football outside Victoria (including international players) were eligible for the Dream Team. The "Dream Team" concept was similar to the Allies, a composite State of Origin team representing players from anywhere except for South Australia, Victoria and Western Australia.
The Dream Team wore a predominantly white guernsey, with beige cuffs and collars, and blue numbers and side panels. The names of 1246 community and grass-roots football clubs competing within the Australian states and territories eligible for the Dream Team were also included in beige across the front.
Make My Day may refer to:
In music:
In other uses:
"Make My Day" is a pop song by Japanese recording artist Yui Aragaki. It was released as her first single on July 16, 2008.
"Make My Day" is a pop-rock song written and produced by Japanese singer-songwriter Keito Blow. It was released in three limited editions: edition A, which has an illustration cover drawn by Aragaki herself, edition B, which comes with a DVD including three live performances and edition C, which comes with a DVD including three music videos and off-shot footage.
Aragaki gave Blow a list of themes she wanted her music to reflect and Blow used it as inspiration to write the song, as well as the b-side "I Believe". The second b-side, "Soba ni", was written by Aragaki herself and talks about the many things one can notice in a Shibuya crowd.
"Make My Day" was used as theme song for the Fuji TV drama 81diver, starring Junpei Mizobata and Riisa Naka.
"Make My Day" debuted on the daily Oricon singles chart at #1 with 11,499 copies sold. It peaked at #2 on the weekly charts with 53,471 copies sold. The song debuted at #1 on the Billboard Japan Hot 100 chart "Make My Day" was the 12th best selling single for the month of July and 88th best selling single of the year.
"Make My Day" is Mai Kuraki's 14th single, released on December 4, 2002
All lyrics written by Mai Kuraki.
A-Next is the Marvel Comics' MC2 universe version of the Avengers. The team made its first appearance in What If? #105, the first comic featuring Spider-Girl, and the team's origin story was told in the A-Next #1, cover dated October 1998.
The first issue of A-Next paid homage to The Avengers (vol. 1) #1, with an Asgardian menace prompting new superheroes to band together, all of them analogues to the original team. Future stories introduced new heroes and menaces, most of them based on pre-existing Marvel characters. Characters and story elements created by DeFalco in the comic were used in other comics in the MC2 Universe.
A five issue miniseries entitled Avengers Next ran from November 2006 to January 2007, written by Tom DeFalco and with artwork by Ron Lim, that followed on from the events of Last Hero Standing and Last Planet Standing. It reunited the remaining members of A-Next and added new members Sabreclaw, Kate Power (of Power Pack), Thena, the daughter of Thor and a former criminal teleporter called Warp to the team.
from dj krine collection... Part 3 - The Vocal Remixes Label: Freeze Records Catalog#: 50074-12 Format: Vinyl, 12" Country: US Released: 1994 Genre: Electronic Style: House
OFFICIAL ED SHEERAN ACAPELLA MEDLEY - SHAPE OF YOU, THINKING OUT LOUD, BARCELONA, A-TEAM, LEGO HOUSE, PHOTOGRAPH, NANCY MULLIGAN! Ed Sheeran’s music is a huge inspiration of mine. From his raw soulful romantic ballads to his 10-words-a-minute raps, I have been hooked on his music since day one. So, I thought I would cover some of my favourites using nothing but my voice. ‘BUT WAIT’ I hear you cry because in truth, I have missed out a lot of his great songs. SO, I guess I will have to do another video some day. Anyway, I hope you enjoy this video. Please leave a comment and subscribe to my channel! Love, Eliza x About Me: Hi! I’m Eliza, a singer-songwriter from Cambridge, UK. I write original songs and perform covers of some of my favourite artists. I also play the piano, record and p...
Our favorite Deep House and Melodic Deep music tracks for a perfect studying, chilling, or working session. Our live radio stream is here for you 24/7. ❤ 🎧Our Playlists ↪︎ Deep House: https://thegrandsound.ffm.to/spotifydeep ↪︎ Progressive House: https://thegrandsound.ffm.to/spotify 🔗More The Grand Sound ↪︎ Instagram: https://instagram.com/the.grand.sound ↪︎ Website: https://thegrandsound.com 🏆Become a Member / Patron ↪︎ YouTube: https://thegrandsound.ffm.to/join ↪︎ Patreon: https://patreon.com/TheGrandSound 🦜Chat with us on Discord ↪︎ https://discord.gg/kqpNgvF 📸Photos by Unsplash ↪︎ https://unsplash.com 🤖Bot powered by Nightbot ↪︎ https://nightbot.tv ▬▬▬ Chat Commands ▬▬▬ !love ➟ Vote up and add a 💗 to the current track/song. (Also works with !like or !awesome) !track ➟ Get the na...
Subscribe: http://hdsoundi.com/go/subscribe Download (Bandcamp): http://bit.ly/2lAM1j4 Download (iTunes): http://apple.co/2lB79pp Music by: Epic Soul Factory & Really Slow Motion Composed by: Cesc Vilà (Epic Soul Factory) Album: SIGMA (2015) Auto-Replay: http://hdsoundi.com/video-470&loop For track licensing enquiries write to: [email protected] Stream full album on Spotify: https://play.spotify.com/album/01oTdTA3L4wV9qv36M8cdB Follow Epic Soul Factory on: Facebook: https://www.facebook.com/epicsoulfactory/ Soundcloud: https://soundcloud.com/epicsoulfactory Youtube: https://www.youtube.com/channel/UCNceJmj2ZYJnERpQHvidapQ Support Really Slow Motion by purchasing their music: Amazon: http://goo.gl/kOAGrh iTunes: https://goo.gl/wpnHFU Spotify: https://goo.gl/eVyEyF Bandcamp...
A beautiful guided meditation story where you meet your spirit guide or chosen being of light (details below) Join our community/see our products: https://www.thehonestguys.co.uk/products In this comforting Guided Meditation, you spend time in the company of your spirit guide or your chosen being of light. Use this as a retreat for your soul, for comfort, healing and re-energising as you listen to exquisite heavenly music and voices, and experience the essence of unconditional and eternal love. ____________________________________ THE HONEST GUYS We create effortless ways for anyone to reach a profound sense of deep relaxation, meditation and sleep, without ever having to try. In particular, we cater to anyone who is turned-off by the idea of "meditation", but still want to reap the m...
REFUGEE? The smells, the air, the mosque, the faces, the joy, the horror - How does displacement as a young Syrian refugee cloak every move you make in the pseudo existence echoing a life that will never return? Grasp a look through the kaleidoscope of Ayah a young Syrian girl that spend three months working on this short doc with the film Team of Turning Tables Jordan in the Zarqa refugee Camp in Jordan and see for your self. Just remember that Ayah Khater is a real person with hopes and dreams besides being a figure in the statistics that counts more than 9 million displace Syrians and more than 250.000 killed. Filmed and instructed by Ayah Khater. Turning Tables Jordan 2015 - all rights reserved Special thanks to Mohammad Zakaria, Boikutt, Daro, Papa and all of the Turning Tables J...
A very accurate journey down the life-sucking rabbit hole that is creating an anime music video. If you're looking to win the next Soul's Team IC, then this is the video to watch. *Note* The actual guide isn't terrible, I just wanted to have some fun with it. --- ►Twitter: https://twitter.com/Mycathatesyou69 ►Facebook: https://www.facebook.com/Mycathatesyo... ►Credits: Link to Wikihow: https://www.wikihow.com/Make-an-Anime-Music-Video Sadface / Umaru icon from Leolide: https://www.youtube.com/channel/UCYM5Y_PAHUe1b7sJZjGpJDA/undefined AMVs / Footage shown: - Faded but Worse by Leolide: https://www.youtube.com/watch?v=vK2C6cQTI_o - Rainbow Dash x Pikachu Crossover by Rolfyboy8: https://www.youtube.com/watch?v=Y0vhX_Xy0xE - TaigaxJim by KimStanfield: https://www.youtube.com/watch...
Tommy Lee Sparta performs Soul Reaper 2016 Damage Musiq https://itunes.apple.com/us/album/soul-reaper-single/id1073811426 http://vevo.ly/jGwn58 #TommyLeeSparta #SoulReaper #Vevo #Reggae #OfficialMusicVideo
Rene Descartes is perhaps the world’s best known-philosopher, in large part because of his pithy statement, ‘I think therefore I am.’ He stands out as an example of what intellectual self-confidence can bring us. Please subscribe here: http://tinyurl.com/o28mut7 If you like our films take a look at our shop (we ship worldwide): http://www.theschooloflife.com/shop/all/ Brought to you by http://www.theschooloflife.com Produced in collaboration with Mad Adam Films http://www.madadamfilms.co.uk #TheSchoolOfLife
Official Music Video for "It Runs Through Me (feat. De La Soul)" by Tom Misch Taken from Tom Misch's debut album "Geography" Stream / Buy: https://tommisch.lnk.to/geography Credits: Director – Joshua Osborne Commissioner – Duncan Murray Executive Producer – Ben Schneider Producer – Johnny Griffith Producer – Tom O’Driscoll Production Company - Radical Media Production Assistant - Ester Viana 1st AD – Chris Malin Runner – Gabriel Brown Runner – Lewis Osborne Cast Tom Misch Pos - De La Soul Yussef Dayes - Drums Isobella Burnham - Bass Jamie Leeming - Guitar Sam Wills - Keys Pippa Melody Kaidi Akkinibi Fergie - Engineer DOP – Diana Olifirova 1st AC – Kate Molins 2nd AC – James Wicks Steadicam – Josh Brooks Gaffer – Ben Ransley Spark – Mark Stewart Spark – Chris Barber Art Director...
Dream Team may refer to:
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
The other day a friend gave me a call
He said that the dream team was playin' basketball
Was so excited I had a get a witness
The first time the NBA was in the 'lympics
I tuned in because I was hella psyched
To see Magic Johnson on the same team with Mike
Gettin' crazy and havin' lots of fun
We were makin' sure that they got the job done
The fans were wavin' the red white end blue
It seemed strange to me was it strange to you?
The brotha's on the street and everyone is scared a ya
So how could ten Africans represent America?
Bullshit it didn't mean a thing 'cause in the same year
We saw Rodney King
So I thought that I would put a team together
A team that I have been waitin' for forever
Well some of you may know exactly who I mean
But if you don't then let me introduce you to
My dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well chuck D's announcin' flava's, flava's doin' color
And halftime entertainment is by Dre and Ed Lover
Malcolm X is the coach he's drawin' up the strategy
We're choppin' appart all America's anatomy
'Cause they're the ones we're up against of course
Our general manager is chief crazy horse
Huey Newton 'cause he was extra hard
He's the one who would be playin' at the shootin' guard
I dreamed Charles Barkley would be played by Marcus Garvey
He'd be throwin' people off his back and makin'
Sure they never got a rebound rebound and he'd throw it to the outlet
Nat Turner 'cause he can turn the corner when he's out there
He be flyin' through the air and throwin' passes like he really doesn't care
Behind the back and in between the legs
He's handlin' the rock as gently as an egg
He's throwin' it into Angela Davis's neighborhood
She's postin' up down in the extra hard wood
When she grabs the pill and then she puts her shoulder down
Get out the way because she's gonna throw down now
Boom oh my God, I just can't believe it
Well get another backboard or better yet leave it
We always play for fun, we always play for keeps
The game is over and the loser's gotta sweep
Up the glass that we busted in the ass
Set the record straight about America's past
This is my dream team
Spearhead in the area
Dream team's in the house
Dream team's in the house
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well after doin' that we be headin' for the ceremony
And on the heart is a bunch of baloney
The spirit of the '68 Olympics
Black power people can I get a witness
Fist in the air this is the proper manners
While Jimi Hendrix is fuckin' up the spangled banner
Up into the sky miles Davis blows a horn
Look into the bleachers, it's Bill Clinton sellin' popcorn
So now we jump and we have a celebration
Shaquille 0'neal would provide the entertainment
To some of you this is a far fetched scheme
But to me, I'll tell you what it is
This is my dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green