- published: 07 Oct 2009
- views: 24511390
'+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; })); }); -->
Stayve Jerome Thomas (born September 8, 1980), better known as Slim Thug, is an American rapper. He gained mainstream attention for his contribution to the popular single from rapper Mike Jones, "Still Tippin'".
Slim Thug grew up in Houston's Northside neighborhood of Homestead/Scenic Woods. Slim says that his rap name came from the fact that as a teenager, he was very tall and lanky before he filled out. He stands 6'6" tall. The Thug part comes from people's assumptions of him due to his french braids and sunglasses. At age 17, he performed freestyle raps at local high school parties. He began his rap career with Swishahouse in the late 1990s. After realizing how much money he could make distributing his own mixtapes, he parted ways with Swishahouse on good terms and formed his own independent label, Boss Hogg Outlawz. Thomas bought two record stores and worked in real estate.
Slim Thug's big debut album with Star Trak Entertainment & Interscope Records, Already Platinum, was released in July 2005 after many delays. It premiered on #2 on the Billboard 200 albums chart and sold 130,000 copies in its first week. Singles included "3 Kings" (featuring T.I. and Bun B), and "I Ain't Heard of That" (featuring Pharrell and Bun B). Slim Thug appeared on Still Tippin' with Mike Jones and Paul Wall, Beyoncé Knowles's #1 single "Check on It" and Gwen Stefani's "Luxurious". With the Boss Hogg Outlawz, Slim Thug released three albums, Boyz N Blue (2004), Serve & Collect (2007) and Back by Blockular Demand: Serve & Collect II (2008). He left Star Trak & Interscope Records in 2008.
Phalon Alexander, professionally known as Jazze Pha (/ˌdʒæzi ˈfeɪ/ JAZ-ee FAY), is an American record producer, songwriter and rapper from Atlanta, Georgia. He is the founder and chief executive officer of Sho'nuff Records, which American R&B singer-songwriter Ciara was signed to.
Jazze Pha was born and raised in Memphis, Tennessee. His father is James Alexander, bassist for the Bar-Kays, an influential group on the Memphis soul scene in the 1960s. His mother is a singer named Denise Williams (not to be confused with chart-topping R&B and gospel singer Deniece "Niecy" Williams). Pha was named after the late Phalon Jones, another member of the Bar-Kays, who died in the December 10, 1967 plane crash that also killed three other Bar-Kays members and Otis Redding.
Pha is known for announcing "Ladies and gentlemen" or "This is a Jazze Phizzle production!", both at the beginning and, occasionally, at the end of songs on which he is featured. In 1990, Pha was signed to Elektra Records.
The Deep South is a descriptive category of the cultural and geographic subregions in the Southern United States. Historically, it is differentiated from the "Upper South" as being the states most dependent on plantation-type agriculture and slavery during the pre–Civil War period. The Deep South was also commonly referred to as the Lower South or the Cotton States. Before the out-migrations at the first half of the 20th century, African-descended peoples comprised the majority of the population in numerous areas and some states. Today, the Deep South is usually delineated as being those states and areas where cultural elements most often thought of as "Southern" exist in their most concentrated form.
The term "Deep South" is defined in a variety of ways:
The Deep South is a region of the United States.
Deep South may also refer to:
William G. Leverty II (born January 30, 1967) is an American guitarist, who is a founding and current member of the American rock band FireHouse. Leverty was responsible for writing many of the band's hit songs. In the 2000s, Leverty has also pursued a solo career, releasing four albums; Wanderlust, Southern Exposure, Deep South and Drive.
Leverty was born in Richmond, Virginia. His parents gave him a guitar when he was 4 years old, but he didn't take it up seriously until he was 15 years old, and studied music theory in high school.
In 1984, his band White Heat auditioned for a drummer, where he met Michael Foster and was impressed with him. Some time later, they hooked up with C.J. Snare and Perry Richardson, and formed FireHouse. Leverty got an endorsement deal with Yamaha Guitar Development and played them for 16 years.
Leverty married his wife Kris in 1996; together they have a child named Dabney.
In 2004, after almost 10 years with FireHouse, Leverty released his first solo album called Wanderlust.
Official Music Video for Na-NaNa-Na performed by Nelly ft. Jazze Pha. Follow Nelly: Instagram: https://lnk.to/NellyIGID Twitter: https://lnk.to/NellyTWID #Nelly #NaNaNaNa
Listen to the album "OSAMA". Out now! Stream: https://Empire.lnk.to/MO3OSAMAYo @Mo3Badazz #Mo3 #OSAMA #StackItUp Official music video by Mo3 ft. Jazze Pha - Stack It Up © 2020 H$M Music / EMPIRE
Bun B & Cory Mo Ft. Jazze Pha, Slim Thug & Lil' Keke "Mo Trill" Video From The "Mo Trill" Album OUT NOW !!!! Music Produced By: Cory Mo - MO TRILL ALBUM features 2 Chainz, Wale, CeeLo Green, Big K.R.I.T., Talib Kweli, Benny The Butcher, Tobe Nwigwe, Larry June, David Banner, Jazze Pha, Devin The Dude, Slim Thug, Lil Keke, Z-Ro, Trae The Truth, Raheem DeVaughn & More...
Track 6 From T.I. - Trap Muzik (2003) https://itunes.apple.com/us/album/trap-muzik/1258990795
Super producer Jazze Pha is on the show with T-Pain. Recalibrated and ready to go, he shares his incredible life experiences working with music's greats from Rick James & Roger Troutman to Dr. Dre & Busta Rhymes! T-Pain and Jazze rap about their favorite remixers, producers, and their personal favorites in the game! Plus, they reminisce about Jazze's early years and run through the keys to his creative process. The laughs continue with this week's button question and the NBR "Creative Curse Word of The Week." Tap into this week's action packed Nappy Boy Radio Podcast w/ T-Pain. Follow us on IG: http://instagram.com/nappyboyradiopodcast NBR Podcast Merch: http://shop.tpain.com Follow T-Pain on Social Media: http://instagram.com/tpain http://twitter.com/tpain http://facebook.com/tpain ht...
The official video of "Let's Get Away" by T.I. from the album 'Trap Muzik'. Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”,...
video Jazze Pha feat. Cee-Lo - Happy Hour
Album: Murphy's Law 2003 Label: Derrty Ent./Universal Records Producer: Jason "Jay E" Epperson https://en.wikipedia.org/wiki/Murphy%27s_Law_(Murphy_Lee_album)
Streaming Everywhere https://connect.ffm.to/thebarkays_chooseylover http://vevo.ly/k6CbGH
Jazze Pha made history signing to Birdman. He was the first producer #birdman signed that wasn't in his direct network in, New Orleans. #raydaniels #atlanta #musicinsider #podcast #podcaster
Official video for "In Hell I'll Be In Good Company" by The Dead South. Stream/Buy the full album, "Good Company": https://sixshooterrecords.lnk.to/GoodCompanyHY Stream the new single "Will The Circle Be Unbroken": https://sixshooterrecords.lnk.to/WTCBUHY Save / Order "Easy Listening For Jerks Part 1": https://sixshooterrecords.lnk.to/EL4JP1HY Save / Order "Easy Listening For Jerks Part 2": https://sixshooterrecords.lnk.to/EL4JP2HY --- Follow The Dead South Facebook: http://facebook.com/thedeadsouth Instagram: https://instagram.com/thedeadsouth Twitter: https://twitter.com/thedeadsouth4 TikTok: https://tiktok.com/@thedeadsouth Join The Dead South’s mailing list: https://www.thedeadsouth.com/newsletter --- Directed by Zach Wilson of Two Brothers Films. Recorded and Mixed by Orio...
Country girl explains her experiences road raging truckers.
Deep in the heart of the Mississippi Delta region is an America that lives by its own rules. A place that feels like traveling to another country with its own unique stories and culture. Join me in Mississippi at the start of this 6-part series about the Deep South region of America. ► 🎥 More Behind the Scenes Videos: https://petersantenello.com/ ► 📝 My Free Weekly Newsletter: https://www.bit.ly/3HC36EH ► 👕 Merch: https://innercircle.petersantenello.com/collections/all ► 🎞️ Video Edited By: Natalia Santenello MUSIC USED IN THE VIDEO 🎵 ► Headlund - Small Mirage ► Headlund - Red Moon Rising ► Peter Crosby - Nothin' Left Blues SUPPORT THIS CHANNEL ✅ ► https://petersantenello.com/ FOLLOW ME 📸 ► Instagram: https://www.instagram.com/petersantenello/ ► YouTube: https://www.youtube.com/chan...
Welcome to this video essay where we delve into the captivating tapestry that is the Southern United States! Join us on a journey of discovery as we uncover the distinctive characteristics that set this region apart from the rest of the country. 🌞🌽 In this video, we'll embark on a virtual tour through the picturesque landscapes, vibrant culture, and rich history that define the Southern states. From the rolling hills of Tennessee to the bayous of Louisiana, we'll showcase the geographical diversity that makes this region a true gem. 🏞️ But it's not just about the scenery – the Southern United States boasts a culture that's all its own. Get ready to immerse yourself in the melodies of soulful jazz, the twang of country tunes, and the foot-stomping rhythms of bluegrass music. 🎵🎶 And let's...
Official Live Music Video by The Dead South for The Opry Debut. Courtesy of Grand Ole Opry Archives. Stream/Download New Album "Chains & Stakes" : https://sixshooterrecords.lnk.to/chainsandstakes --- Follow The Dead South Facebook: http://facebook.com/thedeadsouth Instagram: https://instagram.com/thedeadsouth Twitter: https://twitter.com/thedeadsouth4 TikTok: https://tiktok.com/@thedeadsouth Join The Dead South’s mailing list: https://www.thedeadsouth.com/newsletter --- Lyrics: [Verse 1] Dead love couldn't go no further Proud of and disgusted by her Push, shove, a little bruised and battered Oh Lord, I ain't coming home with you [Verse 2] My life's a bit more colder Dead wife is what I told her Brass knife sinks into my shoulder Oh babe don't know what I'm gonna do [Chorus] I se...
JamWayne - Deep South (Official Video) JamWayne https://www.Instagram.com/JamWayne256 https://www.Facebook.com/JamWayneOfficial https://www.TikTok.com/JamWayne256 https://www.ShopJamWayne.com Booking: [email protected] Produced by Karltin Bankz Directed by Kidd Nick https://www.Instagram.com/IAmKiddNick
Join us as we GARDEN at Pecan Grove https://www.youtube.com/@pecangrovems this year. T shirts https://www.etsy.com/shop/rusticcharmfields @vego_garden https://glnk.io/vzw5/1dw 5% Off Your Entire Order 🛒 Use code: or DEEP_SOUTH_HOMESTEAD5%OFF 10% Off Our Hose Reels 🚿 Use code: or DEEP_SOUTH_HOMESTEAD10%OFF 10% Off Our Brand-New Kitchen Composter! 🪴Use code: or DEEP_SOUTH_HOMESTEAD10% #porchtime #howdidwegethere #society ▶▬ Azure Standard https://www.azurestandard.com/?a_aid=45aebeb64a **** First time Order use code NEW15 for 15% off first $100 order ▶▬ HIGH TUNNEL KITS Greenhouse KITS https://www.growerssolution.com/deepsouth promo code: DeepSouth This is a 10% discount Nutri Mill Harvest Grain Mill https://nutrimill.com/DEEPSOUTHHOMESTEAD White Nutri ...
I do not own this song, I simply uploaded this awesome song with the lyrics for everyone to enjoy. https://emin3sku.godaddysites.com/ Thank you
Welcome to episode 22 of our second series on the Surnames of Appalachia and the American South. Before we get going today, I want to answer a question posed by a viewer. “Angry Kitty” wants to know why Northern Appalachia is never mentioned. That’s a good question, so here’s why: Appalachia can be seen as three types of regions: one encompasses land features like mountains, ridges, hills, hollers, valleys, and plateaus; a second is a formal region with hard and fast boundaries like that which is defined by the Appalachian Regional Commission, and the third is a cultural or vernacular region. My interest is in the cultural region of Appalachia where we find well-formed traditions centered around storytelling, vocabulary and expressions, music, food items like gravy and biscuits, and build...
The Griffin Family goes to live in South and Meg joins a School there. Subscribe for clips from Family Guy, American Dad, South Park, The Simpsons, etc
Stayve Jerome Thomas (born September 8, 1980), better known as Slim Thug, is an American rapper. He gained mainstream attention for his contribution to the popular single from rapper Mike Jones, "Still Tippin'".
Slim Thug grew up in Houston's Northside neighborhood of Homestead/Scenic Woods. Slim says that his rap name came from the fact that as a teenager, he was very tall and lanky before he filled out. He stands 6'6" tall. The Thug part comes from people's assumptions of him due to his french braids and sunglasses. At age 17, he performed freestyle raps at local high school parties. He began his rap career with Swishahouse in the late 1990s. After realizing how much money he could make distributing his own mixtapes, he parted ways with Swishahouse on good terms and formed his own independent label, Boss Hogg Outlawz. Thomas bought two record stores and worked in real estate.
Slim Thug's big debut album with Star Trak Entertainment & Interscope Records, Already Platinum, was released in July 2005 after many delays. It premiered on #2 on the Billboard 200 albums chart and sold 130,000 copies in its first week. Singles included "3 Kings" (featuring T.I. and Bun B), and "I Ain't Heard of That" (featuring Pharrell and Bun B). Slim Thug appeared on Still Tippin' with Mike Jones and Paul Wall, Beyoncé Knowles's #1 single "Check on It" and Gwen Stefani's "Luxurious". With the Boss Hogg Outlawz, Slim Thug released three albums, Boyz N Blue (2004), Serve & Collect (2007) and Back by Blockular Demand: Serve & Collect II (2008). He left Star Trak & Interscope Records in 2008.
[Slim Thug:]
Slim Thugga, Muthafucka!
Now welcome to the city of game, piece of chains and swangs
Pop trunk and bang, yeah I'm still here mayne
Born and raised on the stead block, braids no dreadlocks
Married to the hood me and Sunnywood way block
Niggas way my home, I'm an outside venterain
Reppin' H-Town, smoking sippin' on some medicine
That ain't nobody better than the boss when I flow
It's Slim Thugga Muthafuckas, still breaking boys off
[Chamillionaire:]
Hmm, got plenty cheese, plenty carrots and you looking like some carrotrus
And it's looking like you haters and you fakes is immatating us
Shadied up, bradied up and I bet that trunk you bladed up
Bet you still crawling on 4's, so they ain't fainting us
In the hood I'm a grinder, wood on the winer
TV VCR lay back with'cha momma
You ain't never seen a grinder that grind the way I grind, huh
Top off the drop still listen to Tomma
[Hook:]
Still, still wrecking boys off
Hmm, candy painted with the lows you can hate but that's the way we ball
Still wrecking boys off
Hmm, getting money's what I'm bout, I'm a get it while he's in his judge talk
Still wrecking boys off
Hmm, gotta do it for the north, got to do it for my hustler's in the south
Still wrecking boys off, boys off
Sill wrecking boys off
And when I do it I'm a do it like a boss
Still wrecking boys off
[Mike Jones:]
MIKE JONES!
I still representing H-Town the city of the candy
They see me with a lotta, huh, but they don't understand it
They said they never see ya boy, how you gettin' this grind on?
Hannavilly take ya piggy I gettin' my shine on
I sold two million records now my paper on swoll
Now the mayor of the city, top down when I roll
H-Town, home of the candy paint
Home of the 84's and 4's in the?
[Bun B:]
Yeah, it's the city that's slowed, the city that's throwed
The city where them boys get they candy painted lows
The city where they build big killa and stay blowed
Hustlin' ass D-boys got the game sold
Where they sip that drank (sip that drank) and drip that paint (drip that paint)
And drop that top (drop that top) and grip that grain (hold up)
6-10-I-10-59-45 in the belt
This clutch city where we play what we dealt
Welcome my H-Town
[Hook: Chamillionaire]
[Paul Wall:]
This town's my home it's where I do my dirt
Where the gangsta's? smoke water? we drank stains on the shirt
We ride swangin' chop blazed just to break boys off
From South Park to South West how we wave to that nouf
I'm talking tenth wheel and Carvadale and Greens Point Two
From Denport Harvard to West Airport all the way to Channelview
We steady bangin' on this screw, it's choppin' like Kung-Fu
Hit me on the 8-3-2, Paul Wall what it do
[Yung Redd:]
Ha
Nomtombout?
Purple so muddy I can barely even drive
A blow it down trees like a catter goin by
Southside of H-Town that on the sunny side
I walk these? all blind, nomtombout?
Yung Redd, take ya out the future
Stars imitate swear to God work the?
Robert Davis, Fat Pat, this for you
Come on the Big Hogg got some roof
Mayne!
[Hook: Chamillionaire]
[Lil Keke:]
H-O to the U.S., T.O. till the end
God bless me with the million dollar Benz
See the grind money gangstas with the hand in the air
That Sunnyside in South Park I was raised out there
This is H-Town (H-Town), screwed up and slowed down
It's all love homie, keep rolling up the whole pound
Pull up in the monster just look at him hiding
Don Ke hard of the south, slab riding
[Z-Ro:]
H.O.U.S.T.O.N., T.E.X.A.S.
We goin get it and come back with it until we take our last breath
From the city where I steady on drop the top
Z-Ro the Crooked, my ghetto ass is good at any hood, any block they got
The white cup is for the codiene and the cigarello is for the gush
If you want it we got it cause that's not a problem we don't push
We used to be the dirty south, now we so dirty we sippy
So homie you must be touching it, roll if you don't feel me (you don't feel me)
[Hook: Chamillionaire]
[Mike D:]
Welcome to H-Town, this Third Ward talking
Coming down the slab like the fo's crip walking
Together we stand, divided we fall, yeah
North and the south together we ball
Fuck that, nigga it's a H-Town thang
Let me see ya touch the sky if ya feeling me mayne
It's Boss Hogg Kyleon, Micked and Mike D
The drank man daddy, you know where to find me
[Big Pokey:]
State to state dawg, I got a jock and a kid
Six back and out the drive away, dropping the weed
Y'all know we do it big, like a...
Got stackes full of cash where I keep the mnoey heated
Fresh to def homie, how I came in the doe
Prada shades on, smelling like a swanger or dro
Put'cha H'es up, represent'cha city bro
Counting money, iced out, like a million video
[Hook: Chamillionaire]
[Rob G:]
Southwest put'cha dubs up, let's go!
Now welcome to the place I love, place I was, raised to be a G
It's striaght hanging the thugs, and my music slowin', throw my H'es up
Southwest why I know the real dudes and move birdies
I go to school early, baby blue moon jersey
Riding around, southwest side of my towns
Still Reppin' My Block, How Ya Liken Me Now
It's from Sharpstown, Braeswood to Alilee, black and west stack
Paper together we stay deep it's all
[Trae:]
Cheyah!
King Of The Streets and I'm rolling round, you still ridin fo's
Boys better chill for this throw-away that they couldn't closed
I ridin' slab but I'm tippin it like a platinum rose
Soon as I make the doors presidental when they decide to close (real talk)
They want the Don to tell the haters that I got it locked (got it locked)
I shoot em up the west so whenever all the way to the top (dows up)
I'm so hood it be the Truth, definition of me
Ain't no way ya speakers bout the H, without mentioning me
We the truth, nigga!
[Hook: Chamillionaire]
[Lil O:]
Yeah, Yeah, Yeah, Yeah!
Ayyo from H-Town, southwest stop drop and roll
If I chunk the dub up, the whole hood rock n roll
Braeswood, Woolfair, Clull creek, Spice Lane
West Bellville, Fort Worth Airport, Sandpiper, stack change
I'm so H-Town there's no dean in my blood
And I'm a shout it out with the meanest of thugs
And you ain't never gotta ask if there's lean in my cup
I'm a triple O.G., S.U.C. nigga what
[Pimp C:]
Naw I can owe lot of chickens, not a miles away
For the last fifteen years, I been reppin' my state
I knew the real DJ Screw sip grape by the case
Eight's over ice straight Prada of the H
Southside, I never was so big socialize
With Bun you can talk, I fuck with the boss
Like Thug and Prince Civy or Rome or Wrice
This game a pie I want it all so give me a slice
[Hook: Chamillionaire]