'+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; })); }); -->

Stand Up

Stand Up may refer to:

  • Stand-up comedy
  • Stand up (military), the activation of a unit or command structure
  • Stand-up fighting, a type of hand-to-hand combat
  • Stand-up meeting, a daily team meeting, in agile software development
  • Organizations

  • STAND UP (organization), an organization trying to improve America's education system
  • Stand Up and Take Action, a campaign trying to expedite the UN's millennium development goals
  • Stand Up! for Democracy in DC Coalition, a grassroots advocacy group
  • StandUp For Kids, a non-profit organization rescuing homeless and at-risk youth in America
  • The Ben Cohen StandUp Foundation, a non-profit organization that aims to prevent bullying
  • Television and film

  • Stand Up, a 1995 installment of the American anthology series CBS Schoolbreak Special
  • Stand Up!!, a 2003 Japanese TV drama
  • Stand Up, a 2007 American film starring Modi Rosenfeld
  • Stand Up (film), a 2008 British film by Joseph Pierce
  • The Stand Up, a 2011 comedy/drama written and directed by David Wexler
  • Music

    Go West (song)

    "Go West" is a song by the American disco group Village People. It was an instant hit in the disco scene during the late 1970s. The song found further success when it was covered in 1993 by English synthpop duo Pet Shop Boys. Original Village People lead singer Victor Willis, Henri Belolo and Jacques Morali are credited as the song's writers, although Willis disputes Belolo's involvement.

    Village People version

    Originally released as a single in 1979, it was not as popular as the group's other contemporary singles such as "Y.M.C.A." and "In the Navy". The song's title is attributed to the nineteenth century quote "Go West, young man" commonly attributed to Horace Greeley, a rallying cry for the colonization of the American West. Though Victor Willis denies writing the song with a gay theme in mind, "Go West" is generally understood as an expression of the 1970s sentiment of San Francisco as a utopia for the Gay Liberation movement.

    Both the 7" and 12" versions of the song were subsequently collected in various greatest hits collections, including a 1997 radio remix which was made in the wake of the success of Pet Shop Boys' 1993 version.

    STAND UP (organization)

    STAND UP is a national campaign that seeks to positively impact the current crisis within the United States public education system by calling upon community leaders, parents, students and citizens to encourage change and STAND UP for better schools and the future of America’s children. STAND UP was founded by the Bill & Melinda Gates Foundation and the Eli Broad Foundation, and was launched in April 2006 on The Oprah Winfrey Show in a two-part feature.

    External links

  • STAND UP website

  • Zola

    Zola may refer to:

    People

  • Gianfranco Zola, an Italian footballer
  • Zola (musician) (born 1977), South African entertainer
  • Zola (name), a list of people with either the surname or given name
  • Places

  • Zola (crater) on Mercury
  • Zola, Iran, a village in West Azerbaijan Province
  • Zola, Soweto, a township in South Africa
  • Zola, a village on the Greek island of Kefalonia
  • Art, entertainment, and media

    Fictional entities

  • Arnim Zola, a fictional character in the Marvel Comics universe
  • Zola, a character in the Battle Arena Toshinden fighting game series; see List of Battle Arena Toshinden characters
  • Zola, a female mercenary and party member in the video game Blue Dragon
  • Zola, a villain in the Dick Tracy comic strip; see List of recurring characters in Dick Tracy
  • Zola, a planet in the animated video series Macross Dynamite 7
  • Zola, a creature in The Legend of Zelda video game series; see Recurring enemies in The Legend of Zelda series
  • Music

  • The Zolas, a Canadian rock band
  • Other uses

  • Zola (moth), a genus of moth
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Zola

    Stand (Jewel song)

    "Stand" is a song by American pop singer–songwriter Jewel from her fourth studio album, 0304 (2003). Written and produced by Jewel and Lester Mendez, and released as the album's second single in October 2003 in the United States and later on internationally, the single failed to chart on the Billboard Hot 100. It reached number sixteen on the Hot 100 Singles Sales chart, and also became Jewel's third consecutive chart-topper on the Hot Dance Club Play.

    Background and writing

    "Stand" was written and produced by Kilcher and Lester Mendez.

    Critical reception

    Todd Burns from Stylus Magazine wrote that "It is a strong first song and while the lyrics are vaguely suspect, they can be ignored in favor of the driving beat."

    Commercial release

    The single edit saw no alteration from its original version. However, it was listed as Single Mix on some promotional singles, which is no different from the album version.

    "Stand" was released in two formats in the U.S.; the CD single contains "Stand" and the 0304 trumpet-driven track "Leave the Lights On" as a coupling track, while the CD maxi single contains the song's club mixes. Both singles contained two different covers. International singles received the title track and some club mixes for its final release.

    JoJo's Bizarre Adventure

    JoJo's Bizarre Adventure (Japanese: ジョジョの奇妙な冒険 Hepburn: JoJo no Kimyō na Bōken) is a Japanese manga series written and illustrated by Hirohiko Araki. It was originally serialized in Weekly Shōnen Jump from 1986 to 2004, before being transferred to the monthly seinen magazine Ultra Jump in 2005. The current story arc, JoJolion, started in 2011. JoJo's Bizarre Adventure is currently Shueisha's second largest manga series with its chapters collected into 115 tankōbon volumes and counting (only Kochira Katsushika-ku Kameari Kōen-mae Hashutsujo, with over 190, has more).

    A six-volume original video animation adaptation of the later half of the series' third story arc was released from 1993 to 1994 by studio A.P.P.P., followed by another seven-volume series covering earlier parts of the arc from 2000 to 2002. A.P.P.P. also produced a theatrical film of the first arc in 2007. In 2012, an anime television series produced by David Production began broadcast on Tokyo MX, and covered the first two story arcs of the manga in 26 episodes. A second 48-episode season covering the third arc was broadcast in 2014 and 2015.

    Stand (drill pipe)

    A stand (of drill pipe) is two or three joints of drill pipe connected and stood in the derrick vertically, usually while tripping pipe. A stand of collars is similar, only made up of collars and a collar head. The collar head is screwed into the collar to allow it to be picked up by the elevators.

    Stands are emplaced inside of the "board" of the drilling rig. They are usually kept between "fingers". Most boards will allow stands to go ten stands deep and as much as fifty stands wide on land based rigs. The stands are further held in place using ropes in the board which are tied in a shoe knot by the derrickman.

    Stands are emplaced on the floor of the drilling rig by the chain hand. When stands are being put onto the floor the chainhand is said to be "racking stands". After the bottom of the stand is placed on the floor, the derrickman will unlatch the elevators and pull the stand in either with a rope or with just his arms. When stands are being put back into the hole, the derickman will slam the stand into the elevators to force them to latch. The chainhand will brace against the stand to control it when the driller picks it up. This is referred to as "tailing the pipe" as the chain hand will hold the pipe and allow it to semi-drag them back to the hole. The chain hand then passes it off to the tong hand, who then "stabs" the stand into the pipe already in the hole.

    Podcasts:

    • The Most American Thing That’s Ever Happened - John Oliver

      John Oliver contemplates America’s legacy and describes an uber-American event that took place off the coast of South Carolina. John Oliver’s Stand-Up Show is available on Pluto TV: https://pluto.onelink.me/kmdU/df4d0352?c=tw Subscribe to Comedy Central Stand-Up: https://www.youtube.com/channel/UCtw7q4SyOeoCwM1i_3x8lDg?sub_confirmation=1 About John Oliver’s New York Stand-Up Show: John Oliver hosts some of the best comedians around, including Reggie Watts, Pete Holmes, Rory Scovel and Paul F. Tompkins, in this stand-up series. Watch more Comedy Central Stand-Up: https://www.youtube.com/standup Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch full Comedy Central stan...

      published: 16 Jun 2019
    • USA vs. Brazil | Rafi Bastos | Stand Up Comedy

      Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on events where the performers and location are kept secret until the day of the show. With over 200 cities already in on the joke, you never know where we'll set up shop, or who might pop in. Want to be let in on the secret? Visit our website below to find an upcoming show near you: https://www.donttellcomedy.com Just don't tell anyone!! 🤫 ---------------------------------------------------------------------- Follow Rafi on Instagram to see where he's performing next: https://www.instagram.com/raficomedy/?hl=en ---------------------------------------------------------------------- Credits: Written and Performed by Rafi Bastos Executive Producers: Kyle Kazanjian-Amory and Brett Kushner Directed By: Go...

      published: 01 Mar 2023
    • Alpha Male Content is Insane | Alec Flynn | Stand Up Comedy

      Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on events where the performers and location are kept secret until the day of the show. With over 200 cities already in on the joke, you never know where we'll set up shop, or who might pop in. Want to be let in on the secret? Visit our website below to find an upcoming show near you: https://www.donttellcomedy.com Just don't tell anyone!! 🤫 ---------------------------------------------------------------------- Alec is an all around good guy, tries hard, does his homework. Good kid, local kid. High Plains Comedy festival, Rogue Island. Denver by way of Boston. I think (Alec is writing this) you should follow him on instagram (https://www.instagram.com/bigalflynn/) to see him grow as a comic and hopefully...

      published: 22 May 2023
    • “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Special

      Greer Barnes talks about smoking weed, the plight of the bees and wanting to meet aliens. Original airdate: February 20, 2009 Paramount+ is here! Stream all your favorite shows now on Paramount+. Try it FREE at https://bit.ly/3qyOeOf About Comedy Central Presents: These half-hour specials showcased some of the best up-and-coming comedians of the moment. The show was a pivotal stepping stone for many of today’s stand-up stars, including Dave Chappelle, Patton Oswalt, Amy Schumer, Jim Gaffigan, Kevin Hart, Zach Galifianakis, Dane Cook, Bill Burr, Wanda Sykes and Maria Bamford. #StandUp #GreerBarnes Subscribe to Comedy Central Stand-Up: https://www.youtube.com/channel/UCtw7q4SyOeoCwM1i_3x8lDg?sub_confirmation=1 Watch more Comedy Central Stand-Up: https://www.youtube.com/standup Follow ...

      published: 24 Mar 2023
    • "Stand Up For America" || George Wallace Campaign Song

      A campaign song of George C. Wallace, the infamous segregationalist who ran for president back in the 60s. This video is not made in support of segregation or any other concept like it. It's just made for fun and history.

      published: 06 May 2023
    • PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USA

      EDIT: "Oh Hello!" Australia and NZ tour (Jun'23) tickets: https://linktr.ee/RahulDuaTour "New Comedy Special 2023-24" UK-EU Tour (Aug-Sep'23) tickets: https://linktr.ee/therahulduatour This video was shot in Boston, Massachusetts on 25th March, 2023. It was my first ever visit to the USA and I am very exited to present to you some of my favourite observations & experiences from the days I spent in the US as part of my Stand Up World Tour. These are observational jokes rehearsed and delivered in 12-13 shows, unlike conventional stand up content which takes a couple of years to perfect. So need all your love, appreciation and support as I deal with timezone differences, the concept of drinkable tap water and Costco as the one stop shop for all possible needs. Drop in a LIKE and SHARE the...

      published: 20 May 2023
    • Dumb Americans | George Carlin | Life Is Worth Losing (2005)

      In this piece from George Carlin's special Life Is Worth Losing, the stand-up comedian covers the downfall of America from our "inheritance" of this beautiful country to consumerism and today's politicians, "It's a big club and you ain't in it." Life Is Worth Losing, stand-up comedian George Carlin's 13th HBO comedy special, was recorded at New York's Beacon Theatre in 2005. The special was simultaneously broadcast live.The special was nominated for Best Comedy Album at the 49th Annual Grammy Awards. Stream the full special here: https://tubitv.com/movies/499812/george-carlin-life-is-worth-losing George Carlin was a social commentator who challenged conventional wisdom and brought us face-to-face with our ingrained hypocrisies. There was no topic off limits to his keen observation, word...

      published: 31 Oct 2016
    • Matt Rife | Only Fans (Full Comedy Special)

      #MattRife #OnlyFans #ComedySpecial #StandUpComedy #FullComedyVideo Matt Rife is a twenty six year old Veteran of standup comedy. Beginning at the age of fifteen, Matt has developed an extremely unique perspective on everything from women, self awareness, race, and some of the worlds darker issues. And he delivers these ideas with a quick witted, almost charmingly naive performance that you don’t want to miss! Watch more from Matt Rife... Matthew Steven Rife: https://youtu.be/mBUqOhWLT7k Burb Patrol: https://youtu.be/SbFteTIScEw Download and stream Matt Rife’s new album 'Only Fans' on all your favorite services: https://800PGR.lnk.to/MattRifeID Follow Matt Rife at… Instagram: https://www.instagram.com/mattrife09/ Twitter: https://mobile.twitter.com/mattrife TikTok: https://www.tiktok.c...

      published: 20 Jan 2023
    • Stand up to Ataxia #ataxia #cleanchristiancomedy #trendingvideo

      #comedyvideos #performance #comedian #parody #comedyclass I recently participated in a fund raising event to combat Ataxia, a rare neurological condition. I really enjoyed the event, especially meeting another comedian, one who has the condition. He was extremely funny and a joy to be around. Thank you so much for watching this video. If you are a subscriber, thank you for subscribing. If you're not one, why not do so today? If you're looking for clean comedy for any event, I will bring my special brand of humor to your group. I'm a different kind of comedian. I am a comedic singer; I create and perform my own parodies. Plus, I charge the same for up to 60 minutes of performance time and will never cancel to take a higher fee somewhere else. I also offer a FUN-raising program, where ...

      published: 29 Aug 2023
    • Andrew Schulz - INFAMOUS (2022) FULL SPECIAL

      GET THE MERCH FROM INFAMOUS https://fashun.shop The day has finally come. INFAMOUS is now free on YouTube. Enjoy! Thank you to everyone who supported INFAMOUS. Together we changed the game. #TrendingNow

      published: 25 Sep 2022
    developed with YouTube
    The Most American Thing That’s Ever Happened - John Oliver
    5:48

    The Most American Thing That’s Ever Happened - John Oliver

    • Order:
    • Duration: 5:48
    • Uploaded Date: 16 Jun 2019
    • views: 2957265
    John Oliver contemplates America’s legacy and describes an uber-American event that took place off the coast of South Carolina. John Oliver’s Stand-Up Show is available on Pluto TV: https://pluto.onelink.me/kmdU/df4d0352?c=tw Subscribe to Comedy Central Stand-Up: https://www.youtube.com/channel/UCtw7q4SyOeoCwM1i_3x8lDg?sub_confirmation=1 About John Oliver’s New York Stand-Up Show: John Oliver hosts some of the best comedians around, including Reggie Watts, Pete Holmes, Rory Scovel and Paul F. Tompkins, in this stand-up series. Watch more Comedy Central Stand-Up: https://www.youtube.com/standup Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch full Comedy Central stand-up specials: https://www.cc.com/topic/stand-up #StandUp #StandUp . Comedy Central Stand-Up: Anti-Bias Statement: https://www.cc.com/info/k32ti7/ccsu-anti-bias-statement
    https://wn.com/The_Most_American_Thing_That’S_Ever_Happened_John_Oliver
    USA vs. Brazil | Rafi Bastos | Stand Up Comedy
    11:08

    USA vs. Brazil | Rafi Bastos | Stand Up Comedy

    • Order:
    • Duration: 11:08
    • Uploaded Date: 01 Mar 2023
    • views: 2545664
    Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on events where the performers and location are kept secret until the day of the show. With over 200 cities already in on the joke, you never know where we'll set up shop, or who might pop in. Want to be let in on the secret? Visit our website below to find an upcoming show near you: https://www.donttellcomedy.com Just don't tell anyone!! 🤫 ---------------------------------------------------------------------- Follow Rafi on Instagram to see where he's performing next: https://www.instagram.com/raficomedy/?hl=en ---------------------------------------------------------------------- Credits: Written and Performed by Rafi Bastos Executive Producers: Kyle Kazanjian-Amory and Brett Kushner Directed By: Gordie Earle III and Brad Silnutzer Director of Photography: Mark Davis Consulting Producer: Cole Garrett Gaffer: Michael Tellup Grip: Jon Corum Cam Operators: Amelia Asillis Mark Davis Lauren Doyle Gordie Earle III Michael Tellup Editor: Gordie Earle III Color Correction: Mark I. Davis Sound Recording: Ben Rose Sound Mix: Ryan Meadows Production Coordinator: Megan Hunter Production Assistants: Morgan Culbertson Emily Farrell Annie Gorham Photographer: Matthew Misisco Special thanks to our generous hosts, SBCAST in Santa Barbara, CA Code: R4VAMR8GBH4XC3F
    https://wn.com/USA_Vs._Brazil_|_Rafi_Bastos_|_Stand_Up_Comedy
    Alpha Male Content is Insane | Alec Flynn | Stand Up Comedy
    10:03

    Alpha Male Content is Insane | Alec Flynn | Stand Up Comedy

    • Order:
    • Duration: 10:03
    • Uploaded Date: 22 May 2023
    • views: 3434870
    Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on events where the performers and location are kept secret until the day of the show. With over 200 cities already in on the joke, you never know where we'll set up shop, or who might pop in. Want to be let in on the secret? Visit our website below to find an upcoming show near you: https://www.donttellcomedy.com Just don't tell anyone!! 🤫 ---------------------------------------------------------------------- Alec is an all around good guy, tries hard, does his homework. Good kid, local kid. High Plains Comedy festival, Rogue Island. Denver by way of Boston. I think (Alec is writing this) you should follow him on instagram (https://www.instagram.com/bigalflynn/) to see him grow as a comic and hopefully a person. ---------------------------------------------------------------------- Credits: Written and Performed by Alec Flynn Executive Producers: Kyle Kazanjian-Amory and Brett Kushner VP of Production: Marissa Gallant Director: Brad Silnutzer Director of Photography: Mark Davis Consulting Producer: Jay Bode Gaffer: Michael Tellup Grip: Tommy Anderson Cam Operators: Tommy Anderson Jon Austin Lauren Doyle Nate Elegino Adrian Gutierrez Editor: Elise Golgowski Color Correction: Mark I. Davis Sound Recording: Guillermo Areizaga Sound Mix: Ryan Meadows Production Assistants: Maggie Rosenberg Greyson Hines Photographer: Shaun Baker (IG: @shaunbaker35) Special thanks to our generous hosts, Movement Warehouse in San Diego, CA Code: R4VAMR8GBH4XC3F
    https://wn.com/Alpha_Male_Content_Is_Insane_|_Alec_Flynn_|_Stand_Up_Comedy
    “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Special
    21:16

    “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Special

    • Order:
    • Duration: 21:16
    • Uploaded Date: 24 Mar 2023
    • views: 2729610
    Greer Barnes talks about smoking weed, the plight of the bees and wanting to meet aliens. Original airdate: February 20, 2009 Paramount+ is here! Stream all your favorite shows now on Paramount+. Try it FREE at https://bit.ly/3qyOeOf About Comedy Central Presents: These half-hour specials showcased some of the best up-and-coming comedians of the moment. The show was a pivotal stepping stone for many of today’s stand-up stars, including Dave Chappelle, Patton Oswalt, Amy Schumer, Jim Gaffigan, Kevin Hart, Zach Galifianakis, Dane Cook, Bill Burr, Wanda Sykes and Maria Bamford. #StandUp #GreerBarnes Subscribe to Comedy Central Stand-Up: https://www.youtube.com/channel/UCtw7q4SyOeoCwM1i_3x8lDg?sub_confirmation=1 Watch more Comedy Central Stand-Up: https://www.youtube.com/standup Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch full Comedy Central stand-up specials: https://www.cc.com/topic/stand-up Comedy Central Stand-Up: Anti-Bias Statement: https://www.cc.com/info/k32ti7/ccsu-anti-bias-statement
    https://wn.com/“I_Smoke_Weed,_And_I_Watch_Nature_Shows”_Greer_Barnes_Full_Special
    "Stand Up For America" || George Wallace Campaign Song
    2:23

    "Stand Up For America" || George Wallace Campaign Song

    • Order:
    • Duration: 2:23
    • Uploaded Date: 06 May 2023
    • views: 62808
    A campaign song of George C. Wallace, the infamous segregationalist who ran for president back in the 60s. This video is not made in support of segregation or any other concept like it. It's just made for fun and history.
    https://wn.com/Stand_Up_For_America_||_George_Wallace_Campaign_Song
    PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USA
    6:38

    PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USA

    • Order:
    • Duration: 6:38
    • Uploaded Date: 20 May 2023
    • views: 2743334
    EDIT: "Oh Hello!" Australia and NZ tour (Jun'23) tickets: https://linktr.ee/RahulDuaTour "New Comedy Special 2023-24" UK-EU Tour (Aug-Sep'23) tickets: https://linktr.ee/therahulduatour This video was shot in Boston, Massachusetts on 25th March, 2023. It was my first ever visit to the USA and I am very exited to present to you some of my favourite observations & experiences from the days I spent in the US as part of my Stand Up World Tour. These are observational jokes rehearsed and delivered in 12-13 shows, unlike conventional stand up content which takes a couple of years to perfect. So need all your love, appreciation and support as I deal with timezone differences, the concept of drinkable tap water and Costco as the one stop shop for all possible needs. Drop in a LIKE and SHARE the video if you've had similar experiences or know someone who went through something similar, and COMMENT with your favourite joke from the video. Part 2 out soon, so stay tuned! #rahuldua #usa #standupcomedy #nri #comedy #jokes #costco #timezone Shot by: Yours Truly & Mehtab Singh Edited by Gaurav Bhatt (https://www.instagram.com/gauravbhatt101) Sound Mixed, Mastered and Engineered by: Sreejit Menon (https://www.instagram.com/porcupinesree) Colour Grading: Karan Asnani (Myoho Films) (https://www.instagram.com/myohofilms) Thumbnail designed by: Hritik Singh (https://www.instagram.com/anonymous_friend7) Transcription and subtitles by : Pavitra Nayyar (https://www.instagram.com/pavizzaa/) and Shivansh Anand (https://www.instagram.com/shivansh.mov) Special Thanks: Anubhav Singh Bassi, Simran Singh, Imthiaz Sherrif, Sudhakar (OHO Productions)
    https://wn.com/Part_1_Rahul_Dua_In_America_Timezones,_Tap_Water_Costco_|_Standup_Comedy_|_USA
    Dumb Americans | George Carlin | Life Is Worth Losing (2005)
    10:58

    Dumb Americans | George Carlin | Life Is Worth Losing (2005)

    • Order:
    • Duration: 10:58
    • Uploaded Date: 31 Oct 2016
    • views: 30691659
    In this piece from George Carlin's special Life Is Worth Losing, the stand-up comedian covers the downfall of America from our "inheritance" of this beautiful country to consumerism and today's politicians, "It's a big club and you ain't in it." Life Is Worth Losing, stand-up comedian George Carlin's 13th HBO comedy special, was recorded at New York's Beacon Theatre in 2005. The special was simultaneously broadcast live.The special was nominated for Best Comedy Album at the 49th Annual Grammy Awards. Stream the full special here: https://tubitv.com/movies/499812/george-carlin-life-is-worth-losing George Carlin was a social commentator who challenged conventional wisdom and brought us face-to-face with our ingrained hypocrisies. There was no topic off limits to his keen observation, wordplay, goofy jabs and rants, whether it was drugs, war, politics, the accumulation of stuff or the way in which we use words. #georgecarlin #standupcomedy #americandream
    https://wn.com/Dumb_Americans_|_George_Carlin_|_Life_Is_Worth_Losing_(2005)
    Matt Rife | Only Fans (Full Comedy Special)
    1:03:40

    Matt Rife | Only Fans (Full Comedy Special)

    • Order:
    • Duration: 1:03:40
    • Uploaded Date: 20 Jan 2023
    • views: 16634804
    #MattRife #OnlyFans #ComedySpecial #StandUpComedy #FullComedyVideo Matt Rife is a twenty six year old Veteran of standup comedy. Beginning at the age of fifteen, Matt has developed an extremely unique perspective on everything from women, self awareness, race, and some of the worlds darker issues. And he delivers these ideas with a quick witted, almost charmingly naive performance that you don’t want to miss! Watch more from Matt Rife... Matthew Steven Rife: https://youtu.be/mBUqOhWLT7k Burb Patrol: https://youtu.be/SbFteTIScEw Download and stream Matt Rife’s new album 'Only Fans' on all your favorite services: https://800PGR.lnk.to/MattRifeID Follow Matt Rife at… Instagram: https://www.instagram.com/mattrife09/ Twitter: https://mobile.twitter.com/mattrife TikTok: https://www.tiktok.com/@matt_rife YouTube: https://www.youtube.com/c/MattRifeComedy Facebook: https://www.facebook.com/ItsMattRife/ © 2021 Matt Rife, All Rights Reserved Credits: Written and Performed by Matt Rife Director: Matt Rife Executive Producer: Matt Rife Associate Producer: Paul Elia Director of Photography: Evan Butka Sound Engineer: Nick Tipp Editor: Matt Larson Production Designer: Noble Liams Creative Consultant: Erik Griffin Camera Operators: Cory Pitkavish, Matt Richardson, Tyson Galland Gaffer: Cory Pitkavish Colorist: Evan Butka Re-Recording Mixer: Nick Tipp Audio Assistant: Luis Cardenas Production Assistants: Lauren Reznik, Marissa Forrester, Hannah Grigereit, Annette Galaviz Special Taping DJ: Stefan Ponce Grandpa Steve as himself Song: “Rage” by Vic Mensa, provided by Roc Nation Records, LLC Filmed at the MKM Cultural Arts Center Special thanks to My Mom, April Rife, Iliza Shlesinger, Finesse Mitchell, DeRay Davis, Skyler Stone, Gary Abdo, Jackson McQueen, Martin Amini, Claude Shires, James Blackmon, Mark Breta, Caroline Dobbs, Galina Antonova, Lynn Robnett, Jessica Michal, Troy Snuffer, Gabriela Teeka-Sing, Stacey Powell, Jeborah Diebold, MOnte Bainter, Greg Gibbs, Deshonte Oliver, Mike Morton, Nikki King, Joy Montano, Vlad Panin, Whitney Williams, Stella Khachatryan, Jenny Mesa, Denzel Whitaker, Kevin Fortuna, Peter Hamelett, Anthony Woods, Rickey Eugene Brown, Hannah Forsley, James Morris, Jonathan Billingsley, Neville Williams, Cassandra McNeeely, Marcitta A. Franklin-Sims, Emily &Jordan Wetzel-Smith, Manuele Mizzi, Geoff Samuels, Jefferson Yates, Clare Green, Seth Green, Milena Santana, Joprel Rollins, Karissa Lee Staples, LeeAnn Davis, Dom Trapani, Carlton Blackman, Enrique Salazar, Jack Fink, Jamie Masada, Shelby Frank, Martin Hall In Loving Memory of Ralphie May (1972 - 2017) Subscribe to 800 Pound Gorilla’s YouTube channel: https://www.youtube.com/@800pgm Subscribe to our weekly newsletter: https://800PGR.lnk.to/WeeklyLaughsID Follow 800 Pound Gorilla: Official Website: https://800poundgorillamedia.com/ Facebook: https://800PGR.lnk.to/FacebookID TikTok: https://800PGR.lnk.to/TikTokID Instagram: https://800PGR.lnk.to/InstagramID Twitter: https://800PGR.lnk.to/TwitterID
    https://wn.com/Matt_Rife_|_Only_Fans_(Full_Comedy_Special)
    Stand up to Ataxia     #ataxia #cleanchristiancomedy #trendingvideo
    14:39

    Stand up to Ataxia #ataxia #cleanchristiancomedy #trendingvideo

    • Order:
    • Duration: 14:39
    • Uploaded Date: 29 Aug 2023
    • views: 37
    #comedyvideos #performance #comedian #parody #comedyclass I recently participated in a fund raising event to combat Ataxia, a rare neurological condition. I really enjoyed the event, especially meeting another comedian, one who has the condition. He was extremely funny and a joy to be around. Thank you so much for watching this video. If you are a subscriber, thank you for subscribing. If you're not one, why not do so today? If you're looking for clean comedy for any event, I will bring my special brand of humor to your group. I'm a different kind of comedian. I am a comedic singer; I create and perform my own parodies. Plus, I charge the same for up to 60 minutes of performance time and will never cancel to take a higher fee somewhere else. I also offer a FUN-raising program, where any organization can make money by allowing me to entertain. I supply all of the information and guidance. Please share my YouTube channel @rongreenecomedian. For further information and to answer any questions you might have, please contact me ASAP at greeneron49@gmail.com or (770) 548-9450. Sincerely, Ron Greene
    https://wn.com/Stand_Up_To_Ataxia_Ataxia_Cleanchristiancomedy_Trendingvideo
    Andrew Schulz - INFAMOUS (2022) FULL SPECIAL
    59:50

    Andrew Schulz - INFAMOUS (2022) FULL SPECIAL

    • Order:
    • Duration: 59:50
    • Uploaded Date: 25 Sep 2022
    • views: 20527504
    GET THE MERCH FROM INFAMOUS https://fashun.shop The day has finally come. INFAMOUS is now free on YouTube. Enjoy! Thank you to everyone who supported INFAMOUS. Together we changed the game. #TrendingNow
    https://wn.com/Andrew_Schulz_Infamous_(2022)_Full_Special
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Most American Thing That’s Ever Happened - John Oliver
      5:48
      The Most American Thing That’s Ever Happened - John Oliverremove from playlist
    • USA vs. Brazil | Rafi Bastos | Stand Up Comedy
      11:08
      USA vs. Brazil | Rafi Bastos | Stand Up Comedyremove from playlist
    • Alpha Male Content is Insane | Alec Flynn | Stand Up Comedy
      10:03
      Alpha Male Content is Insane | Alec Flynn | Stand Up Comedyremove from playlist
    • “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Special
      21:16
      “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Specialremove from playlist
    • 2:23
      "Stand Up For America" || George Wallace Campaign Songremove from playlist
    • PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USA
      6:38
      PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USAremove from playlist
    • Dumb Americans | George Carlin | Life Is Worth Losing (2005)
      10:58
      Dumb Americans | George Carlin | Life Is Worth Losing (2005)remove from playlist
    • Matt Rife | Only Fans (Full Comedy Special)
      1:03:40
      Matt Rife | Only Fans (Full Comedy Special)remove from playlist
    • Stand up to Ataxia     #ataxia #cleanchristiancomedy #trendingvideo
      14:39
      Stand up to Ataxia #ataxia #cleanchristiancomedy #trendingvideoremove from playlist
    • Andrew Schulz - INFAMOUS (2022) FULL SPECIAL
      59:50
      Andrew Schulz - INFAMOUS (2022) FULL SPECIALremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Most American Thing That’s Ever Happened - John Oliver

    John Oliver contemplates America’s legacy and describes an uber-American event that took place off the coast of South Carolina. John Oliver’s Stand-Up Show is available on Pluto TV: https://pluto.onelink.me/kmdU/df4d0352?c=tw Subscribe to Comedy Central Stand-Up: https://www.youtube.com/channel/UCtw7q4SyOeoCwM1i_3x8lDg?sub_confirmation=1 About John Oliver’s New York Stand-Up Show: John Oliver hosts some of the best comedians around, including Reggie Watts, Pete Holmes, Rory Scovel and Paul F. Tompkins, in this stand-up series. Watch more Comedy Central Stand-Up: https://www.youtube.com/standup Follow Comedy Central Stand-Up: Twitter: https://twitter.com/standup Facebook: https://www.facebook.com/standup Instagram: https://www.instagram.com/ccstandup Watch full Comedy Central stand-up specials: https://www.cc.com/topic/stand-up #StandUp #StandUp . Comedy Central Stand-Up: Anti-Bias Statement: https://www.cc.com/info/k32ti7/ccsu-anti-bias-statement
    5:48
    The Most American Thing That’s Ever Happened - John Oliver
    John Oliver contemplates America’s legacy and describes an uber-American event that took p...
    published: 16 Jun 2019
    Play in Full Screen
    11:08
    USA vs. Brazil | Rafi Bastos | Stand Up Comedy
    Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on event...
    published: 01 Mar 2023
    Play in Full Screen
    10:03
    Alpha Male Content is Insane | Alec Flynn | Stand Up Comedy
    Comedy is at its best when there's a surprise – that's why Don't Tell Comedy puts on event...
    published: 22 May 2023
    Play in Full Screen
    21:16
    “I Smoke Weed, and I Watch Nature Shows” - Greer Barnes - Full Special
    Greer Barnes talks about smoking weed, the plight of the bees and wanting to meet aliens. ...
    published: 24 Mar 2023
    Play in Full Screen
    2:23
    "Stand Up For America" || George Wallace Campaign Song
    A campaign song of George C. Wallace, the infamous segregationalist who ran for president ...
    published: 06 May 2023
    Play in Full Screen
    6:38
    PART 1 - RAHUL DUA IN AMERICA - TIMEZONES, TAP WATER & COSTCO | StandUp Comedy | USA
    EDIT: "Oh Hello!" Australia and NZ tour (Jun'23) tickets: https://linktr.ee/RahulDuaTour ...
    published: 20 May 2023
    Play in Full Screen
    10:58
    Dumb Americans | George Carlin | Life Is Worth Losing (2005)
    In this piece from George Carlin's special Life Is Worth Losing, the stand-up comedian cov...
    published: 31 Oct 2016
    Play in Full Screen
    1:03:40
    Matt Rife | Only Fans (Full Comedy Special)
    #MattRife #OnlyFans #ComedySpecial #StandUpComedy #FullComedyVideo Matt Rife is a twenty s...
    published: 20 Jan 2023
    Play in Full Screen
    14:39
    Stand up to Ataxia #ataxia #cleanchristiancomedy #trendingvideo
    #comedyvideos #performance #comedian #parody #comedyclass I recently participated in a f...
    published: 29 Aug 2023
    Play in Full Screen
    59:50
    Andrew Schulz - INFAMOUS (2022) FULL SPECIAL
    GET THE MERCH FROM INFAMOUS https://fashun.shop The day has finally come. INFAMOUS is now...
    published: 25 Sep 2022
    Play in Full Screen

    Stand Up

    Stand Up may refer to:

  • Stand-up comedy
  • Stand up (military), the activation of a unit or command structure
  • Stand-up fighting, a type of hand-to-hand combat
  • Stand-up meeting, a daily team meeting, in agile software development
  • Organizations

  • STAND UP (organization), an organization trying to improve America's education system
  • Stand Up and Take Action, a campaign trying to expedite the UN's millennium development goals
  • Stand Up! for Democracy in DC Coalition, a grassroots advocacy group
  • StandUp For Kids, a non-profit organization rescuing homeless and at-risk youth in America
  • The Ben Cohen StandUp Foundation, a non-profit organization that aims to prevent bullying
  • Television and film

  • Stand Up, a 1995 installment of the American anthology series CBS Schoolbreak Special
  • Stand Up!!, a 2003 Japanese TV drama
  • Stand Up, a 2007 American film starring Modi Rosenfeld
  • Stand Up (film), a 2008 British film by Joseph Pierce
  • The Stand Up, a 2011 comedy/drama written and directed by David Wexler
  • Music

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×