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

How to Win!

How to WIN! is Maria Bamford's second comedy album, following The Burning Bridges Tour. It was recorded at Cap City Comedy Club in Austin, Texas November 15-19, 2005.

Track listing

  • "Opening Party" – 2:15
  • "I Heart My Country" – 3:06
  • "Mental Makeup" – 2:15
  • "Competitive Living" – 2:22
  • "Giant Corporation" – 3:38
  • "Self Employed" – 3:12
  • "Saddest Place in the World" – 1:52
  • "Your Comedy Club" – 1:51
  • "Fun Being Evil" – 2:28
  • "Life in LA" – 2:39
  • "TV" – 2:33
  • "Super Confident People" – 1:51
  • "The-Rapist" – 1:15
  • "Alicia Keys" – 2:42
  • "Credit Test" – 2:11
  • "Depression" – 2:14
  • "Dale Carnegie" – 2:01
  • "Dad" – 3:18
  • "Sister Sarah" – 3:02
  • "Arch Enemy from High School" – 1:31
  • "Aging" – 1:25
  • Personnel

  • Maria Bamford – performer
  • Britt Lundquist – photography
  • John Machnik engineering, mastering, photography
  • Ian Rans – design
  • Dan Schlissel production, editing
  • References


    Podcasts:

    • How to Win (At ANYTHING)

      Want to SCALE your business? Go here: https://www.acquisition.com/yta Want to START a business? Go here: https://skool.com/games If you’re new to my channel, my name is Alex Hormozi. I’m the founder and managing partner of Acquisition.com. It’s a family office, which is just a formal way of saying we invest our own money into companies. Our 10 portfolio companies bring in over $250,000,000+ per year. Our ownership stake varies between 20% and 100% of them. Given this is a YT channel, and anyone can claim anything, I’ll give you some stuff you can google to verify below. How I got here… 21: Graduated Vanderbilt in 3 years Magna Cum Laude, and took a fancy consulting job. 23 yrs old: Left my fancy consulting job to start a business (a gym). 24 yrs old: Opened 5 gym locations. 26 yrs old:...

      published: 09 Dec 2023
    • How to win Chess in 3 moves!

      Learn the how to win chess in 3 moves quickly and concisely - This video has no distractions, just the technique. Play chess online for free here: https://link.triplesgames.com/Play-Chess-Online (As an chess.com affiliate we earn from qualifying subscriptions) Don't own Chess? amazon.com - https://amzn.to/2RMQwtO amazon.ca - https://amzn.to/3gCiKDV amazon.uk - https://amzn.to/3Gi02iG amazon.es - https://amzn.to/3MiurhD amazon.de - https://amzn.to/3MkqskD amazon.fr - https://amzn.to/3MenpKR amazon.it - https://amzn.to/3MeB6JR amazon.nl - https://amzn.to/3Cl9D4s amazon.se - https://amzn.to/3MiuoSZ amazon.pl - https://amzn.to/3RMHFV8 amazon.com.br - https://amzn.to/3VeYoU6 amazon.sg - https://amzn.to/3HAqZya amazon.au - https://amzn.to/3HzmvI7 amazon.co.jp - https://amzn.to/3XH...

      published: 11 Jul 2022
    • Simple trick to win tic-tac-toe 🏆 👌

      tic tac toe tic tac toe tricks tic tac toe game how to win tic tac toe every time tic-tac-toe how to always win tic tac toe how to win tic tac toe how to win every tic tac toe game OX game trick XO game tricks how to win in tic tac toe every time how to play tic tac toe XO game XO tricks XO game tricks

      published: 13 Jul 2022
    • How To Win Chess in 2 Moves #Shorts

      In this video we show you how to win chess in 2 moves! This two move checkmate only works if your opponent moves their pieces in a certain way...but if they do...you're in good shape! Follow us here 😀 : ✅Sign up for FREE online play: http://www.Chess.com 💜Check us out on Twitch: https://www.twitch.tv/chess 📸Follow us on Instagram: https://www.instagram.com/wwwchesscom 📱Like us on Facebook: https://www.facebook.com/chess 💙Follow us on Twitter: https://twitter.com/chesscom #chess #checkmate #shorts

      published: 13 Nov 2020
    • How To Win Chess In 2 Moves 😨

      Hey there, I'm Troni and in this video I explain how to win chess in 2 moves! Be sure to leave a like and subscribe if you enjoy! 😄 #shorts #short #chess

      published: 26 Aug 2024
    • How to win a school fight

      published: 29 Jan 2023
    • The Secret to Winning in Life - (King's Court Theory)

      Sponsored By Betterhelp: Get 10% off your first month of therapy at http://BetterHelp.com/ImprovementPill Join Our Private Community: https://www.patreon.com/ImprovementPill/ Voiced by: Rich Written by: Rich Animated by: @pepey_sg 👉 My FREE Storytelling Course (Watch It For Free Via Free Trial): https://www.skillshare.com/r/user/improvementpill?gr_tch_ref=on&gr_trp=on Sign Up For My Newsletter (Get A Free Mini-Course): http://improvementpill.net/programs Tamed Course (FREE Habit Building Course): https://youtu.be/m8JjuyRIxOg BeeFriend Course (FREE Social Skills Course): https://www.youtube.com/watch?v=sHfGgOfmbx4&list=PLE_vQWWxgaiHbUFDuNnqxfui3lrE2jjwO&index=1 For Business/Animation Job Inquiries: Email Me At ImprovementPill@Gmail.com Intro: (00:00) Council Of Advisors: (00:51)...

      published: 03 Aug 2022
    • How to win Chess in 4 moves!

      Learn the how to win chess in 4 moves quickly and concisely - This video has no distractions, just the technique. Play chess online for free here: https://link.triplesgames.com/Play-Chess-Online (As an chess.com affiliate we earn from qualifying subscriptions) Don't own Chess? amazon.com - https://amzn.to/2RMQwtO amazon.ca - https://amzn.to/3gCiKDV amazon.uk - https://amzn.to/3Gi02iG amazon.es - https://amzn.to/3MiurhD amazon.de - https://amzn.to/3MkqskD amazon.fr - https://amzn.to/3MenpKR amazon.it - https://amzn.to/3MeB6JR amazon.nl - https://amzn.to/3Cl9D4s amazon.se - https://amzn.to/3MiuoSZ amazon.pl - https://amzn.to/3RMHFV8 amazon.com.br - https://amzn.to/3VeYoU6 amazon.sg - https://amzn.to/3HAqZya amazon.au - https://amzn.to/3HzmvI7 amazon.co.jp - https://amzn.to/3XH...

      published: 07 Jul 2022
    • How To Win The Popular Boy ❤️

      published: 02 Oct 2024
    • How to Win a Street Fight in Seconds

      How to win a street fight with just 1 punch in seconds.

      published: 11 Feb 2024
    How to Win (At ANYTHING)
    47:25

    How to Win (At ANYTHING)

    • Order:
    • Duration: 47:25
    • Uploaded Date: 09 Dec 2023
    • views: 1604611
    Want to SCALE your business? Go here: https://www.acquisition.com/yta Want to START a business? Go here: https://skool.com/games If you’re new to my channel, my name is Alex Hormozi. I’m the founder and managing partner of Acquisition.com. It’s a family office, which is just a formal way of saying we invest our own money into companies. Our 10 portfolio companies bring in over $250,000,000+ per year. Our ownership stake varies between 20% and 100% of them. Given this is a YT channel, and anyone can claim anything, I’ll give you some stuff you can google to verify below. How I got here… 21: Graduated Vanderbilt in 3 years Magna Cum Laude, and took a fancy consulting job. 23 yrs old: Left my fancy consulting job to start a business (a gym). 24 yrs old: Opened 5 gym locations. 26 yrs old: Closed down 6th gym. Lost everything. 26 yrs old: Got back to launching gyms (launched 33). Then, lost everything for a 2nd time. 26 yrs old: In desperation, started licensing model as a hail mary. It worked. 27 yrs old: "Gym Launch" does $3M profit the next 6 months. Then $17M profit next 12 months. 28 yrs old: Started Prestige Labs. $20M the first year. 29 yrs old: Launched ALAN, a software company for agencies to work leads for customers. Scaled to $1.7mmo within 6 months. 31 yrs old: Sold 75% of UseAlan to a strategic buyer in an all stock deal. 31 yrs old: Sold 66% of Gym Launch & Prestige Labs at $46.2M valuation in all-cash deal to American Pacific Group. (you can google it) 31 yrs old: Started our family office Acquisition.com. We invest and scale companies using the $42M in distributions we had taken + the cash from the $46.2M exit. 32 yrs old: Started making free content showing how we grow companies to make real business education accessible to everyone (and) to attract business owners to invest or scale their businesses. 34 yrs old: I became co-owner of https://Skool.com to help the many people who want to start a business online do so. Today: Our portfolio now does $200M/yr between 10 companies. The largest doing $100M/yr the smallest doing $5M per year. Our ownership varies between 20% and 100% ownership of the companies. Many of them we invested in early and helped grow (which is how we make our money - not youtube videos). To all the gladiators in the arena, we’re all in the middle of writing our own stories. The worse the monsters, the more epic the story. You either get an epic outcome or an epic story. Both mean you win. Keep crushing. May your desires be greater than your obstacles. Never quit, Alex *FULL DISCLOSURE* I make content to make money - just - on a longer time horizon than most. I want to build trust with business owners so we can find the best ones and help them scale. And if they’re awesome, write them a check and go all the way as partners.
    https://wn.com/How_To_Win_(At_Anything)
    How to win Chess in 3 moves!
    0:25

    How to win Chess in 3 moves!

    • Order:
    • Duration: 0:25
    • Uploaded Date: 11 Jul 2022
    • views: 564759
    Learn the how to win chess in 3 moves quickly and concisely - This video has no distractions, just the technique. Play chess online for free here: https://link.triplesgames.com/Play-Chess-Online (As an chess.com affiliate we earn from qualifying subscriptions) Don't own Chess? amazon.com - https://amzn.to/2RMQwtO amazon.ca - https://amzn.to/3gCiKDV amazon.uk - https://amzn.to/3Gi02iG amazon.es - https://amzn.to/3MiurhD amazon.de - https://amzn.to/3MkqskD amazon.fr - https://amzn.to/3MenpKR amazon.it - https://amzn.to/3MeB6JR amazon.nl - https://amzn.to/3Cl9D4s amazon.se - https://amzn.to/3MiuoSZ amazon.pl - https://amzn.to/3RMHFV8 amazon.com.br - https://amzn.to/3VeYoU6 amazon.sg - https://amzn.to/3HAqZya amazon.au - https://amzn.to/3HzmvI7 amazon.co.jp - https://amzn.to/3XH24yE (As an Amazon Affiliate, I earn from qualifying purchases) Moves: You must play as white and black must make these specific moves. On your first turn, move your pawn to e4. Black responds with their pawn to E5. Move your queen out to H5. Now black must move their king to E7. Move your queen across and capture the pawn at E5 for checkmate.
    https://wn.com/How_To_Win_Chess_In_3_Moves
    Simple trick to win tic-tac-toe  🏆 👌
    0:14

    Simple trick to win tic-tac-toe 🏆 👌

    • Order:
    • Duration: 0:14
    • Uploaded Date: 13 Jul 2022
    • views: 644171
    tic tac toe tic tac toe tricks tic tac toe game how to win tic tac toe every time tic-tac-toe how to always win tic tac toe how to win tic tac toe how to win every tic tac toe game OX game trick XO game tricks how to win in tic tac toe every time how to play tic tac toe XO game XO tricks XO game tricks
    https://wn.com/Simple_Trick_To_Win_Tic_Tac_Toe_🏆_👌
    How To Win Chess in 2 Moves #Shorts
    0:31

    How To Win Chess in 2 Moves #Shorts

    • Order:
    • Duration: 0:31
    • Uploaded Date: 13 Nov 2020
    • views: 16200697
    In this video we show you how to win chess in 2 moves! This two move checkmate only works if your opponent moves their pieces in a certain way...but if they do...you're in good shape! Follow us here 😀 : ✅Sign up for FREE online play: http://www.Chess.com 💜Check us out on Twitch: https://www.twitch.tv/chess 📸Follow us on Instagram: https://www.instagram.com/wwwchesscom 📱Like us on Facebook: https://www.facebook.com/chess 💙Follow us on Twitter: https://twitter.com/chesscom #chess #checkmate #shorts
    https://wn.com/How_To_Win_Chess_In_2_Moves_Shorts
    How To Win Chess In 2 Moves 😨
    0:23

    How To Win Chess In 2 Moves 😨

    • Order:
    • Duration: 0:23
    • Uploaded Date: 26 Aug 2024
    • views: 1851786
    Hey there, I'm Troni and in this video I explain how to win chess in 2 moves! Be sure to leave a like and subscribe if you enjoy! 😄 #shorts #short #chess
    https://wn.com/How_To_Win_Chess_In_2_Moves_😨
    How to win a school fight
    0:07

    How to win a school fight

    • Order:
    • Duration: 0:07
    • Uploaded Date: 29 Jan 2023
    • views: 2284675
    https://wn.com/How_To_Win_A_School_Fight
    The Secret to Winning in Life - (King's Court Theory)
    8:20

    The Secret to Winning in Life - (King's Court Theory)

    • Order:
    • Duration: 8:20
    • Uploaded Date: 03 Aug 2022
    • views: 506331
    Sponsored By Betterhelp: Get 10% off your first month of therapy at http://BetterHelp.com/ImprovementPill Join Our Private Community: https://www.patreon.com/ImprovementPill/ Voiced by: Rich Written by: Rich Animated by: @pepey_sg 👉 My FREE Storytelling Course (Watch It For Free Via Free Trial): https://www.skillshare.com/r/user/improvementpill?gr_tch_ref=on&gr_trp=on Sign Up For My Newsletter (Get A Free Mini-Course): http://improvementpill.net/programs Tamed Course (FREE Habit Building Course): https://youtu.be/m8JjuyRIxOg BeeFriend Course (FREE Social Skills Course): https://www.youtube.com/watch?v=sHfGgOfmbx4&list=PLE_vQWWxgaiHbUFDuNnqxfui3lrE2jjwO&index=1 For Business/Animation Job Inquiries: Email Me At ImprovementPill@Gmail.com Intro: (00:00) Council Of Advisors: (00:51) Advisor #1: (01:12) Advisor #2: (02:23) Advisor #3: (03:24) Advisor #4: (05:20) Advisor #5: (06:37) Outro: (07:55) #gameoflife #howtowin
    https://wn.com/The_Secret_To_Winning_In_Life_(King's_Court_Theory)
    How to win Chess in 4 moves!
    0:26

    How to win Chess in 4 moves!

    • Order:
    • Duration: 0:26
    • Uploaded Date: 07 Jul 2022
    • views: 303891
    Learn the how to win chess in 4 moves quickly and concisely - This video has no distractions, just the technique. Play chess online for free here: https://link.triplesgames.com/Play-Chess-Online (As an chess.com affiliate we earn from qualifying subscriptions) Don't own Chess? amazon.com - https://amzn.to/2RMQwtO amazon.ca - https://amzn.to/3gCiKDV amazon.uk - https://amzn.to/3Gi02iG amazon.es - https://amzn.to/3MiurhD amazon.de - https://amzn.to/3MkqskD amazon.fr - https://amzn.to/3MenpKR amazon.it - https://amzn.to/3MeB6JR amazon.nl - https://amzn.to/3Cl9D4s amazon.se - https://amzn.to/3MiuoSZ amazon.pl - https://amzn.to/3RMHFV8 amazon.com.br - https://amzn.to/3VeYoU6 amazon.sg - https://amzn.to/3HAqZya amazon.au - https://amzn.to/3HzmvI7 amazon.co.jp - https://amzn.to/3XH24yE (As an Amazon Affiliate, I earn from qualifying purchases) Moves: When playing as white, the goal is to utilize the weakness of F7. Move your pawn in front of your king out 2 spaces to E4. Slide your bishop out 3 spaces to c4. Move your queen out 4 spaces to H5 or 2 spaces to F3. Then move your queen to capture the pawn in F7.
    https://wn.com/How_To_Win_Chess_In_4_Moves
    How To Win The Popular Boy ❤️
    0:24

    How To Win The Popular Boy ❤️

    • Order:
    • Duration: 0:24
    • Uploaded Date: 02 Oct 2024
    • views: 8947814
    https://wn.com/How_To_Win_The_Popular_Boy_❤️
    How to Win a Street Fight in Seconds
    0:25

    How to Win a Street Fight in Seconds

    • Order:
    • Duration: 0:25
    • Uploaded Date: 11 Feb 2024
    • views: 2424648
    How to win a street fight with just 1 punch in seconds.
    https://wn.com/How_To_Win_A_Street_Fight_In_Seconds
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • How to Win (At ANYTHING)
      47:25
      How to Win (At ANYTHING)remove from playlist
    • How to win Chess in 3 moves!
      0:25
      How to win Chess in 3 moves!remove from playlist
    • Simple trick to win tic-tac-toe  🏆 👌
      0:14
      Simple trick to win tic-tac-toe 🏆 👌remove from playlist
    • How To Win Chess in 2 Moves #Shorts
      0:31
      How To Win Chess in 2 Moves #Shortsremove from playlist
    • How To Win Chess In 2 Moves 😨
      0:23
      How To Win Chess In 2 Moves 😨remove from playlist
    • The Secret to Winning in Life - (King's Court Theory)
      8:20
      The Secret to Winning in Life - (King's Court Theory)remove from playlist
    • How to win Chess in 4 moves!
      0:26
      How to win Chess in 4 moves!remove from playlist
    PLAYLIST TIME: 0:00 / 58:40

    How to Win (At ANYTHING)

    Want to SCALE your business? Go here: https://www.acquisition.com/yta Want to START a business? Go here: https://skool.com/games If you’re new to my channel, my name is Alex Hormozi. I’m the founder and managing partner of Acquisition.com. It’s a family office, which is just a formal way of saying we invest our own money into companies. Our 10 portfolio companies bring in over $250,000,000+ per year. Our ownership stake varies between 20% and 100% of them. Given this is a YT channel, and anyone can claim anything, I’ll give you some stuff you can google to verify below. How I got here… 21: Graduated Vanderbilt in 3 years Magna Cum Laude, and took a fancy consulting job. 23 yrs old: Left my fancy consulting job to start a business (a gym). 24 yrs old: Opened 5 gym locations. 26 yrs old: Closed down 6th gym. Lost everything. 26 yrs old: Got back to launching gyms (launched 33). Then, lost everything for a 2nd time. 26 yrs old: In desperation, started licensing model as a hail mary. It worked. 27 yrs old: "Gym Launch" does $3M profit the next 6 months. Then $17M profit next 12 months. 28 yrs old: Started Prestige Labs. $20M the first year. 29 yrs old: Launched ALAN, a software company for agencies to work leads for customers. Scaled to $1.7mmo within 6 months. 31 yrs old: Sold 75% of UseAlan to a strategic buyer in an all stock deal. 31 yrs old: Sold 66% of Gym Launch & Prestige Labs at $46.2M valuation in all-cash deal to American Pacific Group. (you can google it) 31 yrs old: Started our family office Acquisition.com. We invest and scale companies using the $42M in distributions we had taken + the cash from the $46.2M exit. 32 yrs old: Started making free content showing how we grow companies to make real business education accessible to everyone (and) to attract business owners to invest or scale their businesses. 34 yrs old: I became co-owner of https://Skool.com to help the many people who want to start a business online do so. Today: Our portfolio now does $200M/yr between 10 companies. The largest doing $100M/yr the smallest doing $5M per year. Our ownership varies between 20% and 100% ownership of the companies. Many of them we invested in early and helped grow (which is how we make our money - not youtube videos). To all the gladiators in the arena, we’re all in the middle of writing our own stories. The worse the monsters, the more epic the story. You either get an epic outcome or an epic story. Both mean you win. Keep crushing. May your desires be greater than your obstacles. Never quit, Alex *FULL DISCLOSURE* I make content to make money - just - on a longer time horizon than most. I want to build trust with business owners so we can find the best ones and help them scale. And if they’re awesome, write them a check and go all the way as partners.
    47:25
    How to Win (At ANYTHING)
    Want to SCALE your business? Go here: https://www.acquisition.com/yta Want to START a busi...
    published: 09 Dec 2023
    Play in Full Screen
    0:25
    How to win Chess in 3 moves!
    Learn the how to win chess in 3 moves quickly and concisely - This video has no distractio...
    published: 11 Jul 2022
    Play in Full Screen
    0:14
    Simple trick to win tic-tac-toe 🏆 👌
    tic tac toe tic tac toe tricks tic tac toe game how to win tic tac toe every time tic-tac-...
    published: 13 Jul 2022
    Play in Full Screen
    0:31
    How To Win Chess in 2 Moves #Shorts
    In this video we show you how to win chess in 2 moves! This two move checkmate only work...
    published: 13 Nov 2020
    Play in Full Screen
    0:23
    How To Win Chess In 2 Moves 😨
    Hey there, I'm Troni and in this video I explain how to win chess in 2 moves! Be sure to l...
    published: 26 Aug 2024
    Play in Full Screen
    0:07
    How to win a school fight
    published: 29 Jan 2023
    Play in Full Screen
    8:20
    The Secret to Winning in Life - (King's Court Theory)
    Sponsored By Betterhelp: Get 10% off your first month of therapy at http://BetterHelp.com/...
    published: 03 Aug 2022
    Play in Full Screen
    0:26
    How to win Chess in 4 moves!
    Learn the how to win chess in 4 moves quickly and concisely - This video has no distractio...
    published: 07 Jul 2022
    Play in Full Screen
    0:24
    How To Win The Popular Boy ❤️
    published: 02 Oct 2024
    Play in Full Screen
    0:25
    How to Win a Street Fight in Seconds
    How to win a street fight with just 1 punch in seconds.
    published: 11 Feb 2024
    Play in Full Screen

    How to Win!

    How to WIN! is Maria Bamford's second comedy album, following The Burning Bridges Tour. It was recorded at Cap City Comedy Club in Austin, Texas November 15-19, 2005.

    Track listing

  • "Opening Party" – 2:15
  • "I Heart My Country" – 3:06
  • "Mental Makeup" – 2:15
  • "Competitive Living" – 2:22
  • "Giant Corporation" – 3:38
  • "Self Employed" – 3:12
  • "Saddest Place in the World" – 1:52
  • "Your Comedy Club" – 1:51
  • "Fun Being Evil" – 2:28
  • "Life in LA" – 2:39
  • "TV" – 2:33
  • "Super Confident People" – 1:51
  • "The-Rapist" – 1:15
  • "Alicia Keys" – 2:42
  • "Credit Test" – 2:11
  • "Depression" – 2:14
  • "Dale Carnegie" – 2:01
  • "Dad" – 3:18
  • "Sister Sarah" – 3:02
  • "Arch Enemy from High School" – 1:31
  • "Aging" – 1:25
  • Personnel

  • Maria Bamford – performer
  • Britt Lundquist – photography
  • John Machnik engineering, mastering, photography
  • Ian Rans – design
  • Dan Schlissel production, editing
  • References


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

    Latest News for: how to win!

    Edit

    Eric Trump Reveals How to 'Win' Tariff Negotiations With His Dad

    Newsweek 05 Apr 2025
    Donald Trump's son Eric revealed how tariff-hit countries can "win" in the trade negotiations with his father ....
    Edit

    How to win a bidding war on the Peninsula without cash

    Mountain View Voice 04 Apr 2025
    ... how often they occur and whether cash deals are becoming more common.
    Edit

    How to win the Champions League: Liverpool 2019

    BBC News 03 Apr 2025
    Watch the trailer for the new BBC documentary How to win the Champions League. Liverpool 2019 ... .
    Edit

    How to Win the Champions League

    BBC News 03 Apr 2025
    How Jurgen Klopp galvanised Liverpool to deliver a sixth European title ... .
    Edit

    Dubai World Cup 2025: How to win the Style Stakes this year

    Khaleejtimes 03 Apr 2025
    Women‭, ‬on the other hand‭, ‬adhered to a similarly‭ ‬strict but more stylistically varied code‭ ... ‬The focus was‭ ‬on elegance and modesty‭, ‬with outfits designed not to overshadow their wearer’s social standing but to appropriately enhance it‭.
    Edit

    Tipsheet: Young Blues learn how to win while prospects elsewhere learn to lose

    St Louis Post-Dispatch 01 Apr 2025
    The Blues are assembling their next team nucleus in a winning atmosphere. Elsewhere in the NHL, many prospects are stuck in a doom loop ... .
    Edit

    Paul Rudd on How to Win Friends and Influence Hollywood

    Wall Street Journal 01 Apr 2025
    The actor fits in with film’s freaks, theater geeks, jocks and popular kids. He shares his secret to being the most beloved man in the industry ... .
    Edit

    How to Win in Blood Debt – All Classes Guide

    The Escapist 01 Apr 2025
    If you also like killing sprees and action-packed content, and you are not afraid to die many, many times, dive into our guide on how to win in Blood Debt, and start collecting those debts in blood ... How to Win Blood Debt With All Classes.
    Edit

    Chipotle Burrito Vault Answers: How to Win Free Food From Rewards Game

    Newsweek 31 Mar 2025
    Through 11.59 p.m. April 2, fans can play Chipotle's Burrito Vault once a day to win a share of more than $1 million in free food ....
    Edit

    How to win the technical talent battle (ADS Group Ltd)

    Public Technologies 28 Mar 2025
    ). The text version of this document is not available ... Disclaimer ... (noodl. 123315671) .
    Edit

    How to win being the beast everything God isn't

    Bitchute 27 Mar 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    how to win every game in valorant #shorts

    Bitchute 22 Mar 2025
    Go to the source via the article link to view the video or click the video icon ....
    ×