- published: 02 May 2011
- views: 15010972
'+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; })); }); -->
Barack Hussein Obama II (US i/bəˈrɑːk huːˈseɪn oʊˈbɑːmə/; born August 4, 1961) is an American politician serving as the 44th President of the United States, the first African American to hold the office. Born in Honolulu, Hawaii, Obama is a graduate of Columbia University and Harvard Law School, where he served as president of the Harvard Law Review. He was a community organizer in Chicago before earning his law degree. He worked as a civil rights attorney and taught constitutional law at University of Chicago Law School between 1992 and 2004. He served three terms representing the 13th District in the Illinois Senate from 1997 to 2004, and ran unsuccessfully in the Democratic primary for the United States House of Representatives in 2000 against incumbent Bobby Rush.
In 2004, Obama received national attention during his campaign to represent Illinois in the United States Senate with his victory in the March Democratic Party primary, his keynote address at the Democratic National Convention in July, and his election to the Senate in November. He began his presidential campaign in 2007 and, after a close primary campaign against Hillary Rodham Clinton in 2008, he won sufficient delegates in the Democratic Party primaries to receive the presidential nomination. He then defeated Republican nominee John McCain in the general election, and was inaugurated as president on January 20, 2009. Nine months after his inauguration, Obama was named the 2009 Nobel Peace Prize laureate.
Barack Obama has appeared as a character in comic books published by a number of publishing companies.
Obama made his first appearance as a comic book character in July 2007 in Licensable BearTM No. 4 by Nat Gertler, where he appeared as a U.S. Senator. The comic only had a print-run of 1,050 issues. A year later, in September 2008, Obama appeared in Erik Larsen’s Savage Dragon No. 137. This issue featured a variant cover which showed Obama with the Savage Dragon, who proclaims that he is endorsing him for President. The issue sold out four print runs. A month later, the comic was followed up by Presidential Material: Barack Obama by Jeff Mariotte and in November 2008 with Obama: The Comic Book by Rod Espinosa.
In November 2008, two things led to an explosion in popularity of the Obama comic book character. One of Obama's advisers gave an interview to journalist Jon Swaine of The Daily Telegraph titled, “Barack Obama: The 50 facts you might not know.” In the interview, it emerged that Obama collects “Spider-Man and Conan the Barbarian.” Then later that month, on November 4, 2008, Obama became the first African-American to be elected President of the United States.
Ira Jeffrey Glass (/ˈaɪrə/, born March 3, 1959) is an American public radio personality and the host and producer of the radio and television show This American Life.
Glass was born in Baltimore, Maryland, United States, to Jewish parents Barry Glass, an accountant, and Shirley Glass, a psychologist, infidelity researcher, and author whom the New York Times called "the godmother of infidelity research."
He is the first cousin once removed of composer Philip Glass, who has appeared on Glass' show and whose music can often be heard on the program.
Glass attended Milford Mill High School in Baltimore County where he was active in student theater, student government, and yearbook; he was also the co-editor of the student literary magazine. He played the part of Captain George Brackett in Milford's 1975 production of South Pacific, Lowe in their 1976 production of Damn Yankees, and Bud Frump in their 1977 production of How To Succeed in Business Without Really Trying; along with his involvement on stage, he was a member of the Thespian Society. Glass was involved in student government during his junior and senior years, as a member of the executive board. His involvement in yearbook started in tenth grade and continued until his graduation in 1977. A rather popular and outgoing student, Glass also was involved with the morning announcements, as well as being a member of the Milford Mill Honor Society in 1977. While in high school, he wrote jokes for Baltimore radio personality Johnny Walker.
President Obama praises those Americans who carried out the operation to kill Osama bin Laden, tells the families of the victims of September 11, 2001 that they have never been forgotten, and calls on Americans to remember the unity of that tragic day.
Lex Fridman Podcast full episode: https://www.youtube.com/watch?v=9xz8i90Hp2A Thank you for listening ❤ Check out our sponsors: https://lexfridman.com/sponsors/cv8308-sb See below for guest bio, links, and to give feedback, submit questions, contact Lex, etc. *GUEST BIO:* Saagar Enjeti is a political journalist & commentator, co-host of Breaking Points with Krystal and Saagar and The Realignment Podcast. He is exceptionally well-read, and the books he recommends are always fascinating and eye-opening. You can check out all the books he mentions in this episode here: https://lexfridman.com/saagar-books *CONTACT LEX:* *Feedback* - give feedback to Lex: https://lexfridman.com/survey *AMA* - submit questions, videos or call-in: https://lexfridman.com/ama *Hiring* - join our team: https://lex...
The former president spoke during the second day of the Democratic National Convention in Chicago. Subscribe to ABC News on YouTube: https://abcnews.visitlink.me/59aJ1G ABC News Digital is your daily source of breaking national and world news, exclusive interviews and 24/7 live streaming coverage. Download the ABC News app for the latest headlines and alerts: https://abcnews.go.com/devices Watch 24/7 coverage of breaking news and live events on ABC News Live: https://www.youtube.com/watch?v=gN0PZCe-kwQ&ab_channel=ABCNews Watch full episodes of World News Tonight with David Muir here: https://youtube.com/playlist?list=PLQOa26lW-uI8ixlVw1NWu_l4Eh8iZW_qN&feature=shared Read ABC News reports online: http://abcnews.go.com ABC News is the home to the #1 evening newscast “World News Toni...
Barry Buckets is cold 🐐 (via OliviaRaisner/TW) Subscribe: https://www.youtube.com/user/BleacherReport?sub_confirmation=1 Follow on IG: http://www.instagram.com/f/bleacherreport Follow us on Twitter: http://www.twitter.com/bleacherreport Like us on Facebook: http://www.facebook.com/bleacherreport
Former first lady Michelle Obama introduced former Pres. Barack Obama at the DNC: "Please welcome America's 44th president and the love of my life." See more top moments from the DNC: https://abcnews.go.com/Politics/live-updates/democratic-convention-2024-day-2/?id=112978817 #dnc #barackobama #michelleobama ––– Subscribe to ABC News on YouTube: https://abcnews.visitlink.me/59aJ1G ABC News Digital is your daily source of breaking national and world news, exclusive interviews and 24/7 live streaming coverage. Download the ABC News app for the latest headlines and alerts: https://abcnews.go.com/devices Watch 24/7 coverage of breaking news and live events on ABC News Live: https://www.youtube.com/watch?v=gN0PZCe-kwQ&ab_channel=ABCNews Watch full episodes of World News Tonight with Dav...
Watch Barack Obama's response when Republicans sarcastically clapped him at the State Of The Union. SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews and https://twitter.com/skynewsbreak Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB
Former President Barack Obama took the convention stage Tuesday in Chicago, a city where he launched his history-making political career decades ago. Speaking on the second night of the Democratic National Convention, Obama praised Vice President Kamala Harris’ record and work ethic in his speech. He criticized former President Donald Trump and his policies, saying Trump “sees power as nothing more than a means to his ends.” “We do not need four more years of bluster and bumbling and chaos. We have seen that movie before, and we all know that the sequel is usually worse,” he said to thunderous applause. “America’s ready for a new chapter. America’s ready for a better story. We are ready for a President Kamala Harris.” When the crowd booed Trump, Obama also turned to a familiar refrain f...
From soulfully singing "Amazing Grace" to dropping the mic at his last White House Correspondents' dinner, these are Obama's best speeches.
Former US president Barack Obama addresses the Democratic National Convention in Chicago. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-08-21/live-blog-day-2-democratic-national-convention/104243466 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on X (Twitter): http://twitter.com/abcnews Note: In mo...
Former U.S. President Barack Obama delivered a speech in Chicago about pluralism and unity, calling for Americans to engage with each other despite their differences. Subscribe: https://jsonline.com/deal Sign up for our email newsletters: https://jsonline.com/newsletters
World's Best Comics featured on FOX40 News, Wednesday December 10th, Barack Obama Comic and toy sales.
CLIP: President Obama and his anger translator at 2015 White House Correspondents’ Dinner. Watch complete video here: http://cs.pn/1JFZuMo Discover the C-SPAN Video Library at https://www.c-span.org/quickguide/ Download our App https://www.c-span.org/special/?radioapp C-SPAN: Created by Cable in 1979. Offered as a public service. Subscribe to our YouTube channel: https://www.youtube.com/user/CSPAN Follow us: Facebook: https://www.facebook.com/CSPAN Twitter: https://twitter.com/cspan Instagram: https://www.instagram.com/cspan/ Subscribe: C-SPAN Podcasts: https://www.c-span.org/podcasts/ Newsletters: https://www.c-span.org/connect/ #cspan
A short news article featuring the frenzy surrounding Marvel Comics' Amazing Spiderman comic featuring Barack Obama.
This is just a taste of what is to come! Episode of Epicness coming very soon! http://www.w2pi.com Special thanks to http://NerdyShirts.com for sponsoring the trip
Marvel Comic Book - The Amazing Spider-Man 583 (w/ Barack Obama) 2nd Printing - https://amzn.to/2Q1GBgX Obama: The Dream Fulfilled, Commemorative Editions - https://amzn.to/2St55BB Obama's Legacy - https://amzn.to/2Q2Mhaw For More Info On My Business Visit - https://youtube.com/willblanding Email - [email protected]
Ira Glass from This American Life talking about story telling. Part 1, The Building Blocks of a Good Story. Although this series is not geared towards photojournalism and documentary photography, the lessons are universal and can be applied to any medium.
As part of the Create Forever campaign with FUJIFILM, we got a chance to sit down with the legendary Ira Glass and explore why he creates along with what it takes to find that thing that only you can make. For more information on the Create Forever series or to join one of our totally free workshops across the US all about developing your voice, visit the microsite here: https://fujifilm-x.com/en-us/create-forever/ This film was made entirely with a couple prototype FUJIFILM GFX 100 cameras.
We wanted Ira Glass to be the LSSC announcer, but apparently he already has a job. Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Download the Colbert App HERE: http://apple.co/1Qqgwk4 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxge Get new episodes of shows you love across devices the next day, stream live ...
Full Interview: https://www.youtube.com/watch?v=vTw3v_8ktXg&t=581s Source : SXSW (https://www.youtube.com/user/sxsw)
Ira Glass on The Creative Process: #SHARE #INSPIRATION
Ira Glass is the award-winning host and executive producer of the documentary radio program "This American Life," produced by Chicago Public Media and distributed by Public Radio International. The program began in 1995 and is now heard on over 500 public radio stations each week, by more than 3 million people, and is downloaded as a podcast more than 900,000 times weekly. Watch Ira Glass in discussion with Googler Logan Ury on topics including his favorite episodes, thoughts on technology, and what it was like to see himself mentioned on "The O.C."
Former President Barack Obama sat down with radio legend Ira Glass to share valuable insights on the rapid changes happening in work. They are joined by subjects from Obama’s newest Netflix documentary series, 'Working: What We Do All Day'. He discusses what makes a “good job,” good, as well as how to find meaning and purpose in our work. To see more insightful interviews, subscribe to This is Working with Daniel Roth for exclusive content: https://bit.ly/ThisIsWorkingNewsletterSubs #linkedinnews #thisisworking #barackobama
Mike Birbiglia's Working It Out Episode 100 Ira Glass was the first guest on Working It Out back in June 2020, and now he’s back for the 100th episode. The two friends and collaborators discuss Ira’s most famous pieces of advice for creatives, and Ira attempts to “work out” Mike’s life. Plus, a final version of Mike’s “cancer story,” which he has been working on, with Ira’s feedback, since episode 1. Please consider donating to Oxfam International https://www.oxfam.org/ Listen to Ira's previous appearances and subscribe to the Working It Out podcast here: https://podcasts.apple.com/us/podcast/mike-birbiglias-working-it-out/id1515419751 Find Mike: Website: https://birbigs.com/ Instagram: https://instagram.com/birbigs/ Facebook: https://facebook.com/birbigfans Tik Tok: https://tiktok.com...
In this revealing and surprisingly personal interview, Ira Glass discusses his beginnings in radio, the long process it took him to find his creative voice, and the mindset he brings to storytelling today. For more interviews with the voices of public radio subscribe to the Radiowaves podcast at bit.ly/1w0FujQ or head to www.radiowavesshow.com
An animation based on the cover, co-produced by The New Yorker and “This American Life.” Created by Chris Ware and John Kuramoto, with interviews and narration by Ira Glass and music by Nico Muhly. Still haven’t subscribed to The New Yorker on YouTube ►► http://bit.ly/newyorkeryoutubesub CONNECT WITH THE NEW YORKER Web: http://www.newyorker.com Twitter: http://twitter.com/NewYorker Facebook: http://www.facebook.com/newyorker Google+: http://plus.google.com/+newyorker Instagram: http://instagram.com/newyorkermag Pinterest: http://www.pinterest.com/thenewyorker Tumblr: http://newyorker.tumblr.com The Scene: http://thescene.com/thenewyorker Want even more? Subscribe to The Scene: http://bit.ly/subthescene Mirror - An animated The New Yorker co-produced with "This ...
Barack Hussein Obama II (US i/bəˈrɑːk huːˈseɪn oʊˈbɑːmə/; born August 4, 1961) is an American politician serving as the 44th President of the United States, the first African American to hold the office. Born in Honolulu, Hawaii, Obama is a graduate of Columbia University and Harvard Law School, where he served as president of the Harvard Law Review. He was a community organizer in Chicago before earning his law degree. He worked as a civil rights attorney and taught constitutional law at University of Chicago Law School between 1992 and 2004. He served three terms representing the 13th District in the Illinois Senate from 1997 to 2004, and ran unsuccessfully in the Democratic primary for the United States House of Representatives in 2000 against incumbent Bobby Rush.
In 2004, Obama received national attention during his campaign to represent Illinois in the United States Senate with his victory in the March Democratic Party primary, his keynote address at the Democratic National Convention in July, and his election to the Senate in November. He began his presidential campaign in 2007 and, after a close primary campaign against Hillary Rodham Clinton in 2008, he won sufficient delegates in the Democratic Party primaries to receive the presidential nomination. He then defeated Republican nominee John McCain in the general election, and was inaugurated as president on January 20, 2009. Nine months after his inauguration, Obama was named the 2009 Nobel Peace Prize laureate.
Why, why, why, why, why, why, oyyy.. why why.. Lord..
Well, this is not about class,
Nor color, race, nor creed.
Make no mistake, it’s the changes,
Weh all the people dem need,
Dem a shout out;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Dem say;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Now you can hear it in the morning, (Obama!)
And you can hear it in the evening, (Obama!)
Black man and white woman shouting, (Obama!)
Dem inna the group and them is moving, (Obama!)
And you can hear them saying;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Dem say;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
The man let down his hat, (hat)
And no one can’t stop that, (that)
Well some of dem are just smart,
And some ah take back dem chant. (cho')
And some of dem who was racist,
Jumping and dancing in the street,
An a shout out;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Dem say;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
It is not Hillary Clinton. (Obama!)
And it is not John McCain. (Obama!)
It is not Chuck Norris. (Obama!),
And I know it’s not John Wayne. (Obama!),
It is not the one Rambo. (Obama!),
And it is not the Terminator. (Obama!),
But a de new trend setta, (Obama!),
The mountain of the whole America,
And dem a shout out;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Dem say;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
African-American rise,
And keep your eyes on the prize. (Obama!)
'Cause now none of them realize,
The black man is in their eyes. (Obama!)
Well it’s no joke, it’s a fact,
We’re gonna paint the whole white house black. (Obama!)
And I can’t believe it’s true,
Black gonna run the red, white and blue.
Dem a shout out;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Dem say;
Barack Obama, Barack Obama, Barack Obama, woy, woy.
Me callin’ all of the red Indians. (Obama!)
Who live up on the reservation. (Obama!)
The Japanese and all the China-men. (Obama!)
The Hindu and all the Mexicans. (Obama!)
Arabs and Jews and Palestinians. (Obama!)
A time ’till we join up as one,
And shout out;
Barack Obama, Barack Obama, Barack Obama, woy,woy.
Shout;
Barack Obama, Barack Obama, Barack Obama, woy,woy.
‘Cause this is not about class. (Obama!)
Nor color, race, nor creed .(Obama!)
But it’s about the changes. (Obama!)
What the Americans need. (Obama!)
So, whether you come from California. (Obama!)
Or you live a Nort’ Dakota. (Obama!)
You could have come from Texas. (Obama!)
Or you’re living inna Florida.
How all ya join this a line yah, (Obama!)
Now let me hear you stand and shout,
Just shout out;
Barack Obama, Barack Obama, Barack Obama, woy,woy.
Shout;