- published: 27 Apr 2019
- views: 3476194
'+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; })); }); -->
David Wallace is a recurring fictional character in the American comedy series The Office, portrayed by Andy Buckley. Wallace is introduced in the second season as the new chief financial officer of Dunder Mifflin. Wallace is named after the late David Foster Wallace, the favorite author of John Krasinski. His character is established as a wealthy executive at the corporate headquarters in New York with an opulent home and wife, Rachel, and son. Despite his differing lifestyle from the members of the Scranton branch, David tolerates and understands the eccentricities and flaws of Regional Manager Michael Scott, and appreciates employees Jim Halpert and Toby Flenderson. He is let go in the sixth season following the absorption of Dunder Mifflin by Sabre. He later sells his patent for "Suck it" to the US military and later acquires Dunder Mifflin for an undisclosed sum of money and becomes CEO in the eighth season finale, "Free Family Portrait Studio".
David or Dave Wallace may refer to:
David Wallace (born November 23, 1958) is an American actor.
Wallace was born in Miami, Florida.
Wallace is married to actress Lisa Trusel since 1986. They have 4 children: Ryan Elizabeth, Benjamin, Emma and Joseph.
His first television role was in the 1980 television movie The Babysitter with Stephanie Zimbalist and William Shatner. Wallace starred on the soap operas Days of Our Lives as Todd Chandler from 1985–1986, and General Hospital as Dr. Tom Hardy from 1987-1993.
The first feature film he starred in was the 1979 comedy "Money to Burn"; he appeared in the 1982 horror movie Humongous as Eric Simmons and he starred in the 1983 horror movie Mortuary.
He has made guest appearances on television series such as Vega$, The Facts of Life, Diff'rent Strokes, The Powers of Matthew Star, Hart to Hart, Matt Houston, Hotel, JAG and The Young and the Restless.
David Wallace (born in Kilkenny, Ireland, May 1982) is an Irish composer/conductor/instrumentalist/dancer.
He graduated from the Cork School of Music with a BMus (hons) in 2005 having studied composition with Séamas de Barra and Rhona Clarke and conducting with Alan Cutts and Geoffrey Spratt. During his undergraduate he also studied violin with Cornelia Zanidache and harp with Bonnie Shaljean. He was awarded an MMus from the Guildhall School of Music and Drama (2005/06) where he was Composition and Conducting Fellow for the academic year 2006/07. He studied composition with Richard Baker and Julian Philips. His works have been performed in Europe, America and Asia.
Wallace is renowned for his vocal music particularly song/lieder and has written many song cycles for international artists such as Norah King (Songs from the Rolling Deep) and Rebecca van den Berg (Trí Caoineadh and Tagore Love Songs). In 2006 he won the 10th Tracey Chadwell Memorial Prize for his song cycle Trí Caoineadh.
David (Bulgarian: Давид) (died 976) was a Bulgarian noble, brother of Emperor Samuel and eldest son of komes Nicholas. After the disastrous invasion of Rus' armies and the fall of North-eastern Bulgaria under Byzantine occupation in 971, he and his three younger brothers took the lead of the defence of the country. They executed their power together and each of them governed and defended a separate region. He ruled the southern-most parts of the realm from Prespa and Kastoria and was responsible for the defence the dangerous borders with Thessalonica and Thessaly. In 976 he participated in the major assault against the Byzantine Empire but was killed by vagrant Vlachs between Prespa and Kostur.
However, there's also another version about David’s origin. David gains the title "comes" during his service in the Byzantine army which recruited many Armenians from the Eastern region of the empire. The 11th-century historian Stepanos Asoghik wrote that Samuel had one brother, and they were Armenians from the district Derjan. This version is supported by the historians Nicholas Adontz, Jordan Ivanov, and Samuil's Inscription where it’s said that Samuel’s brother is David. Also, the historians Yahya and Al Makin clearly distinguish the race of Samuel and David (the Comitopouli) from the one of Moses and Aaron (the royal race):
David (Spanish pronunciation: [daˈβið]) officially San José de David is a city and corregimiento located in the west of Panama. It is the capital of the province of Chiriquí and has an estimated population of 144,858 inhabitants as confirmed in 2013. It is a relatively affluent city with a firmly established, dominant middle class and a very low unemployment and poverty index. The Pan-American Highway is a popular route to David.
The development of the banking sector, public construction works such as the expansion of the airport and the David-Boquete highway alongside the growth of commercial activity in the city have increased its prominence as one of the fastest growing regions in the country. The city is currently the economic center of the Chiriqui province and produces more than half the gross domestic product of the province, which totals 2.1 billion. It is known for being the third-largest city in the country both in population and by GDP and for being the largest city in Western Panama.
David Abraham Cheulkar (1909 – 28 December 1981), popularly known as David, was a Jewish-Indian Hindi film actor and a member of Mumbai's Marathi speaking Bene Israel community. In a career spanning four decades, he played mostly character roles, starting with 1941 film Naya Sansar, and went on to act in over 110 films, including memorable films like, Gol Maal (1979), Baton Baton Mein (1979) and Boot Polish (1954) for which he was awarded the 1955 Filmfare Best Supporting Actor Award.
David graduated from the University of Bombay with a Bachelor of Arts degree in the year 1930. After a six year unsuccessful struggle to land himself a job, he decided to try his luck in the Hindi film industry by becoming a professional actor. During these years of struggle, he also managed to obtain a degree in law from the Government Law College.
Finally, on 15 January 1937, with the help of his close friend Mr. Nayampalli, a veteran character actor, he managed to land himself his first role in a movie. The movie was Zambo and it was being produced and directed by Mohan Bhavnani who was the Chief Producer of the Films Division of the Government of India.
This guy has sure had to deal with a lot to boss the un-bossable Michael Scott. So it was only right that we made this for the CFO of Dunder Mifflin, David Wallace. Have we left out any of your favourite moments, or you have any amazing ideas for future content? then please.... keep it to yourself.....No please comment below. Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK Subscribe: https://www.youtube.com/channel/UCa90xqK2odw1KV5wHU9WRhg?sub_confirmation=1 Welcome to The Office Channel! This channel is dedicated to everything The Office, from behind-the-scenes videos to fan theories. We'll be uploading new videos every week, so be sure to subscribe and hit the bell icon to be notified when ...
David Wallace (Andy Buckley) is furious to learn that criminal Ryan (BJ Novak) has been re-hired by Michael Scott (Steve Carell). Season 5, Episode 1&2 'Weight Loss' - Staffers in the Scranton branch of Dunder Mifflin become obsessed with their weight in the wake of corporate weight-loss initiatives; Michael pursues a friendship with Holly (Amy Ryan); Jim misses Pam, who is away at art school. Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK For every season of The Office and more, purchase the complete collection here: https://amzn.to/3kLJCkB Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK Subscribe: h...
Michael is shocked at what he finds when he visits the former CFO of Dunder Mifflin. From Season 6, Episode 15 "Sabre" - Michael has trouble adjusting to Dunder Mifflin's acquisition by a printer company called Sabre and tries to turn to David Wallace for advice. Elsewhere, Jim and Pam interview to get their impending baby into a good daycare. Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK Subscribe: https://www.youtube.com/channel/UCa90xqK2odw1KV5wHU9WRhg?sub_confirmation=1 Welcome to The Office Channel! This channel is dedicated to everything The Office, from behind-the-scenes videos to fan theories. We'll be uploading new videos every week, so be sure to subscribe and hit the bell icon to ...
The Michael Scott Paper Company - including Pam (Jenna Fischer) and Ryan (B.J. Novak) - shows David Wallace (Andy Buckley) and Charles Miner (Idris Elba) how a company worth nothing negotiates. Episode Highlight: "Broke" Season 5, Episode 25 Streaming now on Peacock: https://pck.tv/3mPrdWB Watch The Office US on Google Play: http://bit.ly/2xYQkLD & iTunes http://apple.co/2eW0rcK Subscribe: https://www.youtube.com/channel/UCa90xqK2odw1KV5wHU9WRhg?sub_confirmation=1 THE OFFICE ON SOCIAL: Like The Office on Facebook: https://www.facebook.com/TheOfficeTV Follow The Office on Twitter: https://twitter.com/theofficenbc Follow The Office on Instagram: https://www.instagram.com/theoffice Find The Office trailers, full episode highlights, previews, promos, clips, and digital exclusives here. ...
Subscribe here ➡️ https://www.youtube.com/@PocketRugby For more information, sponsorships, video requests & feedback, please get in contact. My email - [email protected] Instagram - https://www.instagram.com/pocket_rugby/ Facebook - https://www.facebook.com/share/PocketRugby/ Welcome to my channel. For the love of the game 💪🏉 Rugby highlights and fun videos for fans of the game. Please LIKE & SUBSCRIBE if you would like to see more. Thank you very much, PRR. 🏉🔥 David Wallace is an Irish Rugby Legend. Wallace represented Munster (203 caps), Ireland (72 caps) and The British and Irish Lions (3) at openside flanker and number 8. Known for his work ethic, discipline and powerful leg drive, Wallace was a wrecking machine and a thorn in many sides. 🏉🔥David Wallace's career ended abruptl...
I hope you enjoy it. This is solely for entertainment purposes. All the videos, songs, images, and graphics used in the video belong to their respective owners and I or this channel does not claim any right over them. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Buy it from Amazon : https://www.amazon.com/The-Office-Sea... Subscribe to Office US : https://www.youtube.com/user/ustheoffice Thanks a lot for watching. Like and Subscribe !!
Get festive with The Office Holiday quiz, premiering December 19 4PM EST 7PM PST. Set a reminder here: https://www.youtube.com/watch?v=2n2oT44oIZI 🔔 the hero dunder mifflin deserves, but not the one it needs right now Here's some of the all-time BEST moments from Corporate King David Wallace! From some truly great phone conversations with Michael to his surprisingly successful Suck It empire, we've got it all. Did we miss your favourite David Wallace moment? Let us know in the comments! From "The Office": an American television mockumentary sitcom broadcast on NBC. Created as an adaptation by Greg Daniels of the British series of the same name, it is a mockumentary that follows the day-to-day lives of the employees of the Scranton, Pennsylvania branch of Dunder Mifflin, a fictional paper ...
Get festive with The Office Holiday quiz, premiering December 19 4PM EST 7PM PST. Set a reminder here: https://www.youtube.com/watch?v=2n2oT44oIZI 🔔 i have cause david. it is beCAUSE i hate him. Is this The Office's most underrated duo? Michael Scott and David Wallace are unlikely friends (and an even worse boss-employee pairing) but we love them anyway! Whether Michael's turning up to his job interview a day early or having an "improversation", it's here. Did we miss your favourite Michael and David moment? Let us know in the comments! From "The Office": an American television mockumentary sitcom broadcast on NBC. Created as an adaptation by Greg Daniels of the British series of the same name, it is a mockumentary that follows the day-to-day lives of the employees of the Scranton, Penns...
David Foster Wallace (February 21, 1962 – September 12, 2008) was an American writer and university professor in the disciplines of English and creative writing. This speech is from his graduation address at Kenyon College in 2005. The most profound ideas are the most difficult to articulate because they express thoughts that transcend words. Many of us struggle through life because we are stuck in our "default setting", where we unconsciously see ourselves as the absolute center of the universe. David Foster Wallace presents an alternative way to see the world in this timeless speech. This animation took over a month to create. If you like this video and want to see more, please consider supporting After Skool on Patreon https://www.patreon.com/AfterSkool Order the After Skool Childr...
"What the really great artists do is they're entirely themselves. They've got their own vision, their own way of fracturing reality, and then if it's authentic and true, you will feel it in your nerve endings." - David Foster Wallace +++ Iconoclast Writing offers online creative writing workshops for writers who wish to engage with community, expand their creative consciousness, and receive feedback on their work. https://iconoclastwriting.com/ Subscribe to our YouTube Channel + Follow us on Instagram @ https://www.instagram.com/iconoclastwriting/ +++ #davidfosterwallace #artists #writing
David Wallace is a recurring fictional character in the American comedy series The Office, portrayed by Andy Buckley. Wallace is introduced in the second season as the new chief financial officer of Dunder Mifflin. Wallace is named after the late David Foster Wallace, the favorite author of John Krasinski. His character is established as a wealthy executive at the corporate headquarters in New York with an opulent home and wife, Rachel, and son. Despite his differing lifestyle from the members of the Scranton branch, David tolerates and understands the eccentricities and flaws of Regional Manager Michael Scott, and appreciates employees Jim Halpert and Toby Flenderson. He is let go in the sixth season following the absorption of Dunder Mifflin by Sabre. He later sells his patent for "Suck it" to the US military and later acquires Dunder Mifflin for an undisclosed sum of money and becomes CEO in the eighth season finale, "Free Family Portrait Studio".