- published: 27 Apr 2012
- views: 2550333
'+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; })); }); -->
Tony Cottrell, better known as Hi-Tek, is an American rapper and record producer from Cincinnati, Ohio. He is best known for his work with Talib Kweli on their Reflection Eternal album and on Black Star. His father is singer Willie Cottrell of the Willie Cottrell Band whom Hi-Tek featured on his second release Hi-Teknology 2.
Hi-Tek started his rap career with hip hop group Mood and had a regional hit with "Hustle on the Side". That song was made for Mood's album Doom, which featured amongst others Brooklyn MC Talib Kweli. Talib and Hi-Tek clicked immediately, and Hi-Tek went on to produce most of Talib Kweli and Mos Def's Black Star (1998). In 2000, Tek and Kweli (under the name Reflection Eternal) released Train of Thought (2000) on Rawkus Records, with raps by Talib Kweli and beats by Hi-Tek. It enjoyed moderate crossover radio success with the singles "The Blast" and "Move Somethin'". Reflection Eternal released a follow-up album titled Revolutions Per Minute on May 18, 2010.
Hi-Tek is the second studio solo album by rapper, Keak da Sneak and considered to be his best album by fans. It was released on June 16, 2001 for Moe Doe Records and was produced by Ant Banks, Rick Rock, One Drop Scott, Tone Capone, D-Dre and Keak da Sneak. The album was a modest success, peaking at #95 on the Top R&B/Hip-Hop Albums, #18 on the Top Independent Albums and #37 on the Top Heatseekers, and selling 6,510 copies in its first week out.
Technotronic was a Belgian techno studio-based music project formed in 1988 by Jo Bogaert, who originally gained notoriety in the early 1980s as part of a cover band and as a solo artist under various New Beat projects, including The Acts of Madmen and Nux Nemo. Together with vocalist Ya Kid K, he produced the hit single, "Pump Up the Jam", which was originally an instrumental. An image for the act was later put together, utilizing Congolese-born fashion model Felly Kilingi as its album/single cover art, and supposed singer in the music video.
The track that became "Pump Up The Jam" began life as "Technotronic" (which in turn became the project's official name), an original instrumental that Bogaert released under the name The Pro 24s. Based on Farley Jackmaster Funk's "The Acid Life," this instrumental initially included vocal samples from Eddie Murphy's "Delirious" live set and was months later replaced by newer music, along with lyrics and vocals from Ya Kid K. prior to the song's international release in September 1989.
People's Party with Talib Kweli arriving soon! A weekly interview show with big-name guests exploring hip-hop, culture, and politics. 1st episode on Sunday, June 9th at youtube.com/UPPROXXvideo From 2000 Album: "Train of Thought"...[Artist info below]..... Get The Music: http://www.amazon.com/s/ref=nb_sb_noss_1?url=search-alias%3Dpopular&field-keywords=reflection+eternal & http://itunes.apple.com/us/artist/hi-tek/id16276352 The duo of Talib Kweli and Hi-Tek met in Tek's native Cincinnati, Ohio, following the release of the Hi-Tek/Mood collaboration "Hustle on the Side". Kweli and Hi-Tek made their first official collaboration in 1997 on Mood's debut album, Doom, on the track "Industry Lies". That same year, the two formed as Reflection Eternal, and signed to upstart underground hip hop ...
STREAM / DOWNLOAD: https://babygrande.fanlink.to/hiteknologyvol2 Purchase the 'Hi-Teknology - Volume 2' vinyl now: https://store.babygrande.com/products/hi-tek-hi-teknology-vol-2-red-vinyl-2xlp You are now listening to "Music For Life" by Hi-Tek ft. J Dilla, Nas, Common, Busta Rhymes, & Marsha Ambrosius of Floetry from his second album, 'Hi-Teknology - Volume 2,' in stores now via Babygrande Records. For more information on Hi-Tek, please visit: https://twitter.com/hitek https://www.instagram.com/hitek https://www.facebook.com/pages/Hi-Tek/109612749065199 https://soundcloud.com/hi-tek-official ABOUT BABYGRANDE RECORDS Established in 2001, Babygrande Records is one of the premier independent labels operating today. Babygrande still maintains its unique perspective within the industry...
In this episode of Rhythm Roulette, Mass Appeal presents Hi-Tek. Not to be an #oldhead, but if you've never delved into Rawkus Records and Soundbombing, you're seriously missing out. We're talking about Eminem, young El-P, Mos Def, Talib Kweli. Plus, the production-par-excellence, and a big part of which was coming from the one and only, Hi-Tek. We linked up with Cincinatti's own for our newest episode of Rhythm Roulette, featuring Spirit's Twelve Dreams of Dr. Sardonicus, The Routers' Superbird, and Elvis' For Ol' Times Sake. Tek cooks up a soulful, bassline-heavy beat, clowning Elvis all the way ("What'd Chuck D say?"). Subscribe to Mass Appeal here: http://goo.gl/LqG3wZ --------------Mass Appeal-------------- Website: http://massappeal.com Twitter: http://twitter.com/massappeal Insta...
Tom Segura shares a rumor he heard about beef between Talib Kweli and Hi-Tek. Kweli tells Tom the full story. http://tomsegura.com/
"High Off Life" available at: https://future.lnk.to/HighOffLife Official Store: https://shop.freebandz.com/ Future online: https://www.twitter.com/1future https://www.instagram.com/future https://www.soundcloud.com/futureisnow https://www.facebook.com/FutureOfficial http://www.freebandz.com/ (C) 2020 Epic Records, a division of Sony Music Entertainment. With Freebandz. #Future #HiTekTek #HighOffLife
SPASS - HI TEK (DVEIGHT FLIP) Available now! Download & Streaming https://www.toneden.io/dveight-3/post/spass-hi-tek-dvieght-flip-dl Subscribe & Turn on notifications 🛎️ http://bit.ly/DubstepuNkSubscribe?sub_confirmation=1 Background: @azelbeatbox 👉🏻 Follow SPASS SoundCloud | https://soundcloud.com/spassfun Twitter | https://twitter.com/spassdubs 👉🏻 Follow DVEIGHT SoundCloud | https://soundcloud.com/itsdveight Facebook | https://facebook.com/dveightmusic Twitter | https://twitter.com/dveightmusic Instagram | https://instagram.com/dveightmusic 👑 | Spotify Playlist: http://DubstepuNk.uk/Spotify 🤖 | More Dubstep? http://DubstepuNk.uk/Dubstep ⚔️ | Riddim Or Die: http://DubstepuNk.uk/Riddim Follow Dubstep uNk Instagram: http://DubstepuNk.uk/IG Facebook: http://DubstepuNk.uk/FB Sou...
STREAM / DOWNLOAD: https://babygrande.fanlink.to/hiteknologyvol2 Purchase the 'Hi-Teknology - Volume 2' vinyl now: https://store.babygrande.com/products/hi-tek-hi-teknology-vol-2-red-vinyl-2xlp You are now listening to "So Tired" by Hi-Tek ft. Dion, Bun B, Devin The Dude, & Pretty Ugly from his second album, 'Hi-Teknology - Volume 2,' in stores now via Babygrande Records. For more information on Hi-Tek, please visit: https://twitter.com/hitek https://www.instagram.com/hitek https://www.facebook.com/pages/Hi-Tek/109612749065199 https://soundcloud.com/hi-tek-official ABOUT BABYGRANDE RECORDS Established in 2001, Babygrande Records is one of the premier independent labels operating today. Babygrande still maintains its unique perspective within the industry, prospering during the most ...
Provided to YouTube by TuneCore The Sun God · Hi-Tek Hi-Teknology ℗ 2020 Hi-Tek Music, Inc. Released on: 2020-01-08 Auto-generated by YouTube.
This feature is a somewhat underrated Hip Hop producer, Hi-Tek. He has produced for some of the biggest names in Hip Hop. Mos Def, Talib Kweli of Black Star, Nas, 50 Cent, The Game, Common and more. Hi-Tek has produced some of the best Hip Hop beats of all time in our opinion. Hi-Tek started his career with hip hop group Mood and had a regional hit with "Hustle on the Side". That song was made for Mood's album Doom, which featured amongst others Brooklyn MC Talib Kweli. Hi-Tek went on to produce most of Talib Kweli and Mos Def's Black Star (1998). In 2000, Tek and Kweli (under the name Reflection Eternal) released Train of Thought (2000) on Rawkus Records, with raps by Kweli and beats by Hi-Tek. It enjoyed moderate crossover radio success with the singles "The Blast" and "Move Somethin'". ...
Purchase the Vinyl 2XLP now: http://store.ihiphop.com/products/hi-tek-hi-teknology-vol-2-vinyl-2xlp Purchase "Hi-Teknology Vol. 2: The Chip" on iTunes now: https://itunes.apple.com/us/album/let-it-go/id257900260?i=257902040 You are now watching the official video for "Where It Started At (NY)" by Hi-Tek featuring Dion, Jadakiss, Papoose, Talib Kweli from "Hi-Teknology Vol. 2" in stores now on Babygrande Records. For more information on Babygrande Records, visit: http://www.babygrande.com http://babygranderecords.tumblr http://www.twitter.com/babygrande http://instagram.com/babygranderecords
REMASTERED IN HD! Music video by Technotronic performing Pump Up The Jam. (C) 1990 ARS Entertainment Belgium (A Division Of Universal Music Belgium) #Technotronic #PumpUpTheJam ##Remastered
Music video by Technotronic performing Get Up (Before The Night Is Over).© 1989 ARS Entertainment Belgium (A Division Of Universal Music Belgium)
Music video by Technotronic performing Move This.© 1992 ARS Entertainment Belgium (A Division Of Universal Music Belgium)
Click To Subscribe Now! https://www.youtube.com/OLDTAPES?sub_confirmation=1
Eurodance - Back to the 90's part 3 | Назад в 90-е часть 3 Technotronic - Move It To The Rhythm 1994 Весь сборник: https://www.youtube.com/playlist?list=PLg-tE9EpLV1hmX4jVdn7kp51wtGIEc_W7
Devido a restrições do Youtube, as músicas estão relacionadas nos comentários. Due to YouTube restrictions, songs are listed in the comments. Remasterização: Canal Paulo All Toca Discos: Technics SL2900 This channel is not monetized. Contribute any amount. Thanks. https://www.paypal.com/donate?hosted_button_id=JV2BD3FMJE2J2 Esse canal não é monetizado. Ajude fazendo um PIX de qualquer valor na chave - [email protected] ou no link Paypal acima. Se inscreva e deixe seu like. É muito importante para o canal.
"Get Up (Before The Night Is Over)!" Es una canción de 1989 por el grupo belga dance-pop - electrónica Technotronic , que ofrece Ya Kid K Fue el segundo. sencillo del álbum debut de la banda Pump Up The Jam: El álbum en el que que el tema se encuentra en la segunda pista, y fue lanzado en 1990. Fue un gran éxito en muchos países, convirtiéndose en un Top 10 en Australia, Canadá, Estados Unidos y en muchos países de Europa, encabezando la tabla en Bélgica, Finlandia, España y Suiza. La canción fue relanzado en 1998 y en 1999, respectivamente, bajo el título "Get Up (el 98 Sequel)" y "Get Up (el Sequel 1999)". La canción aparece en el Dance Dance Revolution Ultramix 4 y Dance Dance Revolution tercera Mix Released: 8 January 1990 Format: CD single, CD maxi,, 7" single, 12" maxi Recorded: 1...
Tony Cottrell, better known as Hi-Tek, is an American rapper and record producer from Cincinnati, Ohio. He is best known for his work with Talib Kweli on their Reflection Eternal album and on Black Star. His father is singer Willie Cottrell of the Willie Cottrell Band whom Hi-Tek featured on his second release Hi-Teknology 2.
Hi-Tek started his rap career with hip hop group Mood and had a regional hit with "Hustle on the Side". That song was made for Mood's album Doom, which featured amongst others Brooklyn MC Talib Kweli. Talib and Hi-Tek clicked immediately, and Hi-Tek went on to produce most of Talib Kweli and Mos Def's Black Star (1998). In 2000, Tek and Kweli (under the name Reflection Eternal) released Train of Thought (2000) on Rawkus Records, with raps by Talib Kweli and beats by Hi-Tek. It enjoyed moderate crossover radio success with the singles "The Blast" and "Move Somethin'". Reflection Eternal released a follow-up album titled Revolutions Per Minute on May 18, 2010.
-Talib Kweli-
Here I am
Sooooouuuulllll
Step out on the block to face the sun
Creep the people in the village that raised my son
As far as days go this look like an amazing one
I feel more normal in the summer the same as the yankees won
It's like of course, what you expect less
The night about to kick off, foks is out in their best dress
Pimps and whores rising on the horizon
Ballers coppin more diamonds
Watch the ?ferrion? looking towards Zion
What's embedded in the hardest head
It's the epic lie to me and debt to a
Country that gives us no credit
So cats stealin money cash hoes cuz
That's what's expected
What's the bill when the original architect is ?kinetic?
Mummies return, so dummies can learn
Just how much Hollywood got to burn
Of our money that's hard-earned
But that really ain't my concern
As I walk the block
When the sun goes down it starts to get hot
Scorchin
[Chorus X2]
Bridge to Bama
Bring your wife, your brother, your kids, your mama
(bring everybody) (your mammy)
Shits bananas (bananas)
The way we paint pictures in a vivid manner
(picture it)
[Verse 2]
Magnetic like refrigerator poetry
Attract imimators who wanna flow like me
You know it's me, floating free
Through the ghetto were the people supposedly
Ain't trying to show no love openly
Give me your hand (yeah)
Trying to build a bridge so we can stay the course
Hi-Tek lay the track for the train of thought to run across
Come across places were faces got tracks of tears
Cuz the human race been runnin up on they backs for years
Yeah, but they don't break
They keep it movin like when I travel the land
And people other people do it
How other people go through it
I'm bridging the gap like the Black Eyed Peas
I'm lovin givin it back, to see them raise up
I'm living for that
To keep trying means you keep failing
But if you don't keep trying
That means you keep dying
What the hell, we gonna die anyway
Keep your soul live when you're here
Is what I'm trying to say
[Chorus X2]