- published: 19 Aug 2022
- views: 169256883
'+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; })); }); -->
AZ is a French record label established in 2002 as an affiliate of Universal with a big list of artists signed or with distribution rights for their releases in France.
The founder and first president of AZ record label, Valéry Zeitoun, was born in Pantin near Paris on 13 February 1966. He ran the label from its creation in 2002 until October 2011.
The label also encourages many new artists. Valéry Zeitoun (already a judge in the French television reality series Popstars in its second season in 2002) famously ran a campaign in 2010 on Facebook entitled Je veux signer chez AZ (meaning I want to sign with AZ). Two candidates were selected to join the label, namely Victor Le Douarec and Mélissa Nkonda. The campaign was so popular, Zeitoun ran a second series of casting for talent in 2011 resulting in signing of a third new artist, namely Alias Hilsum.
Valéry Zeitoun also appeared in film Backstage directed by Emmanuelle Bercot where he plays the role of manager of the singer Lauren Marks (played by Emmanuelle Seigner).
12AX7 (also known as ECC83) is a miniature dual triode vacuum tube with high voltage gain. It was developed around 1946 by RCA engineers in Camden, New Jersey, under developmental number A-4522. It was released for public sale under the 12AX7 identifier on September 15, 1947. The 12AX7 was originally intended as replacement for the 6SL7 family of dual-triode amplifier tubes for audio applications. It is popular with tube amplifier enthusiasts, and its ongoing use in such equipment makes it one of the few small-signal vacuum tubes in continuous production since it was introduced.
The 12AX7 is basically two 6AV6 triodes in one package. The 6AV6 was a miniature repackaging (with just a single cathode) of the triode and twin diodes from the octal 6SQ7 (a double-diode triode used in AM radios), which itself was very similar to the older type 75 triode-diode dating from 1930.
As of 2012 the 12AX7 was made in various versions by two factories in Russia (Winged C, formerly Svetlana, and New Sensor, which produces tubes under the Sovtek, Electro-Harmonix, Svetlana, Tung-Sol, and other brands for which the firm has acquired trademark rights), one in China (Shuguang), and one in Slovakia (JJ), for a total annual production estimated at two million units. The vast majority are used in new-production guitar amplifiers or for replacements in guitar and audio equipment.
2013 AZ60 is a small Solar System body (extended centaur) from the scattered disk or inner Oort cloud. 2013 AZ60 has the 5th-largest semi-major axis of a minor planet not detected outgassing like a comet (2013 BL76, 2005 VX3 and 2012 DR30 have a larger semi-major axis).
2013 AZ60 came to perihelion in November 2014 at a distance of 7.9 AU from the Sun (inside of the orbit of Saturn). With an absolute magnitude (H) of 10.2,2013 AZ60 has an estimated diameter of 40 km.Comet Hale–Bopp, which is roughly the same size, was not discovered until it was 7.2 AU from the Sun and had started outgassing CO. 2013 AZ60 may be discovered to be cometary as it comes to perihelion.
After leaving the planetary region of the Solar System, 2013 AZ60 will have a barycentric aphelion of 828 AU with an orbital period of 8500 years.
PATREON: https://www.patreon.com/mikesalcedo _____________________________________________________________ MUSIC Orchestralis (Rafael Krux): https://www.orchestralis.net/ (LMNOP Transformation music): "Cheerful Happy Anime Song J Pop Instrumental by TakMusic https://www.pond5.com/royalty-free-music/item/140371695-cheerful-happy-anime-song-j-pop-instrumental (CAB AvenGers theme): "Superhero Theme" by Orchestralis https://music.orchestralis.net/track/38470821 (F Cave theme): "Creepy Fantasy" by Orchestralis https://music.orchestralis.net/track/38474144 (F with Wings/N Faces his Fears): "Epic Dark Fantasy Battle" by Orchestralis https://music.orchestralis.net/track/38474114 (F's Evil theme): "Apocalyptic World" by AllenGrey https://elements.envato.com/apocalyptic-world-CP6T98K (r.i.p C...
AZ - GOAT (Official Music Video) Off his upcoming project "Truth Be Told" AZ is giving you an early single to provide you some internal insight and direction of how this masterpiece will be laid out. The single GOAT is just a quick nourishment of rhyming skills with a little classic AZ flash. Follow AZ - https://www.instagram.com/quietazmoney/?hl=en Link To The Single "GOAT" - https://sparta.ffm.to/az-thegoat AZ Music Links Spotify - https://open.spotify.com/artist/7HqrSDuI9lHuH1CDismTFg?si=LCcn6Oc9SQO2s3CsN4Tbkw Apple - https://music.apple.com/us/artist/az/35299 Tidal - https://tidal.com/browse/artist/3603183 Production Credits Below: Dir, Gerard Victor Producer, Mally Brandon Editor, Gerard Victor
VISIT OUR OFFICIAL WEBSITE : https://www.uspstudios.co/ WATCH OH MY GENIUS VIDEOS ON OUR WEBSITE TOO : https://www.uspstudios.co/creation/channel/oh-my-genius/5/ Follow us on FACEBOOK: http://vid.io/xqRt GOOGLE+: http://vid.io/xqRr TWITTER: http://vid.io/xqRp Check out our new Nursery Rhymes Songs Compilation video here: http://vid.io/xqVD Watch this new compilation with some of the best know nursery rhymes.
AZ - Just 4 You (Official Music Video) Exclusive WSHH music video for “Just 4 You” by AZ. Subscribe: http://bit.ly/subWSHH | WSHH Snap Discover: http://bit.ly/worldstarsnap More exclusive WSHH music videos: https://youtube.com/playlist?list=PLcK0neBMyFxSpYgDfKCsHRwgxlN-Tnt9D&playnext=1&index=2 A StreetHeat Film... Dir By- @willc_streetheat DP- @richie_4k Edited By- @_ljayprod AZ drops his new visual "Just 4 You" off his new tape- Doe or Die II Pre Order link- http://sparta.ffm.to/az-doe-or-die-2 Subscribe & Turn on notifications 🛎️ https://www.youtube.com/c/worldstarhiphop?sub_confirmation=1 Follow WorldstarHipHop: Website: http://worldstarhiphop.com TikTok: https://tiktok.com/@worldstar Facebook: https://facebook.com/worldstarhiphop Instagram: http://instagram.com/worldstar Twitter:...
AZ - This Is Why (Official Music Video) #AZ #hiphop #hiphopmusic #hiphopvideo #classic "When what you possess moral & principle wise is more valuable then Gold or Diamonds, your worth is unmeasurable .," ( This is why I'm fly ) Quote By AZ Single Link: https://sparta.ffm.to/az-thisiswhy AZ Music Links Spotify - https://open.spotify.com/artist/7HqrSDuI9lHuH1CDismTFg?si=LCcn6Oc9SQO2s3CsN4Tbkw Apple - https://music.apple.com/us/artist/az/35299 Tidal - https://tidal.com/browse/artist/3603183 Production Credits Below: Dir, Gerard Victor Producer, Mally Brandon Editor, Gerard Victor
Exclusive WSHH music video for “Different” by AZ. Subscribe: http://bit.ly/subWSHH | WSHH Snap Discover: http://bit.ly/worldstarsnap More exclusive WSHH music videos: https://youtube.com/playlist?list=PLcK0neBMyFxSpYgDfKCsHRwgxlN-Tnt9D&playnext=1&index=2 NEW SONG ALERT!! AZ - DIFFERENT 🔥🔥 ON ALL PLATFORMS., DOWNLOAD NOW!! https://songwhip.com/az/different DOE OR DIE 2 COMING SOON!! Video Produced by- AZ & STREETHEAT Dir by- WILLC & Tana Dp and edited by- https://www.instagram.com/cloudyroomvisuals Crew- https://www.instagram.com/richie_4k https://www.instagram.com/mo_streetheat Follow WorldstarHipHop: Website: http://worldstarhiphop.com TikTok: https://tiktok.com/@worldstar Facebook: https://facebook.com/worldstarhiphop Instagram: http://instagram.com/worldstar Twitter: https://twit...
From 1995 Album: "Doe or Die"...[Artist info below]..... Get AZ's Music: http://www.amazon.com/Az-%28Rap%29/e/B000AQ0QVW/ref=ntt_mus_dp_pel & http://itunes.apple.com/us/artist/az/id35299 Anthony Cruz (born March 9, 1972, in Brooklyn), better known as AZ is a Grammy-nominated American rapper of Dominican & African American descent. He is known for being a long time and frequent rhyme partner of Nas, and also a member of hip-hop group The Firm alongside Nas, Foxy Brown, Cormega and Nature. In a countdown of the 10 Most Underappreciated Rappers—Most Underrated Rappers of All Time, the editors of About.com listed AZ as #1 on the list. He was also included on About.com's list of the Top 50 MCs of Our Time (1987--2007), where he was described as "arguably the most underrated lyricist...
انا ايمن الي يحب الكومنتات عطني رايك بالمقطع وخلني احبك بعد ------------ For business: [email protected] تابعوني على Instagram II @Ayzmnz https://www.instagram.com/ayzmnz/ Snapchat II @Ayzmnz Tiktok II @Ayzmnz Twitter II @Ayzmnz
Savannah and Azbury were having different opinions about how hot or cold it should be. Then they tried to get the other one to accept their opinions! Watch as they play the hot vs cold challenge to see who knew best when ic comes to temperature! Welcome to The TANNERITES! We are a family of 9 (Mom, Dad, and 7 kids) who love to experience the best of life through spontaneous adventures, being positive about life's difficulties, loving and serving others, and BEATING Cancer! Follow us on SOCIAL MEDIA! Music by: Epidemic Sound http://share.epidemicsound.com/zZSmP For collaborations, business, and personal inquiries please email: [email protected] FroZen Hot vs Cold Challenge with Az & Savannah! With Savannah Tannerites and Az Tanerites. Aspen the camera!
Doe or Die II Album Available 9/10/21 Preorder: https://sparta.ffm.to/az-doe-or-die-2 Stream/Download "The Wheel": https://songwhip.com/az/the-wheel
AZ is a French record label established in 2002 as an affiliate of Universal with a big list of artists signed or with distribution rights for their releases in France.
The founder and first president of AZ record label, Valéry Zeitoun, was born in Pantin near Paris on 13 February 1966. He ran the label from its creation in 2002 until October 2011.
The label also encourages many new artists. Valéry Zeitoun (already a judge in the French television reality series Popstars in its second season in 2002) famously ran a campaign in 2010 on Facebook entitled Je veux signer chez AZ (meaning I want to sign with AZ). Two candidates were selected to join the label, namely Victor Le Douarec and Mélissa Nkonda. The campaign was so popular, Zeitoun ran a second series of casting for talent in 2011 resulting in signing of a third new artist, namely Alias Hilsum.
Valéry Zeitoun also appeared in film Backstage directed by Emmanuelle Bercot where he plays the role of manager of the singer Lauren Marks (played by Emmanuelle Seigner).
* Yeah, yeah
Realism of life in actuality
Uh huh,
Yeah
I wanna tell you
Uh huh
Fuck who's the baddest , only the real could relate
Bigboys,
Nothing changed, they know
The Players of the game
Realism of life in actually
The Pioneers
I wanna tell you
This is the essence right here
Fuck who's the baddest, only the real could relate
AZiatic,
Nothing changed, they know
I rep pure realness younahmean?
I wanna tell you
For the deceased, and those still carrying the torch
Hold your head though, ya heard?
Once again
I wanna tell you
Realism of life in actuality
I wanna tell you
Fuck who's the baddest, only the real could relate
Nothing changed, they know
Realism of life in actually
I know, it get kinda hard sometimes
we all looking for some kind of, outlet
to plug into, but ahh,
From the corners of street, in every hood and every ghetto
Every hood
I'm the proof of what could be, if you try
If you wanna try
It's on you
All the haters wanna see,
Uh uhn
A niggas life in misery
Uh uhn
But I'ma keep on doing me, 'til I die
Handcuffed by the wrist and tied in the feet, so stressed
Wish that I could die in my sleep
And Lord knows, thru his grace I done tried it wit peace
But it's like niggas ain't happy 'til they find me deceased
Feel the grief, of a street, nigga that turned to rap
And just applied Everything that he learned from crack
I'm in now, it's life ain't no turning back, it been foul
So what kinda concerns is that
Peep the signs of the eyes 'cuz it tell it all
One of the few in the Streets that was selling it raw
Made mistakes, but it made me intelligent more
And how I move, you could still look and tell I was poor
How can the hate from another man stop my flow
That's like another pimp thinking he can knock my hoe
I'm here now, just trying to copp and blow, couple of cars and lot's of Doe
From the corners of street, in every hood and every ghetto
I'm the proof of what could be, if you try
If you wanna try
All the haters wanna see
A niggas life in misery
But I'ma keep on doing me, 'til I die
One by one, seen 'em rise, seen 'em fall, you seen one nigga ball
you done seen 'em all
Even standup niggas seen 'em lean and crawl
What makes a man wanna fiend for more
Life itself is more than a trial or a quest
Intelligent wise, it's like I done ran with the best
And very rarely, you can catch me casually - dressed
I'm more relaxed in a hat and some sweats
Doing me, been amongst some of the street's most strongest men
Around for months then they gone again
Incarcerated, penalized for the love of they acts
Criminals, cold-hearted, now what's fucing wit that?
Where we at? hit inside of a life that's rarely exposed
Spoken in codes for the killers that daily'll dose
Get yours, hit a quota then get indoors, get legit
Then hit them stores
From the corners of street, in every hood and every ghetto
I'm the proof of what could be, if you try
If you wanna try
All the haters wanna see
A niggas life in misery
But I'ma keep on doing me, 'til I die
So now it's on y'all, could see, I figured it out
Only a few could say that they been in my house
And caroused at my wall color, blend with my couch
I'm as low as you can go in the south
When it's too deep, it's hard for the mind to relate
Some say I'm too street and way too involved wit the snakes
What make a man bigger that life, I'm twice his age
Understand I'm a sinner but I'm nice some ways
Knee deep in what I speak 'cuz I spit the truth
I become angelic when I sit in the booth
Just a thought of all the ill sh*t that lurk in streets
How can another real nigga wanna work wit police
Bad enough you got thiefs and the beef is rough
I took an oath just to smoke, eat, sleep and fuck
Knowledge of self, I'ma do this regardless of wealth
Regardless of how the deck and how the cards get dealth
From the corners of street, in every hood and every ghetto
I'm the proof of what could be, if you try
If you wanna try
All the haters wanna see
A niggas life in misery