- published: 26 Jun 2024
- views: 138912
'+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; })); }); -->
War is a state of armed conflict between societies. It is generally characterized by extreme collective aggression, destruction, and usually high mortality. The set of techniques and actions used to conduct war is known as warfare. An absence of war is usually called "peace". Total war is warfare that is not restricted to purely legitimate military targets, and can result in massive civilian or other non-combatant casualties.
While some scholars see war as a universal and ancestral aspect of human nature, others argue that it is only a result of specific socio-cultural or ecological circumstances.
In 2013 war resulted in 31,000 deaths down from 72,000 deaths in 1990. The deadliest war in history, in terms of the cumulative number of deaths since its start, is the Second World War, from 1939 to 1945, with 60–85 million deaths, followed by the Mongol conquests which was greater than 41 million. Proportionally speaking, the most destructive war in modern history is the War of the Triple Alliance, which took the lives of over 60% of Paraguay's population, according to Steven Pinker. In 2003, Richard Smalley identified war as the sixth (of ten) biggest problem facing humanity for the next fifty years. War usually results in significant deterioration of infrastructure and the ecosystem, a decrease in social spending, famine, large-scale emigration from the war zone, and often the mistreatment of prisoners of war or civilians. Another byproduct of some wars is the prevalence of propaganda by some or all parties in the conflict, and increased revenues by weapons manufacturers.
The following is a list of main characters in the Teenage Mutant Ninja Turtles franchise.
The Teenage Mutant Ninja Turtles are a team of mutant red-eared sliders named after four Renaissance artists and living in the sewers of New York City, where they train by day and fight crime by night as ninjas.
Leonardo is the tactical, courageous leader of the Ninja Turtles and a devoted student of Ninjutsu, usually wearing a blue mask and wielding two katanas.
Michelangelo is the most comical of the Ninja Turtles, usually wearing an orange mask and wielding a pair of nunchucks.
Donatello is the scientist, inventor, engineer and technological genius of the Ninja Turtles, usually wearing a purple mask and wielding a bo-staff.
Raphael is the bad boy of the Ninja Turtles, wearing a red mask and wielding a pair of sais.
Splinter is the mutant rat sensei and adoptive father of the Ninja Turtles, trained in Ninjutsu by his owner and master, Hamato Yoshi, in Japan.
"The Red Badge of Gayness" is episode 45 of Comedy Central's animated series South Park. It originally aired on November 24, 1999.
In the summer of 2013, fans voted "The Red Badge of Gayness" as the best episode of Season 3.
The episode's name is a play on the Red Badge of Courage.
As the entire town of South Park is preparing to hold its annual American Civil War reenactment of the (fictional) Battle of Tamarack Hill, the children rehearse as a Union Army rally band.
In the morning of the reenactment, Jimbo informs the reenactors that over 200 people will come to see them reenact the battle, setting a new record. He also takes the time to remind everyone that the primary sponsor of their event is Jagerminz S'more-flavored Schnapps, "the schnapps with the delightful taste of s'mores." In addition, the special guest will be Stan's grandpa, Marvin Marsh. Meanwhile, Cartman comes dressed as General Robert E. Lee, and the boys are outraged by his dressing as a Confederate officer. Evidently under the impression that the reenactment is a competition of some sort, Cartman bets that the South will win the Civil War, and if it does, Stan and Kyle will be his slaves for a month, or vice versa. Knowing that the outcome is supposed to be historical victory for the North as planned, Stan and Kyle eagerly accept the challenge.
SS Papoose was an oil tanker built in 1921 by the Southwestern Shipbuilding & Drydock Company in San Pedro, California as SS Silvanus for the Nederlandsch-Indische Tankstoomboot Maatschappij ("Dutch-Indies Steam Tanker Company"). In 1926 Silvanus collided with the tanker Thomas H. Wheeler in the Mississippi River, resulting in the death of 26 seamen. The Silvanus was declared a total loss and rebuilt in Beaumont, Texas.
It started operating as the Papoose for the Petroleum Navigation Company in Houston, Texas in March 1927. In March 1942, it was attacked by German U-boat U-124 off the coast of Cape Lookout, North Carolina. It drifted for several days and eventually sank in 200 feet (61 m) of water off Oregon Inlet, North Carolina.
Coordinates: 34°17′N 76°39′W / 34.283°N 76.650°W / 34.283; -76.650
Russian officials have summoned the U.S. Ambassador to issue a formal warning: expect retaliation. Sounds of laughter can be heard, followed immediately by panic, in a video posted on X by the Russian Embassy in London. It was taken at a beach in Sevastopol, the site of a missile strike Sunday launched by Ukraine. FULL STORY: https://nbcmontana.com/news/nation-world/russia-blames-us-for-attack-in-crimea-as-war-in-ukraine-rages-on-russian-embassay-sevastopol-missile-strike-weapons-military-west-vladimir-putin-north-korea-submarines-cuba# Stay up to date with our digital and social media content: Facebook: https://www.facebook.com/NBCMontana Twitter: https://twitter.com/NBCMontana Instagram: https://www.instagram.com/nbc_montana/ Latest local news and weather: https://nbcmontana.com/ Lat...
Krystal and Saagar discuss war scholar Robert Pape saying that Hamas has won against Israel in Gaza. To become a Breaking Points Premium Member and watch/listen to the show uncut and 1 hour early visit: https://breakingpoints.com/ For support connecting your locals account, contact [email protected] and CC [email protected] Merch Store: https://shop.breakingpoints.com/ To listen to Breaking Points as a podcast, check them out on Apple and Spotify Apple: https://podcasts.apple.com/us/podcast/breaking-points-with-krystal-and-saagar/id1570045623 Spotify: https://open.spotify.com/show/4Kbsy61zJSzPxNZZ3PKbXl #news #politics #youtube
Russia has accused the United States of being responsible for a deadly Ukrainian attack on the Russian-annexed Crimean peninsula. The attack, which used five US-supplied missiles, resulted in the deaths of at least five individuals, including three children, and left 124 others injured. Watch in for more details! #russiaukrainewar #Putin #wion About Channel: WION The World is One News examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim is to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to world politics. People are tired of biased reporta...
THEORY SABERS - https://theorysabers.com/ MERCH - https://www.swtheorymerch.com/ SPOTIFY Daily Podcast Episodes - https://sptfy.com/OQ45 Apple Podcasts Star Wars Theory - https://apple.co/3Z0qBQE Twitter - https://twitter.com/realswtheory Instagram - https://www.instagram.com/star.wars.theory/ TikTok - https://www.tiktok.com/@starwarstheory66 Join this channel to get access to perks: https://www.youtube.com/channel/UC8CbFnDTYkiVweaz8y9wd_Q/join MERCH - https://swtheory.teespring.com/ Become a Patron to support future content - https://www.patreon.com/StarWarsTheory Chat with the community on my personal Star Wars Theory Forums https://starwarstheory.com/THEORY/posts DISCORD - https://discord.gg/starwarstheory MY OTHER CHANNELS Star Wars Theory Clips Channel https://www.youtub...
During a press briefing on Tuesday, Pentagon Spokesperson Air Force Major General Pat Ryder answered reporter questions on the Israel-Hamas war. Fuel your success with Forbes. Gain unlimited access to premium journalism, including breaking news, groundbreaking in-depth reported stories, daily digests and more. Plus, members get a front-row seat at members-only events with leading thinkers and doers, access to premium video that can help you get ahead, an ad-light experience, early access to select products including NFT drops and more: https://account.forbes.com/membership/?utm_source=youtube&utm_medium=display&utm_campaign=growth_non-sub_paid_subscribe_ytdescript Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Vide...
🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :[email protected] ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog My Instagram: @denys_pilot My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this Pilot Blog channel to encourage people all around the world to join our aviation community. Here you'll see interesting aviation videos from pilot's perspective. Enjoy:)
Former Home Affairs secretary Michael Pezzullo says there is a “possible war” looming in the Pacific. Mr Pezzullo, in an address on Tuesday, proposed a Defence Production Commission. “We have to increase the capacity of industry to generate, regrettably, those weapons of war given what is likely … looming as a possible war in the Pacific,” Mr Pezzullo told Sky News Australia.
Swift Slash is the MOST BROKEN Ash of War in Elden Ring history and it's not even close. It's amazing for PvE and ABSOLUTELY BROKEN in PvP. This Ash of War needs an URGENT nerf... and we're not even kidding. Ranni tells you all about it. Steel's video about ticket submission: https://www.youtube.com/watch?v=25giInUaDnE&ab_channel=Steelovsky Steel videos about Swift Slash: https://www.youtube.com/watch?v=FBi1ZJve8zI&ab_channel=Steelovsky https://www.youtube.com/watch?v=PNKZ_pHoTgI&t=270s&ab_channel=Steelovsky If you enjoyed, feel free to leave a like and comment! Subscribe and hit that bell if you want more content 🔔 Become a member 🤓 https://www.youtube.com/channel/UCjaoT0NQq3qrKxLdfh5Swow/join Consider supporting me on PATREON! 💕 https://www.patreon.com/onlywaifu Merch store ☕: htt...
Russia has suffered major blows overnight as Ukrainian drone forces struck a massive ammo storage across the border resulting in one of the largest explosions of the war. Belgorod was also attacked, with Russian air defense being destroyed aorund the city. Ukrainian forces are putting very high losses on the Russians in Vovchansk and are continuing to stall offensives in Avdiivka and Bakmhut. Support The Enforcer On Patreon: https://www.patreon.com/The_Enforcer Join The Enforcer's Twitter: https://twitter.com/ItsTheEnforcer Support The War Effort In Ukraine: https://u24.gov.ua/ Day 853 Ukraine War Map: https://www.google.com/maps/d/edit?mid=1MU7oz8OWRQhJW8h2sV7ccACx_izWq5U&usp=sharing
🔥 Support Pilot Blog on Patreon! https://www.patreon.com/PilotBlog ❤️ Buy me a coffee: https://www.buymeacoffee.com/davydoff ✈️ Find me on PayPal :[email protected] ✈ Denys Davydov Telegram Channel: https://t.me/pilotblog My Instagram: @denys_pilot My new channel: https://www.youtube.com/@DDWorldForyou You may check the military map here: https://militaryland.net/ https://deepstatemap.live/ MapTiler map link is https://www.maptiler.com/ My name is Denys, and I am Boeing 737 Captain. Before I used to fly ATR 42/72. I am making the videos on this Pilot Blog channel to encourage people all around the world to join our aviation community. Here you'll see interesting aviation videos from pilot's perspective. Enjoy:)
Here is the complete list of villains from the original Teenage Mutant Ninja Turtles Cartoon running from 1987 - 1996. Sorry I couldn't get video clips for every villain everyone! That would have been days of sifting through episodes, and downloading! Let me know if I missed anyone or if someone is mislabelled! MISSING: Mutagen Man And remember!! To leave me your favourite villain in the comments down below!!! ____________________________________ Thank you to this week's Patrons!: Timothy: (YouTube) TimDisturbed Karl Andrew L : (Insta) karllong99 , (Twitter) @karllong10 Celtic Tiger Reactions: (YouTube) Celtic Tiger Reactions, (Insta) Celtic_Tiger_Productions Henry F. Ronaldo R. CharlieTwoDelta Michael W. Justin ____________________________________ Support Me on Patreon! : http...
South Park: The Red Badge of Gayness Reaction (Season 3, Episode 14) 🔵 For Full Reactions And Exclusive Content Join The Patreon! ► https://www.patreon.com/disfunktionaltv 🔔 Subscribe And Ring The Bell To Get Notified When I Post A Video! 🟣 #GFuelPartner For Up To 30% Off Use Code: DTV https://sldr.page.link/TPbR ► Follow DisfunktionalTV On All Socials 👇🏽⬇👇🏽 https://www.instagram.com/DisfunktionalTV https://twitter.com/DisfunktionalTV https://tiktok.com/@DisfunktionalTV ---------------------------------------------------------------------------------------------- Follow The Stream ► https://www.twitch.tv/disfunktionaltv ► https://kick.com/disfunktionaltv Join The Discord! ► https://discord.gg/VRxaR9BUHV Support The Channel ► DTV M...
PATREON: https://t.ly/eNGt_ DISCORD: https://discord.gg/qJJbVVPZwt INSTA: @sirbu_jr "The Red Badge of Gayness" is the fourteenth episode of the third season of the animated television series South Park and the 45th episode of the series overall. It originally aired on November 24, 1999. In the episode, the boys participate in the South Park Civil War reenactment. To win a bet, Cartman convinces the reenactors to try and alter history and leads them throughout the United States. The episode's name is a reference to the war novel The Red Badge of Courage, and parodies Ken Burns' documentary miniseries The Civil War and the 1993 film Gettysburg. SOUTH PARK - Red Badge of Gayness! Reaction and Commentary (S3, E14) #southpark #southparkfanart #southparkcosplay #southparkmemes #southparkkenny...
I own none of the contents in this video. I uploaded it for fun, and to acknowledge the creators, Trey Parker and Matt Stone. Dedicated to my broa Salahowa!
Just as the Confederates are ready to head back, Cartman calls in another load of schnapps. They get drunk again and decide to keep fighting. "The Red Badge of Gayness" S03 Subscribe to South Park: https://www.youtube.com/channel/UC7R27sAWc_DqOldtI1JcYhQ?sub_confirmation=1 Watch more South Park: https://www.youtube.com/southpark About South Park: South Park is the Emmy and Peabody-award winning animated series co-created by Trey Parker and Matt Stone about four boys living in one screwed-up Colorado mountain town. Between local and global tragedies, as well as parental and celebrity interference, Kyle, Stan, Cartman, and Kenny manage to have themselves a time. Watch full episodes of South Park: https://cart.mn/episodes Shop official South Park merch: https://cart.mn/shop Follow ...
A vintage teaser for the South Park season three episode "The Red Badge of Gayness" that aired in 1999. *Check out my other channels and social media!* Instagram: http://www.instagram.com/fartoons_productions FARToons YouTube Channel: http://www.youtube.com/fartoons #southpark #trailer #teaser #promo #commercial #ericcartman #kennymccormick #kylebroflovski #stanmarsh #treyparker #mattstone #southparkcollection #animation #cartoon
"The Red Badge of Gayness" During a Civil War reenactment, Cartman (as General Lee) leads the Drunk Confederate army to attack the Union soldiers across America. #southpark #animation #comedy #lol #familyguy #funny #cartoon #anime
LOL THIS CRACKED ME UP WITH CARTMAN BEING CRAZY WITH THE DRUM
General Cartman writes back to inform mrs mccormick of her son's heroic sacrifice
"The Red Badge of Gayness" South Park Season 03, Episode 14 –––––––––––––––––––––––––––––– https://www.youtube.com/user/southparkstudios Creative Commons — Attribution-ShareAlike 3.0 — CC BY-SA 3.0 –––––––––––––––––––––––––––––– #SouthPark
"The Red Badge of Gayness" South Park Season 03, Episode 14 –––––––––––––––––––––––––––––– https://www.youtube.com/user/southparkstudios Creative Commons — Attribution-ShareAlike 3.0 — CC BY-SA 3.0 –––––––––––––––––––––––––––––– #SouthPark
War is a state of armed conflict between societies. It is generally characterized by extreme collective aggression, destruction, and usually high mortality. The set of techniques and actions used to conduct war is known as warfare. An absence of war is usually called "peace". Total war is warfare that is not restricted to purely legitimate military targets, and can result in massive civilian or other non-combatant casualties.
While some scholars see war as a universal and ancestral aspect of human nature, others argue that it is only a result of specific socio-cultural or ecological circumstances.
In 2013 war resulted in 31,000 deaths down from 72,000 deaths in 1990. The deadliest war in history, in terms of the cumulative number of deaths since its start, is the Second World War, from 1939 to 1945, with 60–85 million deaths, followed by the Mongol conquests which was greater than 41 million. Proportionally speaking, the most destructive war in modern history is the War of the Triple Alliance, which took the lives of over 60% of Paraguay's population, according to Steven Pinker. In 2003, Richard Smalley identified war as the sixth (of ten) biggest problem facing humanity for the next fifty years. War usually results in significant deterioration of infrastructure and the ecosystem, a decrease in social spending, famine, large-scale emigration from the war zone, and often the mistreatment of prisoners of war or civilians. Another byproduct of some wars is the prevalence of propaganda by some or all parties in the conflict, and increased revenues by weapons manufacturers.
We heard the word now, we know just what you're thinkin',
you want us dead now, you wanna see us sinkin'.
We have no choice now, this is the game you've chosen,
my clique is killa, just like the dank i'm smokin'.
It's time for action, time for retaliation,
you ain't a real G, been watchin' too much Jason.
Ball my fists around my clips,
may you sleep in peace with the fish.
You's a hoe, and in the pen, you be a bitch,
using red m&ms for lipstick...
They want to go to bloody war,
are you sure you want to take me to war?
They want to go to bloody war,
are you sure you want to take me to war?
I got my G's, I got my team,
put me down for murda in 1st degree.
My clip is full, but that'll change,
heard you got your vest on, but I want brains.
It's lonely days and lonley nights,
'cause I need my revenge right by my side.
My gun is hot, my heart is cold,
everyone around me has killed before.
They want to go to bloody war,
are you sure you want to take me to war?
I snatch your bitch then snatch your life,
and keep your fingers for braggin' rights.
Next week you'll be washin' my trocka,
'cause your ass ain't shit but a panocha.
You have a choice: die or be miserable,
dopehouse, home of the invisible.
I warned y'all to stay off my genitals,
now I gotta turn you fruits into vegetables.
Having nightmares, homie you ain't dead yet,
wakin' up with your motherfucking bed wet.
I have fun with fuckin' punks like you,
tell his mama not to worry, he'll be dead by two.
His head impounded, they never found it,
he in the dirt, you can say he got grounded.
I'm a shouter, livin' how I tell it,
and if you see him, tell him I said...
They want to go to bloody war,
are you sure you want to take me to war?
They want to go to bloody war,