- published: 27 Sep 2024
- views: 1112967
'+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; })); }); -->
Underground most commonly refers to:
Underground may also refer to:
The Underground is the 17th book in the Animorphs series, written by K.A. Applegate. It is narrated by Rachel.
The Animorphs save a man named George Edelman from jumping out of a building. They later hear that he has been committed to an asylum for talking about aliens living in his head. They bust in to talk to him, and he reveals that some Yeerks have discovered a way to survive without the Kandrona: eating Instant Maple and Ginger Oatmeal. However, the oatmeal is extremely addictive to the Yeerk, who goes insane and never leaves the host body. The Animorphs decide to use this information to hurt the Yeerks by dumping oatmeal into the Yeerk Pool.
They attempt to morph flies and follow a controller into the pool, but find that the Yeerks have installed "Gleet Bio-Filters" on all Yeerk Pool entrances which destroy any unauthorized life forms that attempt to enter. They decide instead to morph moles and dig their way in. On the way through their tunnel, they find a bat cave. They morph bats and fly into the Yeerk Pool, but are attacked by hunter robots. Ax, Jake and Tobias are captured, and Rachel falls into the pool. She morphs an ant, gets out, steals a Dracon beam, and disguises herself as a human-Controller. After overhearing that there is a stash of the oatmeal near the pool confiscated from addicted human-controllers, she finds Cassie and Marco just as Visser Three arrives to receive the captured "Andalite bandits." Rachel throws a barrel full of oatmeal into the pool and threatens to burst it open with the Dracon beam unless the others are released. Visser Three is about to allow the Yeerks in the pool to be sacrificed in order to capture the "Andalite Bandits", so Rachel tosses him in as well. They begin to escape with the others, but as they are escaping the Visser begins morphing, so Marco shoots open the barrels of oatmeal. Rachel uses the Dracon beam to collapse the tunnel on them, and they dig to the surface as moles.
The Underground was a sketch comedy series produced by and starring Damon Wayans. It aired on Showtime. Wayans describes the show as "In Living Color on steroids." The show features raunchy, sexist, and racist behavior, and as Wayans states in his opening monologue, "We decided to test the limits."
The description of the show information is "The future of comedy is here in Damon Wayan's hilarious and uninhibited comedy sketch show where no topic or taboo goes unturned." This mistakenly gives his last name as Wayan, rather than Wayans.
Some of the notable continuing sketches and characters in the show are:
Le clip du nouveau single ‘UNDERGROUND’ par Zantakwan, Tii Raffa & Indywayne Arrangement Musicale par DJ WAYN & VIRUS RECORD Blackpower Officiel Réalisé par YC Prod. Abonnez-vous à notre chaine 👉 www.youtube.com/@BlackpowerOfficiel Contact avec Blackpower : ➡ https://www.facebook.com/profile.php?id=61550665089022 Contact avec Virus Record : ➡ https://www.facebook.com/profile.php?id=100064141840363 Contact avec YC Prod : ➡ https://www.instagram.com/ycprod11 ➡ 58084873/58084875 ------------------------------- Contact pour événements | ©Tous Droits Réservés | 2024 | YCPROD
Listen to the full album: https://bit.ly/3cAx2QG "Underground" by Tom Waits from the album 'Swordfishtrombones' Official Site: http://www.tomwaits.com/ Official Store: http://tomwaitsstore.com/ Facebook: https://www.facebook.com/tomwaits/ Twitter: https://twitter.com/tomwaits #tomwaits #swordfishtrombones #underground #Robots #chopshop
► STREAM : https://f5ve.lnk.to/underground ► SUBSCRIBE : https://www.youtube.com/channel/UCV1YxS0AVPOrx_HDj9Pgt8Q?sub_confirmation=1 ► join the hi-5 fandom: instagram: https://instagram.com/f5ve_official x: https://twitter.com/f5ve_official/ tiktok: https://www.tiktok.com/@f5veofficial website: https://www.f5veofficial.com ☆ about f5ve ☆ f5ve are inter-dimensional dream agents from Tokyo, Japan. Their mission is to infiltrate the subconscious mind in order to eradicate self-doubt and negative energy. Utilizing their arsenal of optimism, confidence, fantasy, intelligence and female empowerment, these five women create surreal aural landscapes in which fear can’t exist. f5ve are the women of every girl’s dreams. ► VIDEO CREDITS: Directors: Charlotte Rutherford & Crystalline Director...
Emilia - Underground (Official Video) Music: Apple Music: https://emilia.lnk.to/underground/applemusic Spotify: https://emilia.lnk.to/underground/spotify Amazon: https://emilia.lnk.to/underground/amazonmusicstreaming YouTube: https://emilia.lnk.to/underground/youtube iTunes: https://emilia.lnk.to/underground/itunes Deezer: https://emilia.lnk.to/underground/deezer TikTok: https://emilia.lnk.to/underground/tiktokusemysound Pandora: https://emilia.lnk.to/underground/pandora Lyrics: si se apaga la luz y se prende el dj unas van pa la pista y otras contra la pared tengo el pary con las baby con montao hoy rompemo obligao los culos hasta abajo como en el underground y los turros encantao amén, tamo bendicida en el nombre del padre y de toda las gatas mías tamos gastando plata n...
This salt mine is the coolest underground city I’ve ever seen Get Zaxbys MrBeast Box while you still can - Chicken Fingerz™, cheddar bites, fries, double Texas toast, signature sauces, a drink and my FEASTABLES BAR! Available only thru 10/28 at Zaxbys https://www.zaxbys.com/mrbeast New Merch - https://mrbeast.store Check out Viewstats! - https://www.viewstats.com/ SUBSCRIBE OR I TAKE YOUR DOG ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ For any questions or inquiries regarding this video, please reach out to [email protected] Music Provided by https://www.extrememusic.com ---------------------------------------------------------------- follow all of these or i will kick you • Facebook - https://www.facebook.com/MrBeast6000/ • Twitter - h...
I built a SECRET survival bunker and challenged a professional bounty hunter to destroy it! Subscribe below! STAY WILD https://www.youtube.com/@StayWild- CAM HUFF https://www.youtube.com/@CamHuff GET THE MERCH! https://staywildshop.com ☆ FOLLOW ME! INSTAGRAM: @BenAzelart https://www.instagram.com/benazelart/ YOUTUBE: Ben Azelart https://www.youtube.com/benazelart/ SNAPCHAT: @BenAzelart
About Primitive Tool: We are from Cambodia and we live in Thailand of . In this video we going to show you about our ( 20Day Building Underground House with Decoration Underground Living Room with very simple tools and skill ! How long and where did I build? I been working very hard with my 2 friends about Decoration Jungle Craft Villa With Building Swimming Pool is in a very small private jungle in Thailand, We did together with three people (2 people we are builders and one person he is camera man) How large is it? I knew the most of viewer they hard to believe but it real 100% by hand made with tools in video ! If you have any ideas, please leave a comment below my video. We are very happy for your constructive feedback. We hope all of you enjoying our videos !! #Building #Surv...
Subscribe on YouTube: https://rebrand.ly/youtube-sejon New Release: Sejon - Toroidal Field EP Out Now: https://rebrand.ly/v1005-bandcamp #techno #technomusic #technomusiclove #berlintechno #detroittechno #djstream #sejon #dj
I Built a Secret Underground Mansion in the Jungle ======================= Please Subscribe fore More video: https://www.youtube.com/c/JungleSurvival ======================= Contact Us: Facebook: JungleSurvival https://youtube.com/@JungleSurvival ======================= #JungleSurvival #bushcraft #Survival #Jungle
Stream/Download ‘Lose You Now’ here: https://found.ee/LS_LoseYouNow My new album #Artemis is out now! https://found.ee/LS_Artemis Come see me on the #ArtemisTour! Tickets are on sale now! Head here for tour dates, tickets, and VIP upgrades: http://www.lindseystirling.com/ Download/Stream 'Underground' here: https://found.ee/LS_Underground_MS Director: Tom Teller Production Co. & Post House: Frame 48 (https://frame48.com) Executive Producers: Julian Conner, Tom Teller, Seth Josephson Producer: Bryce Cyrier Director of Photography: Nico Aguilar Production Designer: Juan Ramal Editor: Lindsey Stirling Colorist: Bryan Smaller at Company 3 Featuring: Sofie Dossi, BDASH, and Miranda Wilking https://www.youtube.com/user/SofieDossi Sheet Music Here: https://lindseystirlingsheetmusic.com Follo...
"Underground" Բառերը ::: Քառյոթ, Լյով, Սենչո, Խուդո Բիթը ։։։ dextah Instagram ::: https://www.instagram.com/kancniii https://www.instagram.com/lyov_333 https://www.instagram.com/highmard https://www.instagram.com/xudored https://www.instagram.com/47.pac Youtube ::: https://youtube.com/@kancniii https://youtube.com/@lyov_3333 https://youtube.com/@RedLight374 Telegram ::: https://t.me/Kancniii47 #underground #rap #19bantaj © 2024
► https://www.youtube.com/channel/UCPBwlo0_X-NdaXHjhZqB14A ►Here is for you a remix of the Undergroud music from the movie Robots in "Original Version" ►Voici pour vous un remix de la musique Undergroud du film Robots en "Version original" Like for the support !
► STREAM : https://f5ve.lnk.to/underground ► SUBSCRIBE : https://www.youtube.com/channel/UCV1YxS0AVPOrx_HDj9Pgt8Q?sub_confirmation=1 ► join the hi-5 fandom: instagram: https://instagram.com/f5ve_official x: https://twitter.com/f5ve_official/ tiktok: https://www.tiktok.com/@f5veofficial website: https://www.f5veofficial.com ☆ about f5ve ☆ f5ve are inter-dimensional dream agents from Tokyo, Japan. Their mission is to infiltrate the subconscious mind in order to eradicate self-doubt and negative energy. Utilizing their arsenal of optimism, confidence, fantasy, intelligence and female empowerment, these five women create surreal aural landscapes in which fear can’t exist. f5ve are the women of every girl’s dreams. ► VIDEO CREDITS: Directors: Charlotte Rutherford & Crystalline Director...
Episode 2 #theunderground #tvshow #damonwayans #damonwayansjr #mikeyday #ariesspears #edipatterson #gabrielledennis #vincentoshana #willbowles #showtime #2006 Just Click TV ~ 2022
Underground premieres Wednesday March 9 on WGN America.
“Nothing was given, all was earned. Hold on to what belongs to you.” From Academy Award® winner Barry Jenkins and based on the Pulitzer Prize-winning novel by Colson Whitehead comes the Amazon Original limited series "The Underground Railroad". Premiering May 14 on Prime Video. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB Twitter: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/AmazonPrimeVid...
Episode 1, missing first few minutes of skit #theunderground #tvshow #damonwayans #damonwayansjr #mikeyday #ariesspears #edipatterson #gabrielledennis #vincentoshana #willbowles #showtime #2006 Just Click TV ~ 2022
Peace! Join http://kingnobleuncensored.com/videos.htm?b=&act=view-video&id=56875ED0-8430-4150-8616-EC2C32F11243 and Donate. Subscribe to my channel & newsletter @ http://bit.ly/nattyisistube. INSTAGRAM: http://Instagram.com/nattyisisyah TWITTER: http://twitter.com/nattyisisyah E-MAIL: [email protected] ********************** Source: Sad News: 'Underground' Has Been Canceled https://amp-timeinc-net.cdn.ampproject.org/c/amp.timeinc.net/essence/news/underground-wgn-series-canceled?source=dam ********************** I am here to be your Guru Goddess Guide. I show my devotion to King Noble Black Rulership to ascend into higher heights as a Black Goddess and spiritual gypsy by offering my wisdom, womb, and willingness to Black Supremacy! Join me on this once in an epoch experience as I...
Scenes from the The Underground tv series that was taken off the air three years ago and has been brought back on Hulu.
The third episode to Season 2 of WGN America’s hit series “Underground” will air on March 22, 2017 at 10:00 p.m. ET/PT In the episode titled “Ache,” unbearable complications threaten to break both Ernestine and Rosalee’s will to live.
This is one of the easier and more entertaining readings in the Critical Media Theory Research Unit at Theory Underground. Play it in the background while you work, do chores, or game! Enjoy! ABOUT / CREDITS / LINKS Welcome to Theory Underground. Theory Underground is a theory lecture course centered platform and publishing house with an app on the IoS and Android stores. If you want to better understand yourself and the world by asking the hardest questions, wrestling with the most complex problems, and reading the greatest thinkers in the history of philosophy and theory, then welcome. Theory Underground is for and by working class intellectuals, renegade academics, and adults who don’t belong or see a future in anything on offer. Think of Theory Underground like a gym for your brain...
In the episode, entitled “Auld Acquaintance,” written by Misha Green and Joe Pokaski and directed by series’ star Christopher Meloni, Rosalee (Jurnee Smollett-Bell) finds herself trapped in her old life on the Macon plantation and Noah (Aldis Hodge) must come up with a risky plan to save them all. Meanwhile, Cato (Alano Miller) and Patty (Saddie Stratton) continue their twisted relationship. Ernestine (Amirah Vann) finds herself in the clutches of August (Christopher Meloni) and Smoke (Jesse Luken) and events take an unexpected turn. After hearing Harriet (Aisha Hinds) speak, Elizabeth (Jessica de Gouw) returns to Georgia’s (Jasika Nicole) to learn that funds are running low, and the forceful trio decides to take financial matters into their own hands.
Underground most commonly refers to:
Underground may also refer to:
[Intro]
Breath heavy got that haze in my lungs,
i aint nothin but a raisen in the sun,
ma fuckers dont be playin whare im from,
think its a game when can take it to the guns
Cops comin then im blazin that them,
they wanna put me in the cage here they come,
mother fuckers dont be playin Wea im from,
think its a game we can take it to the guns
[Chorrus]
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
got a problem with somethin im sayin to you son,
take it how you want it, we can take it to the guns
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
yea you beside me and now you playin with my guns,
im a take you to blood, we can take it to the guns
[Verse 1]
I dunno what they doin over there,
but guns go off over here,
i dont no if they shoot fair ones or shake hands over there,
but guns go off over here,
i dunno if they from outta town or if they lost over there,
but homie this New York over here, get Off'd over here,
no workers the boss over here, we dont go get guns, we walk wit em, yea,
i dont no what they say in them courts over there,
but aint no body soft over here, get offed over here,
dont no body talk over here,
we take ourtime and go up north over here,
everybody always say chill let it slide,
niggas violate you when they say let it ride,
ride or die niggas never hide,
and the ones who always say let it ride, they never ride,
so quick to swear on who ever died,
swearin on your man and you no you just lied,
but you shouldn't take a mans pride,
niggas take kindness for weakness,
thats why im never kind,
always seen things comin i was never blind,
to me its 13 0'clock im ahead of time,
i no you through my man so you aint no friend of mine,
hit you 7 times wit the barretta 9,
o parden yourself i make you say it 7 times,
14 a hundred shot mac multiplies,
spoke with gang sign language, said slice pack,
i spoke with body language and gave him his knife back,
so dont ever ask why im takin it like that,
because i took it how you put it, now take it right back,
[Chorrus]
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
got a problem with somethin im sayin to you son,
take it how you want it, we can take it to the guns
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
yea you beside me and now you playin with my guns,
im a take you to blood, we can take it to the guns
[Verse 2]
I smoke a large portion for cheaper,
my gun game sick like a cough and fever,
niggas straight birds like a hawk and geizer,
but they run on you like a horse and a cheetah,
we real niggas so when we walk through they great us,
pull over and talk to us egor,
why your man keep pealin off when he see us,
he one of them hot head niggas, He'll cool off in the freezer,
thats my word i chase his boss out his sneakers,
the nigga ran so fast he lost his adidas,
even as a student had the force of a leader,
talked to teachers with thoughts of a thinker,
me and him strong side by side, dont try to walk in between us,
even stand beside us or lay underneath us,
jackson like michael, flip keys like alicia,
pull mats like burney to get friends like aretha,
pigs playin for keps, them hogs wanna keep us,
because we walk the walk and talk with the nina,
im tossin the heata, i aint tryin to get cought without it,
but i aint tryin to get cought with it neither,
[Chorrus]
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
got a problem with somethin im sayin to you son,
take it how you want it, we can take it to the guns
Born in the gutter, raised in the slums
i dont like talkin we can take it to the guns,
yea you beside me and now you playin with my guns,
im a take you to blood, we can take it to the guns
[Verse 3]
You dont really wanna take it there, us real dudes smell fear,
all the crack heads say they love you when you let em get by,
all they really love is crack, they just wanna get high,
in my hood they dont care about a couple of chumps,
when the gun boys come, all they want is them guns,
but when the narcs snatch you up, it shatter dreams,
because they bag you and bag a fein,
the judge threw the book at my man, we had a team,
judges like throwin books, thats why i throw magazines,
yall got a lotta drama and a lil nina, ya grills gotta get a lil meana,
if i wanna say xxxx you, i aint gunna give you the middle finger,
real niggas say xxxx you with the triger finger,
run on your block and hit you like a bolita,
i toke ninas and poke feevers, and park rims for you,
scheme and plot smart schames for you,
after they bang with you they call the man on you,
he snitchin on his own colors, smart man for you,
the white man cought you becuse the dark man saw you,
heard when they hoped outta that dark van on you,
your whole fear bounced, even your ark ran on you,
what you expect niggas to spark candals for you,
that gun aint jammed on you, your hearts jammed on you,
spoke with gang sign language, said slice pack,
i spoke with body language and gave him his knife back,
dont ever ask why im takin it like that,
i took it how you put it, now take it right back,
I lost a whole lotta homies to the gun,
killas will chase you to ya grave if you run,
20 ta life they aint playin wit you son,
so think befor you take it to the gun