- published: 25 Oct 2017
- views: 215686
'+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; })); }); -->
Carlton Ernest Fisk (born December 26, 1947) is a retired Major League Baseball catcher. During a 24-year baseball career, he played for both the Boston Red Sox (1969, 1971–1980) and Chicago White Sox (1981–1993). The 6-foot-2-inch (1.88 m), 220-pound (100 kg) Fisk was known in the majors as "Pudge", his childhood nickname as he had been a chubby youngster, or "The Commander". He was the first player to be unanimously voted American League Rookie of the Year (1972).
Fisk is best known for "waving fair" his game-winning home run in the 12th inning of Game 6 of the 1975 World Series. At the time of his retirement in 1993, he held the record for most home runs all-time by a catcher with 351 (since passed by Mike Piazza). Fisk held the record for most games played at the position of catcher (2,226) until June 17, 2009 when he was surpassed by Iván Rodríguez. Fisk still holds the American League record for most years served behind the plate (24). Fisk was voted to the All-Star team 11 times and won three Silver Slugger Awards which is awarded annually to the best offensive player at each position.
The following is a list of Wu-Tang Clan associated acts, known as Killa Beez and Wu Fam. They are at times directly funded, supported, or produced by Clan members, are formed as extension groups originating from Clan members, or close to The Clan. The list is ever growing, but there remains a basis of sound and content musically common amongst the vast majority.
A.I.G. is a duo composed of Allah Wise (aka The Wizard), and Darkim Be Allah. The group, whose name stands for "Allah Is God", debuted on the Wu-Tang Killa Bees: The Swarm compilation with the track "Bronx War Stories". An album titled Retaliation Strike was completed but was never released, a situation which eventually caused the group to leave the Wu-Tang stable and pursue an independent route, though they remain on good terms with the collective. They finally released their debut Fame Labs Presents in 2005. Stefano and Mike joined the group in 2011 as interns, but quickly escalated to the top with songs accounting for their daily trials and tribulations as interns. In 2012, Stefano and Mike were formally offered to continue their careers at A.I.G. on a full-time basis.
Man vs. Wild, also called Born Survivor: Bear Grylls,Ultimate Survival,Survival Game, or colloquially as simply Bear Grylls in the United Kingdom, is a survival television series hosted by Bear Grylls on the Discovery Channel. In the United Kingdom, the series was originally shown on Channel 4, but later series were broadcast on Discovery Channel UK. The series was produced by British television production company Diverse Bristol. The show was first broadcast on 10 November 2006 after airing a pilot episode titled "The Rockies" on 10 March 2006.
In a special first aired on 2 June 2009, Will Ferrell joined Grylls on a survival trip to Northern Sweden. Grylls also said he has been approached about doing a Man vs. Wild urban disaster 3-D feature film, an idea he said he would "really like to do."Ben Stiller also signed on for an episode later in the year. Grylls signed on to showcase urban survival techniques in a new Discovery show called Worst-Case Scenario, which premiered on 5 May 2010 on the network. In March 2012, Discovery Channel terminated its contract with Grylls due to contract disputes, effectively cancelling the series.
Tied in the 12th inning of Game 6 of the 1975 World Series, Carlton Fisk waives his home run ball just fair for the walk-off victory Check out http://MLB.com/video for more! About MLB.com: Former Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League Club owners voted unanimously to centralize all of Baseball's Internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the Internet. In August 2002, MLB.com streamed the first-ever live full length MLB game over the Internet when the Texas Rangers and New York Yankees faced off at Yankee Stadium. Since that time, millions of baseball fans aroun...
#carltonfisk #baseballgame #baseballhalloffame #baseballplayer Carlton Fisk remains one of the most valuable players in the history of the MLB. He is celebrated for his incredible skill and distinctive style that captured the hearts of baseball fans everywhere. His performances on the field were nothing short of legendary. Yet, his career was not without its share of drama. Fisk's story also includes moments of controversy, from a DUI to high-profile feuds that made headlines!
8/2/85: Carlton Fisk gets a pair of outs at home plate after a baserunning error by the Yankees in which two players are sent home Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New Yor...
4/10/81: In his first game back in Boston after joining the White Sox, Carlton Fisk hits a clutch two-run home run in the eighth Check out http://MLB.com/video for more! About MLB.com: About MLB.com: Baseball Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League Club owners voted unanimously to centralize all of Baseball's Internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the Internet. In August 2002, MLB.com streamed the first-ever live full length MLB game. Since that time, millions of baseball fans around the world have subscribed to MLB.TV, the live video streaming product that...
October 21, 1975 – In the bottom of the 12th inning of Game Six, Carlton Fisk hits one of the most dramatic walk-off home runs in Major League Baseball history. Seen by 75.9 million television viewers, the Boston Red Sox forced a seventh game with the Cincinnati Reds in a 7-6 win. #CarltonFisk #WalkOffHomer #Shorts
If It Stays Fair
5/20/76: Benches clear in the Bronx when Lou Piniella collides with Carlton Fisk at home plate Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New York Yankees faced off at Yankee Stadi...
A look back at the career of Pudge (Carlton Fisk). #wsbk #redsox #bostonredsox #redsoxnation
Thurman Munson and Carlton Fisk both played catcher at a time when the job required a lot of physical contact. They both excelled with a bat as well as behind the plate. They both led their teams to greatness (or at least really damn close, in the case of the 1975 Red Sox). And, for our purposes, they were both stupendously competitive. Their rivalry was driven by a relentless desire to be the best, and it's what the Yankees-Red Sox rivalry is at its very best. Subscribe: https://goo.gl/Nbabae Check out our full video catalog: https://goo.gl/9pMHRV Visit our playlists: https://goo.gl/NvpZFF Like SB Nation on Facebook: https://goo.gl/Pzcs7O Follow on Twitter: https://goo.gl/5LI02D Follow on Instagram: https://goo.gl/aY2FFK Explore SB Nation: http://www.sbnation.com
Stream Man vs. Wild on discovery+ ► https://www.discoveryplus.com/show/man-vs-wild #ManVsWild #BearGrylls #Survival Subscribe to Discovery: http://bit.ly/SubscribeDiscovery Follow Us on TikTok: https://www.tiktok.com/@Discovery We're on Instagram! https://instagram.com/Discovery Join Us on Facebook: https://www.facebook.com/Discovery Follow Us on Twitter: https://twitter.com/Discovery
Infomation for this episode: No in series: 41 No in episode: 3 Title: "Vietnam" Survival expert(s): Andrew Wood Original air date: August 26, 2009 More info: Grylls demonstrates what it was like for soldiers who had to survive in the jungles of Vietnam, during the Vietnam War.
Guys enjoy this episode of Man vs Wild
YO What's Up Guys!!! This is my new channel. Like, Comment and Subscribe to each and every one of my videos if you want me to do more(or not do more... I'm not choosy)! FYI, I record every Friday, Saturday, and sometimes Sunday too! From as little as 2 videos, to 8! Follow me on Instagram & Facebook: @talha_z098 And I'll make sure to follow you back ASAP! If classic gaming, music, comedy, or just plain RANDOM videos is your thing... then PLEASE subscribe today! And if not, still subscribe cause this being my life career would never work out if all y'all don't pitch in to help. JK it's not really my life goal... but it would be nice to have a good channel that gives me some profit(Just so you know, YouTube doesn't pay well at all!). Also, check out my new website that is useless! https:...
#beargrylls #manvswild #arizona
In an environment full of hidden danger, Survival expert Bear Grylls wades his way through the perilous Borneo jungle, meeting unexpected guests and catching peculiar meals. DCODE the outlandish ways to surviving a jungle. #DCODE, #ManVsWild, #BearGrylls
man vs wild in hindi HD quality Follow Our Sponsored : https://www.facebook.com/kynddating https://www.instagram.com/kynddating/
Stream Man vs. Wild on discovery+ ► https://www.discoveryplus.com/show/man-vs-wild #ManVsWild #BearGrylls #Survival Subscribe to Discovery: http://bit.ly/SubscribeDiscovery Follow Us on TikTok: https://www.tiktok.com/@Discovery We're on Instagram! https://instagram.com/Discovery Join Us on Facebook: https://www.facebook.com/Discovery Follow Us on Twitter: https://twitter.com/Discovery
Man vs wild in Hindi|| Siara nabada|| bear Grylls full episode Roasting Chanel link ________________ https://youtube.com/@ShaReeF_RoAsT
Carlton Ernest Fisk (born December 26, 1947) is a retired Major League Baseball catcher. During a 24-year baseball career, he played for both the Boston Red Sox (1969, 1971–1980) and Chicago White Sox (1981–1993). The 6-foot-2-inch (1.88 m), 220-pound (100 kg) Fisk was known in the majors as "Pudge", his childhood nickname as he had been a chubby youngster, or "The Commander". He was the first player to be unanimously voted American League Rookie of the Year (1972).
Fisk is best known for "waving fair" his game-winning home run in the 12th inning of Game 6 of the 1975 World Series. At the time of his retirement in 1993, he held the record for most home runs all-time by a catcher with 351 (since passed by Mike Piazza). Fisk held the record for most games played at the position of catcher (2,226) until June 17, 2009 when he was surpassed by Iván Rodríguez. Fisk still holds the American League record for most years served behind the plate (24). Fisk was voted to the All-Star team 11 times and won three Silver Slugger Awards which is awarded annually to the best offensive player at each position.
[President Barack Obama sample:]
Our most induring responsibility to future generations
[Cormega:]
They say God don't like ugly, blessings are upon us
Bush hated niggas, now the President's a brotha
Whether you in the gutter, or your residence enormous
That shit don't matter when death around the corner
Before your book of life ends, recognize the author
All praise due, things you do bring karma
Your seeds shouldn't eat cause you beefing with baby mama
Will be the one you need when police raid the corners
Ain't nothing but niggas fronting, shitty drugs and drama
Girls who want Prada, women who want powder
Children are more violent, from living with less guidance
And don't learn respect til they bidding with old timers
You walk the same path now they road is wiser
A quiet man's a giant when his code is silence
Speak volume, loud dudes ain't always liver
My city never sleep, I'm a born survivor
[President Barack Obama sample:]
No matter how much money we invest in our community
How many ten point plans, we propose
How many government programs we want
None of it will make a difference
Atleast not in our predicament
We also at the same time, don't cease more responsibility in our own life
[Inspectah Deck:]
I slang base and that powder too, team was the wildest crew
I seen what a dollar do
Broke nights fiend for a pot of food
Lean on the block rude, cream got 'em popping tools
And they don't stop to get it, get it
Four shots'll wet your fitted, four cops'll get acquitted
I roll dolo, I don't ask for love
Niggas be acting up, afterwords catching slugs
Every hood got heaters, many generals defeated, heavy metal pop frequent
The world crazy foul, how we suppose raise a child
Face a trial, bail over eighty thou'
In the street life, you game, player?
Haze make the pain clear, eight days the same stare
So mama say a prayer, cause I'm out there
I'm a keep talking til they here
[President Barack Obama sample:]
Providing guidance to our children
Turning off the TV sets, putting away the video games
Helping our children with their homework
Teaching our daughters to never allow images on television to tell
What they're worth
Teaching our sons to treat women with respect
That what makes them a man is not the ability to have a child but to raise one
[Inspectah Deck:]
I thought the block was all there was to life
Surfing on the drug sites, meeting up at nights
And I got tired of roaming hall, got wise to protocol
And I got mines with no regard
So all I know, is all I show
So all I see, before I go
That all I am is the truth with this land
And this roof over head, and this root to the futute fruits
Worth more than your Gucci boots
I ain't trashing fashion, I like to do me too
Still I'm guick to pop it off
With the model broad or with the Molotov
Light rocks at your tank, might make me
Take the safety off and pop it in your bank, like
You see me, I'm major
I told this story to a class of 9th graders
They saying 'Fuck school, we some fly gangstas'
I gave 'em something that can change their life later
[President Barack Obama sample:]