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

Asian American International Film Festival

The Asian American International Film Festival (AAIFF) is an international film festival held annually during the summer in New York City to showcase the works of both emerging and experienced Asian and Asian American filmmakers and media artists across a diverse range of genres and styles.

Current Festival

The 39th Asian American International Film Festival will be held from July 21-30, 2016. The AAIFF'16 will be celebrating all over NYC, in Manhattan, Brooklyn, and Queens.

History

In 1975, grassroots media activists Peter Chow, Danny Yung, Thomas Tam and Christine Choy founded Asian CineVision (ACV), a nonprofit media arts organization "dedicated to promoting and preserving Asian and Asian American media expressions", under the name CCTV (Chinese Cable TV) in New York’s Chinatown. At a time of exceptional energy and assertion on the part of diverse cultural groups, claiming their voices and places in a landscape that had been dominated by European Americans, ACV’s founders saw the need to bring greater social and cultural awareness of Asian American experience and history to both Asian American communities and to the public at large. Moving-image media had become the nation’s common language, its most pervasive source of images and ideas, and Asian Americans barely registered on its screens. ACV’s founders wanted to address problems faced by Asian Americans in both representation in the media and access to the means of media production and distribution. Technologies and outlets for independent media were multiplying, creating new possibilities for Asian Americans both behind and in front of the cameras, in production and distribution, in scholarship and practice, in every style and platform of media arts.

Asian Americans

Asian Americans are Americans of Asian descent. The U.S. Census Bureau definition of Asians refers to a person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian subcontinent. It includes people who indicated their race(s) as "Asian" or reported entries such as "Chinese", "Indian", "Filipino", "Korean", "Japanese", "Vietnamese", and "Other Asian" or provided other detailed Asian responses. They comprise 4.8% of the U.S. population alone, while people who are Asian combined with at least one other race make up 5.6%As of 2012, Asian Americans had the highest educational attainment level and median household income of any racial demographic in the country, and in 2008 they had the highest median household income overall of any racial demographic.

Terminology

As with other racial and ethnicity based terms, formal and common usage have changed markedly through the short history of this term.

Prior to the late 1960s, people of Asian ancestry were usually referred to as Oriental, Asiatic, and Mongoloid. The term Asian American was coined by historian Yuji Ichioka, who is credited with popularizing the term, to frame a new "inter-ethnic-pan-Asian American self-defining political group" in the late 1960s.

Race and ethnicity in the United States Census

Race and ethnicity in the United States Census, defined by the federal Office of Management and Budget (OMB) and the United States Census Bureau, are self-identification data items in which residents choose the race or races with which they most closely identify, and indicate whether or not they are of Hispanic or Latino origin (the only categories for ethnicity).

The racial categories represent a social-political construct for the race or races that respondents consider themselves to be and "generally reflect a social definition of race recognized in this country." OMB defines the concept of race as outlined for the U.S. Census as not "scientific or anthropological" and takes into account "social and cultural characteristics as well as ancestry", using "appropriate scientific methodologies" that are not "primarily biological or genetic in reference." The race categories include both racial and national-origin groups.

Race and ethnicity are considered separate and distinct identities, with Hispanic or Latino origin asked as a separate question. Thus, in addition to their race or races, all respondents are categorized by membership in one of two ethnic categories, which are "Hispanic or Latino" and "Not Hispanic or Latino". However, the practice of separating "race" and "ethnicity" as different categories has been criticized both by the American Anthropological Association and members of U.S. Commission on Civil Rights.

Film festival

A film festival is an organized, extended presentation of films in one or more cinemas or screening venues, usually in a single city or region. Increasingly, film festivals show some films outdoors. Films may be of recent date and, depending upon the festival's focus, can include international and domestic releases. Some festivals focus on a specific film-maker or genre (e.g., film noir) or subject matter (e.g., horror film festivals). A number of film festivals specialise in short films of a defined maximum length. Film festivals are typically annual events. Some film historians do not consider Film Festivals as official releases of film, like Jerry Beck. The best known film festivals are the Venice Film Festival, the Cannes Film Festival, the Toronto Film Festival, Sundance Film Festival, and the Berlin International Film Festival, the latter being the largest film festival worldwide, based on attendance. The Venice Film Festival is the oldest major festival. The Melbourne International Film Festival is the largest film festival in the Southern Hemisphere and one of the oldest in the world. A 2013 study found 3,000 active films festivals worldwide—active defined as having held an event in the previous 24 months.

$100 Film Festival

The $100 Film Festival is an independent film festival that runs for three days every March at the Globe Cinema in downtown Calgary, Alberta. The festival showcases films in all genres by local and international independent artists who enjoy working with traditional film.

Created in 1992 by the Calgary Society of Independent Filmmakers (CSIF), the $100 Film Festival started as a challenge for area filmmakers to a make a low-budget movie using Super8 film for less than $100. In later years, the CSIF changed the rules to allow filmmakers to work with 16 mm film and an increased budget. The $100 Film Festival still works to embody the spirit of low-budget film making and has become a popular event in Calgary.

External links

  • CSIF Official Website
  • $100 Film Festival Website
  • References

  • Calgary Herald
  • The Gauntlet
  • Fast Forward

  • 24/7 Film Festival

    The 24/7 Film Festival is an annual amateur film festival in held in the Mosman, Manly, Warringah Council and Pittwater Council area, all northern suburbs of Sydney, New South Wales, Australia. First held in 2002, the Council-sponsored event consists of a challenge to 12- to 24-year-olds to produce a 7-minute film in 24 hours. The festival also consists of film workshops and is crowned by the showing and judging of the entries, held at various local cinemas.

    In 2005 the festival won a local government cultural award for leadership in cultural programs and projects.

    Item List

    A list of 'items' is published each year at the commencement of the competition. It is required that an item from each of the 4 categories appears in each film and that a total of at least 5 items are used. This is to ensure that films were made specifically for the competition and were made in the 24-hour period designated. The four categories are Locations, Concepts, Lines of Dialogue and Objects.

    A "Secret Rule" is announced each year at the same time, placing some extra restriction on films to further ensure adherence to the time constraint. The rules for 2006 and 2007 have been to have a line of dialogue in a language other than English, and to have two characters say a line of dialogue at the same time, respectively.

    Podcasts:

    • Asian Americans: Last Week Tonight with John Oliver (HBO)

      John Oliver discusses the large and diverse group of people who fall under the term “Asian American”, the history of the model minority stereotype, and why our conversations on the subject need to be better-informed. Connect with Last Week Tonight online... Subscribe to the Last Week Tonight YouTube channel for more almost news as it almost happens: www.youtube.com/lastweektonight Find Last Week Tonight on Facebook like your mom would: www.facebook.com/lastweektonight Follow us on Twitter for news about jokes and jokes about news: www.twitter.com/lastweektonight Visit our official site for all that other stuff at once: www.hbo.com/lastweektonight

      published: 07 Jun 2021
    • Why Everyone Hates Asian Americans

      Asian Americans are in a unique situation where they face a lot of hate, but have very few true allies. Asians in Asia cannot truly relate to the Asian American experience, and many even look down upon them for being "Westernized". On the other hand, American society at large refuses to acknowledge Asian Americans as "real Americans" and continues to throw non-stop racial abuse, violence and discrimination at Asian Americans. In this video, we will discover the range of complex challenges that all Asian Americans face - most of which center around racism and hate - and discuss how Asian Americans can unite and start overcoming the obstacles in their way. Chapters: 00:00 Everyone Hates Asian Americans 00:53 Asians in Asia vs. Asian Americans 04:02 "White America" vs. Asian Americans 06:2...

      published: 25 Feb 2024
    • Asian Americans: PBS documentary series | KQED

      Asian Americans is a five-part PBS documentary series that delivers a fresh perspective on a history that matters today, more than ever. As America becomes more diverse, and more divided while facing unimaginable challenges, how do we move forward together? Told through intimate personal stories, the series will cast a new lens on U.S. history and the ongoing role that Asian Americans have played. Premieres May 11th, 2020 on KQED. For other cities, check your local listings or watch online: https://video.kqed.org/show/asian-americans/

      published: 01 May 2020
    • 'Discrimination Against Asian-Americans Is Wrong - Yes Or Now?': Hawley Grills Biden Nominee

      At today's Senate Judiciary Committee hearing, Sen. Josh Hawley (R-MO) questioned Kelley Brisbon Hodge, nominee to be United States District Judge for the Eastern District of Pennsylvania, about affirmative action. Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/forbes More From Forbes: http://forbes.com

      published: 07 Sep 2022
    • How Income Inequality Became A Big Issue Among Asian Americans

      The Asian American Pacific Islander population is extremely diverse, culturally and economically. According to a recent analysis by the Pew Research Center, Asian household incomes range from $44,400 to $120,000. Subgroups at the low end aren’t represented by the median data. Here’s a closer look at the growing income gap among Asian Americans, how it started and what’s next. CHAPTERS 0:00 -- Introduction 1:30:13 -- Immigration 3:56:03 -- Barriers 6:26:14 -- Aggregated data 8:55:10 -- What’s next? » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC Classic: https://cnb.cx/SubscribeCNBCclassic About CNBC: From 'Wall Street' to 'Main Street' to award winning original documentaries and Reality TV series, CNBC ...

      published: 22 May 2021
    • Asian-Americans are Overachievers, This is Why | Thomas Sowell

      Asian-Americans are Overachievers, This is Why --- 👉 Join this channel to get access to perks: https://www.youtube.com/channel/UCflhc3xU5ZSx_7_vzdb69gA/join 👉Join our exclusive Telegram channel here: https://t.me/tsowell --- Get Thomas Sowell's Latest Book here: 1. Social Justice Fallacies: https://amzn.to/3Pcq8Go 2. Black Rednecks and White Liberals: https://amzn.to/48gkADw 3. Basic Economics: https://amzn.to/48ekoVw 4. A Conflict of Visions: https://amzn.to/3Zhxn4L 5. Dismantling America: https://amzn.to/3POMXyS 6. Discrimination and Disparities: https://amzn.to/3Oxfqbj 7. Economic Facts and Fallacies: https://amzn.to/3RWYDl2 8. Knowledge And Decisions: https://amzn.to/3S9NihF 9. The Thomas Sowell Reader: https://amzn.to/3cqiMzp 10. Is Reality Optional?: https://amzn.to/3Py9DU9 11. The V...

      published: 20 Dec 2023
    • Suspects arrested in home invasion ring that targeted Asian Americans | FOX 13 Seattle

      Federal and local law enforcement called the operation a "robbery ring built on fear," believing they were specifically targeting Asian families. Subscribe to FOX 13 Seattle: https://www.youtube.com/c/fox13seattle?sub_confirmation=1 Watch FOX 13 Seattle Live: https://www.fox13seattle.com/live FOX 13 Seattle is Western Washington's source for breaking news, weather, traffic, politics and sports. Download the FOX 13 Seattle News App: https://q13fox.onelink.me/PeGO/7e4d2af8 Download the FOX 13 Seattle Weather App: https://jckig.app.link/dlUcXuM2Peb Subscribe to FOX 13 Seattle newsletters: https://www.fox13seattle.com/newsletters Follow FOX 13 Seattle on Facebook: https://www.facebook.com/fox13seattle Follow FOX 13 Seattle on TikTok: https://www.tiktok.com/@fox13seattle Follow FOX 13 ...

      published: 16 Aug 2024
    • Asian Americans face rise in racist incidents

      There has been more than an 800% increase in racist incidents against Asian Americans reported in the last three years. The tone of the country has been exacerbated by the tone of the nation's president, who constantly refers to the coronavirus as "Kung Flu" or the "Chinese virus." Weiija Jiang reports for "Asian Americans: Battling Bias."

      published: 10 Oct 2020
    • New Asian-American community center, Cambodian temple coming to Westbrook

      A new Asian-American community center and Cambodian temple is coming to Westbrook after the city officially approved the project.

      published: 15 Aug 2024
    • How 24+ million Asian Americans can change the 2024 presidential election | The Big Deal

      "The Big Deal" continues to examine key voting blocs that could play a big role in deciding who becomes the next president of the United States. In this episode, the Asian American vote is examined. Vice President Kamala Harris, the first Black woman nominated by a major party to run for president, could also become the first person of South Asian descent to hold the nation's highest office. Could her history-making candidacy energize Asian Americans, specifically South Asian voters? Spectrum News 1 Southern California anchor, Amrit Singh, joins Errol Louis in discussing the importance of the South Asian vote. #SpectrumNews #thebigdeal #errollouis #jdvance #ushavance #decision2024 #politicalnews #voternews For more on this and the latest news from across the country: http://specne.ws/YTs...

      published: 17 Aug 2024
    developed with YouTube
    Asian Americans: Last Week Tonight with John Oliver (HBO)
    27:02

    Asian Americans: Last Week Tonight with John Oliver (HBO)

    • Order:
    • Duration: 27:02
    • Uploaded Date: 07 Jun 2021
    • views: 6331492
    John Oliver discusses the large and diverse group of people who fall under the term “Asian American”, the history of the model minority stereotype, and why our conversations on the subject need to be better-informed. Connect with Last Week Tonight online... Subscribe to the Last Week Tonight YouTube channel for more almost news as it almost happens: www.youtube.com/lastweektonight Find Last Week Tonight on Facebook like your mom would: www.facebook.com/lastweektonight Follow us on Twitter for news about jokes and jokes about news: www.twitter.com/lastweektonight Visit our official site for all that other stuff at once: www.hbo.com/lastweektonight
    https://wn.com/Asian_Americans_Last_Week_Tonight_With_John_Oliver_(Hbo)
    Why Everyone Hates Asian Americans
    14:54

    Why Everyone Hates Asian Americans

    • Order:
    • Duration: 14:54
    • Uploaded Date: 25 Feb 2024
    • views: 272383
    Asian Americans are in a unique situation where they face a lot of hate, but have very few true allies. Asians in Asia cannot truly relate to the Asian American experience, and many even look down upon them for being "Westernized". On the other hand, American society at large refuses to acknowledge Asian Americans as "real Americans" and continues to throw non-stop racial abuse, violence and discrimination at Asian Americans. In this video, we will discover the range of complex challenges that all Asian Americans face - most of which center around racism and hate - and discuss how Asian Americans can unite and start overcoming the obstacles in their way. Chapters: 00:00 Everyone Hates Asian Americans 00:53 Asians in Asia vs. Asian Americans 04:02 "White America" vs. Asian Americans 06:25 Whataboutisms 08:42 Other Minorities and Asian Americans 09:53 Action Steps for ALL Asian Americans Alternative Titles: - Why Asian Americans Have No Allies - The Complex Nature of Anti-Asian American Hate - The Unspoken Truths About Anti-Asian American Hate
    https://wn.com/Why_Everyone_Hates_Asian_Americans
    Asian Americans: PBS documentary series | KQED
    1:31

    Asian Americans: PBS documentary series | KQED

    • Order:
    • Duration: 1:31
    • Uploaded Date: 01 May 2020
    • views: 82393
    Asian Americans is a five-part PBS documentary series that delivers a fresh perspective on a history that matters today, more than ever. As America becomes more diverse, and more divided while facing unimaginable challenges, how do we move forward together? Told through intimate personal stories, the series will cast a new lens on U.S. history and the ongoing role that Asian Americans have played. Premieres May 11th, 2020 on KQED. For other cities, check your local listings or watch online: https://video.kqed.org/show/asian-americans/
    https://wn.com/Asian_Americans_Pbs_Documentary_Series_|_Kqed
    'Discrimination Against Asian-Americans Is Wrong - Yes Or Now?': Hawley Grills Biden Nominee
    5:16

    'Discrimination Against Asian-Americans Is Wrong - Yes Or Now?': Hawley Grills Biden Nominee

    • Order:
    • Duration: 5:16
    • Uploaded Date: 07 Sep 2022
    • views: 944636
    At today's Senate Judiciary Committee hearing, Sen. Josh Hawley (R-MO) questioned Kelley Brisbon Hodge, nominee to be United States District Judge for the Eastern District of Pennsylvania, about affirmative action. Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/forbes More From Forbes: http://forbes.com
    https://wn.com/'Discrimination_Against_Asian_Americans_Is_Wrong_Yes_Or_Now_'_Hawley_Grills_Biden_Nominee
    How Income Inequality Became A Big Issue Among Asian Americans
    10:43

    How Income Inequality Became A Big Issue Among Asian Americans

    • Order:
    • Duration: 10:43
    • Uploaded Date: 22 May 2021
    • views: 631674
    The Asian American Pacific Islander population is extremely diverse, culturally and economically. According to a recent analysis by the Pew Research Center, Asian household incomes range from $44,400 to $120,000. Subgroups at the low end aren’t represented by the median data. Here’s a closer look at the growing income gap among Asian Americans, how it started and what’s next. CHAPTERS 0:00 -- Introduction 1:30:13 -- Immigration 3:56:03 -- Barriers 6:26:14 -- Aggregated data 8:55:10 -- What’s next? » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC Classic: https://cnb.cx/SubscribeCNBCclassic About CNBC: From 'Wall Street' to 'Main Street' to award winning original documentaries and Reality TV series, CNBC has you covered. Experience special sneak peeks of your favorite shows, exclusive video and more. Connect with CNBC News Online Get the latest news: https://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC #CNBC How Income Inequality Became A Big Issue Among Asian Americans
    https://wn.com/How_Income_Inequality_Became_A_Big_Issue_Among_Asian_Americans
    Asian-Americans are Overachievers, This is Why | Thomas Sowell
    13:43

    Asian-Americans are Overachievers, This is Why | Thomas Sowell

    • Order:
    • Duration: 13:43
    • Uploaded Date: 20 Dec 2023
    • views: 445098
    Asian-Americans are Overachievers, This is Why --- 👉 Join this channel to get access to perks: https://www.youtube.com/channel/UCflhc3xU5ZSx_7_vzdb69gA/join 👉Join our exclusive Telegram channel here: https://t.me/tsowell --- Get Thomas Sowell's Latest Book here: 1. Social Justice Fallacies: https://amzn.to/3Pcq8Go 2. Black Rednecks and White Liberals: https://amzn.to/48gkADw 3. Basic Economics: https://amzn.to/48ekoVw 4. A Conflict of Visions: https://amzn.to/3Zhxn4L 5. Dismantling America: https://amzn.to/3POMXyS 6. Discrimination and Disparities: https://amzn.to/3Oxfqbj 7. Economic Facts and Fallacies: https://amzn.to/3RWYDl2 8. Knowledge And Decisions: https://amzn.to/3S9NihF 9. The Thomas Sowell Reader: https://amzn.to/3cqiMzp 10. Is Reality Optional?: https://amzn.to/3Py9DU9 11. The Vision of the Anointed: https://amzn.to/46f8CrY #thomassowell #socialjustice #affirmativeaction
    https://wn.com/Asian_Americans_Are_Overachievers,_This_Is_Why_|_Thomas_Sowell
    Suspects arrested in home invasion ring that targeted Asian Americans | FOX 13 Seattle
    2:08

    Suspects arrested in home invasion ring that targeted Asian Americans | FOX 13 Seattle

    • Order:
    • Duration: 2:08
    • Uploaded Date: 16 Aug 2024
    • views: 12340
    Federal and local law enforcement called the operation a "robbery ring built on fear," believing they were specifically targeting Asian families. Subscribe to FOX 13 Seattle: https://www.youtube.com/c/fox13seattle?sub_confirmation=1 Watch FOX 13 Seattle Live: https://www.fox13seattle.com/live FOX 13 Seattle is Western Washington's source for breaking news, weather, traffic, politics and sports. Download the FOX 13 Seattle News App: https://q13fox.onelink.me/PeGO/7e4d2af8 Download the FOX 13 Seattle Weather App: https://jckig.app.link/dlUcXuM2Peb Subscribe to FOX 13 Seattle newsletters: https://www.fox13seattle.com/newsletters Follow FOX 13 Seattle on Facebook: https://www.facebook.com/fox13seattle Follow FOX 13 Seattle on TikTok: https://www.tiktok.com/@fox13seattle Follow FOX 13 Seattle on Instagram: https://www.instagram.com/fox13seattle Follow FOX 13 Seattle on Twitter: https://twitter.com/fox13seattle
    https://wn.com/Suspects_Arrested_In_Home_Invasion_Ring_That_Targeted_Asian_Americans_|_Fox_13_Seattle
    Asian Americans face rise in racist incidents
    5:56

    Asian Americans face rise in racist incidents

    • Order:
    • Duration: 5:56
    • Uploaded Date: 10 Oct 2020
    • views: 2632327
    There has been more than an 800% increase in racist incidents against Asian Americans reported in the last three years. The tone of the country has been exacerbated by the tone of the nation's president, who constantly refers to the coronavirus as "Kung Flu" or the "Chinese virus." Weiija Jiang reports for "Asian Americans: Battling Bias."
    https://wn.com/Asian_Americans_Face_Rise_In_Racist_Incidents
    New Asian-American community center, Cambodian temple coming to Westbrook
    1:09

    New Asian-American community center, Cambodian temple coming to Westbrook

    • Order:
    • Duration: 1:09
    • Uploaded Date: 15 Aug 2024
    • views: 59
    A new Asian-American community center and Cambodian temple is coming to Westbrook after the city officially approved the project.
    https://wn.com/New_Asian_American_Community_Center,_Cambodian_Temple_Coming_To_Westbrook
    How 24+ million Asian Americans can change the 2024 presidential election | The Big Deal
    8:43

    How 24+ million Asian Americans can change the 2024 presidential election | The Big Deal

    • Order:
    • Duration: 8:43
    • Uploaded Date: 17 Aug 2024
    • views: 69468
    "The Big Deal" continues to examine key voting blocs that could play a big role in deciding who becomes the next president of the United States. In this episode, the Asian American vote is examined. Vice President Kamala Harris, the first Black woman nominated by a major party to run for president, could also become the first person of South Asian descent to hold the nation's highest office. Could her history-making candidacy energize Asian Americans, specifically South Asian voters? Spectrum News 1 Southern California anchor, Amrit Singh, joins Errol Louis in discussing the importance of the South Asian vote. #SpectrumNews #thebigdeal #errollouis #jdvance #ushavance #decision2024 #politicalnews #voternews For more on this and the latest news from across the country: http://specne.ws/YTstory Watch live news: http://specne.ws/YTliveSN Get the Spectrum News App on all your favorite devices: http://specne.ws/GetSNApp2
    https://wn.com/How_24_Million_Asian_Americans_Can_Change_The_2024_Presidential_Election_|_The_Big_Deal
    • U.S. Census changing race, ethnicity categories

      The form will only have one question regarding race and ethnicity.

      published: 29 Mar 2024
    • U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Census

      The number of people of color in the U.S. is growing, pointing toward a future in which the country is majority non-White. Redistricting data from the 2020 U.S. Census showed the nation is more racially and ethnically diverse than ever before. The number of people who identify as more than one race increased 276%, reaching 33.8 million in 2020 from 9 million in 2010. The White population, while still a majority, decreased 8.6%. The Latino population -- which the Census asks about separately from race -- grew 23%. The Asian population grew 35.5%, and the African American population grew 5.6%. “As the country has grown, we have continued to evolve in how we measure the race and ethnicity of the people who live here,” said Nicholas Jones, the bureau’s director and senior adviser for race an...

      published: 12 Aug 2021
    • Gravitas: America's Race Census 2021

      A survey by US census bureau has revealed that America's white population has shrunk for the first time in history. It went from 196 million in 2010 to 191million in 2020. Palki Sharma gets you a detailed report on the findings. #US #America #WhitePopulation About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a globalised united world. So for us the World is truly O...

      published: 13 Aug 2021
    • Using data census gov to Explore Race & Ethnicity Data

      The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and it's all available in our data platform, data.census.gov. Join this webinar where we will define the concepts of race and ethnicity in accordance to the U.S. Office of Management and Budget Standards, and do a live walkthrough on how to navigate data.census.gov to access this data. Our presenter will share key tips and tricks to help you zero-in on the data you need, and guide you to additional resources to help you in your search. Please note that this is a webinar on how to find existing race and ethnicity data on data.census.gov. This webinar does not address upcoming releases of detailed race/ethnicity tables. Please see the following website for materials related to this webinar: https://www....

      published: 02 May 2023
    • Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surges

      As experts predicted, early findings from the 2020 census show that the U.S. population is more racially diverse than in previous years and the percentage of Americans self-identifying as mixed-race has surged since 2010, U.S. Census Bureau officials said Thursday. READ MORE: https://www.forbes.com/sites/carlieporterfield/2021/08/12/the-us-is-more-diverse-and-multiracial-than-ever-before-census-shows/?sh=499383a89486 Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/forbes More From Forbes: http://forbes.com

      published: 12 Aug 2021
    • Race and ethnicity in the United States Census

      Race and ethnicity in the United States Census, defined by the federal Office of Management and Budget (OMB) and the United States Census Bureau, are self-identification data items in which residents choose the race or races with which they most closely identify, and indicate whether or not they are of Hispanic or Latino origin (the only categories for ethnicity). The racial categories represent a social-political construct for the race or races that respondents consider themselves to be and "generally reflect a social definition of race recognized in this country." OMB defines the concept of race as outlined for the US Census as not "scientific or anthropological" and takes into account "social and cultural characteristics as well as ancestry", using "appropriate scientific methodologies"...

      published: 02 Oct 2014
    • US Census Revamps Race and Ethnicity Categories for Improved Demographic Tracking

      The 2030 U.S. Census is set to introduce significant revisions in race and ethnicity checkboxes, marking the first update in 27 years. Veuer’s Maria Mercedes Galuppo has the story. Subscribe to our channel: http://www.youtube.com/buzz60 Buzz60 is designed for the way we live now. Short, quirky video snacks that are a little sassy, and always smart. Buzz 60 -- and the Buzz60 channel on YouTube - produces all kinds of news video clips for web viewers who want more than just repurposed content. Our team is a diverse group of video journalists with dozens of Emmy awards, an authentic sense of humor, and a mandate to connect with viewers every day. Like us Facebook: http://www.facebook.com/buzz60 Follow us on Twitter: http://twitter.com/Buzz60 Add us to your Circle on Google+: http://...

      published: 04 Apr 2024
    • Race and ethnicity in the United States Census | Wikipedia audio article

      This is an audio version of the Wikipedia Article: Race and ethnicity in the United States Census Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find o...

      published: 21 Nov 2018
    • Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talk

      How have we changed the way race & ethnicity is coded? What are some high-level findings on demographic change in the US? How can we access redistricting data & visualizations from the 2020 Census? Jessica E. Peña Ph.D. (she/her), a Statistician Demographer in the Ethnicity & Ancestry Branch of the Population Division of the US Census Bureau and Brittany Rico M.S. (she/her) a Statistician Demographer in the Racial Statistics Branch of the Population Division of the US Census Bureau joined Bluebonnet to share the findings from the 2020 Census.

      published: 15 Oct 2021
    • Discovering Race and Ethnicity Data on data census gov

      The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and it's all available in our new data platform, data.census.gov. In this webinar we will define the concepts of race and ethnicity in accordance to the U.S. Office of Management and Budget Standards, and demonstrate how to navigate data.census.gov to access this data. We'll also show you key tips and tricks to zero-in on the data you need, and guide you to additional resources to help you in your search. Please note that this is a webinar on how to find existing race and ethnicity data on data.census.gov. This webinar will not address 2020 Census data. For the slides and written transcript, please see our Census Academy page. https://www.census.gov/data/academy/webinars/2021/discovering-race-and-ethnic...

      published: 12 Mar 2021
    • How to find race and ethnicity from the U S Census

      Flashback video from old youtube channel... This is what FactFinder looked like back in 2011-2012...

      published: 20 Jan 2022
    • Collecting and Tabulating Ethnicity and Race Responses in the 2020 Census

      Webinar: February 19, 2020 This webinar will provide you with a deeper understanding of how the questions and concepts of race and ethnicity are operationalized in the Census. Topics covered will include: - What is race? - What is ethnicity? - History of race and ethnicity in the United States decennial census - U.S. Office of Management and Budget Standards on Race and Ethnicity - Why data on race and ethnicity is important - 2020 Census question design improvements for race and ethnicity - Common responses to the questions on race and ethnicity and how these responses are interpreted by the Census Bureau #CensusAcademy For more training resources related to this webinar, visit us at: https://www.census.gov/data/academy/webinars/2020/collec...

      published: 25 Feb 2020
    • US Census Race and Ethnicity (Read and Updates)

      Please like share and subscribe!!!!!!!!!!!!!!!! Shop at Amazon: Hit that affiliate link to support this Platform, it's free to do so. ETM Media Group Affiliate Link: https://amzn.to/3XFq31U Etmmediagroup Store: https://www.etmmediagroupstore.com/ Reparations Now Documentary: https://reparationsnowdoc.com/ 2024 Cut The Check Reparations Manifestations Planner: https://amzn.to/46X1Oja Reparations Now on Tubi: https://tubitv.com/movies/100005110/reparations-now

      published: 02 Dec 2024
    • How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?

      Did you know that the multi-racial population in the United States has increased by 275.7% since the 2010 Census? Are you looking for data about race and Hispanic Origin for 2010 and 2020? This Data Gem will teach you how to use an interactive data visualization to identify trends for the nation, state, and county. For more Data Gems, visit census.gov/academy Resources: Data Visualization - https://www.census.gov/library/visualizations/interactive/race-and-ethnicity-in-the-united-state-2010-and-2020-census.html

      published: 09 Sep 2021
    developed with YouTube
    U.S. Census changing race, ethnicity categories
    0:47

    U.S. Census changing race, ethnicity categories

    • Order:
    • Duration: 0:47
    • Uploaded Date: 29 Mar 2024
    • views: 1283
    The form will only have one question regarding race and ethnicity.
    https://wn.com/U.S._Census_Changing_Race,_Ethnicity_Categories
    U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Census
    2:35

    U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Census

    • Order:
    • Duration: 2:35
    • Uploaded Date: 12 Aug 2021
    • views: 5080
    The number of people of color in the U.S. is growing, pointing toward a future in which the country is majority non-White. Redistricting data from the 2020 U.S. Census showed the nation is more racially and ethnically diverse than ever before. The number of people who identify as more than one race increased 276%, reaching 33.8 million in 2020 from 9 million in 2010. The White population, while still a majority, decreased 8.6%. The Latino population -- which the Census asks about separately from race -- grew 23%. The Asian population grew 35.5%, and the African American population grew 5.6%. “As the country has grown, we have continued to evolve in how we measure the race and ethnicity of the people who live here,” said Nicholas Jones, the bureau’s director and senior adviser for race and ethnicity research. “The U.S. population is much more multiracial and more diverse than what we measured in the past.” Subscribe to our YouTube channel: https://bit.ly/2TwO8Gm Subscribe to our newest channel Quicktake Explained: https://bit.ly/3iERrup Bloomberg Quicktake brings you live global news and original shows spanning business, technology, politics and culture. Make sense of the stories changing your business and your world. To watch complete coverage on Bloomberg Quicktake 24/7, visit http://www.bloomberg.com/qt/live, or watch on Apple TV, Roku, Samsung Smart TV, Fire TV and Android TV on the Bloomberg app. Have a story to tell? Fill out this survey for a chance to have it featured on Bloomberg Quicktake: https://cor.us/surveys/27AF30 Connect with us on… YouTube: https://www.youtube.com/user/Bloomberg Breaking News on YouTube: https://www.youtube.com/c/BloombergQuickTakeNews Twitter: https://twitter.com/quicktake Facebook: https://www.facebook.com/quicktake Instagram: https://www.instagram.com/quicktake
    https://wn.com/U.S._Population_More_Racially,_Ethnically_Diverse_Than_Ever_2020_Census
    Gravitas: America's Race Census 2021
    4:19

    Gravitas: America's Race Census 2021

    • Order:
    • Duration: 4:19
    • Uploaded Date: 13 Aug 2021
    • views: 105213
    A survey by US census bureau has revealed that America's white population has shrunk for the first time in history. It went from 196 million in 2010 to 191million in 2020. Palki Sharma gets you a detailed report on the findings. #US #America #WhitePopulation About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a globalised united world. So for us the World is truly One. Please keep discussions on this channel clean and respectful and refrain from using racist or sexist slurs as well as personal insults. Subscribe to our channel at https://goo.gl/JfY3NI Check out our website: http://www.wionews.com Connect with us on our social media handles: Facebook: https://www.facebook.com/WIONews Twitter: https://twitter.com/WIONews Follow us on Google News for latest updates Zee News:- https://bit.ly/2Ac5G60 Zee Bussiness:- https://bit.ly/36vI2xa DNA India:- https://bit.ly/2ZDuLRY WION: https://bit.ly/3gnDb5J Zee News Apps : https://bit.ly/ZeeNewsApps
    https://wn.com/Gravitas_America's_Race_Census_2021
    Using data census gov to Explore Race & Ethnicity Data
    1:06:43

    Using data census gov to Explore Race & Ethnicity Data

    • Order:
    • Duration: 1:06:43
    • Uploaded Date: 02 May 2023
    • views: 1210
    The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and it's all available in our data platform, data.census.gov. Join this webinar where we will define the concepts of race and ethnicity in accordance to the U.S. Office of Management and Budget Standards, and do a live walkthrough on how to navigate data.census.gov to access this data. Our presenter will share key tips and tricks to help you zero-in on the data you need, and guide you to additional resources to help you in your search. Please note that this is a webinar on how to find existing race and ethnicity data on data.census.gov. This webinar does not address upcoming releases of detailed race/ethnicity tables. Please see the following website for materials related to this webinar: https://www.census.gov/data/academy/webinars/2023/explore-race-and-ethnicity-data.html For more information and other material please visit: https://www.census.gov/academy Visit our data hub: https://data.census.gov/
    https://wn.com/Using_Data_Census_Gov_To_Explore_Race_Ethnicity_Data
    Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surges
    33:31

    Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surges

    • Order:
    • Duration: 33:31
    • Uploaded Date: 12 Aug 2021
    • views: 64829
    As experts predicted, early findings from the 2020 census show that the U.S. population is more racially diverse than in previous years and the percentage of Americans self-identifying as mixed-race has surged since 2010, U.S. Census Bureau officials said Thursday. READ MORE: https://www.forbes.com/sites/carlieporterfield/2021/08/12/the-us-is-more-diverse-and-multiracial-than-ever-before-census-shows/?sh=499383a89486 Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/forbes More From Forbes: http://forbes.com
    https://wn.com/Census_U.S._More_Racially_Diverse,_Percentage_Of_Americans_Self_Identifying_As_Mixed_Race_Surges
    Race and ethnicity in the United States Census
    23:26

    Race and ethnicity in the United States Census

    • Order:
    • Duration: 23:26
    • Uploaded Date: 02 Oct 2014
    • views: 917
    Race and ethnicity in the United States Census, defined by the federal Office of Management and Budget (OMB) and the United States Census Bureau, are self-identification data items in which residents choose the race or races with which they most closely identify, and indicate whether or not they are of Hispanic or Latino origin (the only categories for ethnicity). The racial categories represent a social-political construct for the race or races that respondents consider themselves to be and "generally reflect a social definition of race recognized in this country." OMB defines the concept of race as outlined for the US Census as not "scientific or anthropological" and takes into account "social and cultural characteristics as well as ancestry", using "appropriate scientific methodologies" that are not "primarily biological or genetic in reference." The race categories include both racial and national-origin groups. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
    https://wn.com/Race_And_Ethnicity_In_The_United_States_Census
    US Census Revamps Race and Ethnicity Categories for Improved Demographic Tracking
    0:50

    US Census Revamps Race and Ethnicity Categories for Improved Demographic Tracking

    • Order:
    • Duration: 0:50
    • Uploaded Date: 04 Apr 2024
    • views: 27
    The 2030 U.S. Census is set to introduce significant revisions in race and ethnicity checkboxes, marking the first update in 27 years. Veuer’s Maria Mercedes Galuppo has the story. Subscribe to our channel: http://www.youtube.com/buzz60 Buzz60 is designed for the way we live now. Short, quirky video snacks that are a little sassy, and always smart. Buzz 60 -- and the Buzz60 channel on YouTube - produces all kinds of news video clips for web viewers who want more than just repurposed content. Our team is a diverse group of video journalists with dozens of Emmy awards, an authentic sense of humor, and a mandate to connect with viewers every day. Like us Facebook: http://www.facebook.com/buzz60 Follow us on Twitter: http://twitter.com/Buzz60 Add us to your Circle on Google+: http://bit.ly/12nIt6n
    https://wn.com/US_Census_Revamps_Race_And_Ethnicity_Categories_For_Improved_Demographic_Tracking
    Race and ethnicity in the United States Census | Wikipedia audio article
    26:02

    Race and ethnicity in the United States Census | Wikipedia audio article

    • Order:
    • Duration: 26:02
    • Uploaded Date: 21 Nov 2018
    • views: 14
    This is an audio version of the Wikipedia Article: Race and ethnicity in the United States Census Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio articles too at: https://www.youtube.com/channel/UCuKfABj2eGyjH3ntPxp4YeQ You can upload your own Wikipedia articles through: https://github.com/nodef/wikipedia-tts "The only true wisdom is in knowing you know nothing." - Socrates SUMMARY ======= Race and ethnicity in the United States Census, defined by the federal Office of Management and Budget (OMB) and the United States Census Bureau, are self-identification data items in which residents choose the race or races with which they most closely identify, and indicate whether or not they are of Hispanic or Latino origin (the only categories for ethnicity).The racial categories represent a social-political construct for the race or races that respondents consider themselves to be and, "generally reflect a social definition of race recognized in this country." OMB defines the concept of race as outlined for the US Census as not "scientific or anthropological" and takes into account "social and cultural characteristics as well as ancestry", using "appropriate scientific methodologies" that are not "primarily biological or genetic in reference." The race categories include both racial and national-origin groups.Race and ethnicity are considered separate and distinct identities, with Hispanic or Latino origin asked as a separate question. Thus, in addition to their race or races, all respondents are categorized by membership in one of two ethnic categories, which are "Hispanic or Latino" and "Not Hispanic or Latino". However, the practice of separating "race" and "ethnicity" as different categories has been criticized both by the American Anthropological Association and members of US Commission on Civil Rights.In 1997, OMB issued a Federal Register notice regarding revisions to the standards for the classification of federal data on race and ethnicity. OMB developed race and ethnic standards in order to provide "consistent data on race and ethnicity throughout the Federal Government. The development of the data standards stem in large measure from new responsibilities to enforce civil rights laws." Among the changes, OMB issued the instruction to "mark one or more races" after noting evidence of increasing numbers of interracial children and wanting to capture the diversity in a measurable way and having received requests by people who wanted to be able to acknowledge their or their children's full ancestry rather than identifying with only one group. Prior to this decision, the Census and other government data collections asked people to report only one race.
    https://wn.com/Race_And_Ethnicity_In_The_United_States_Census_|_Wikipedia_Audio_Article
    Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talk
    1:01:50

    Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talk

    • Order:
    • Duration: 1:01:50
    • Uploaded Date: 15 Oct 2021
    • views: 162
    How have we changed the way race & ethnicity is coded? What are some high-level findings on demographic change in the US? How can we access redistricting data & visualizations from the 2020 Census? Jessica E. Peña Ph.D. (she/her), a Statistician Demographer in the Ethnicity & Ancestry Branch of the Population Division of the US Census Bureau and Brittany Rico M.S. (she/her) a Statistician Demographer in the Racial Statistics Branch of the Population Division of the US Census Bureau joined Bluebonnet to share the findings from the 2020 Census.
    https://wn.com/Coding_Race_Ethnicity_Demographic_Changes_In_America_|_US_Census_Bureau_Redistricting_Data_Talk
    Discovering Race and Ethnicity Data on data census gov
    1:05:09

    Discovering Race and Ethnicity Data on data census gov

    • Order:
    • Duration: 1:05:09
    • Uploaded Date: 12 Mar 2021
    • views: 2908
    The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and it's all available in our new data platform, data.census.gov. In this webinar we will define the concepts of race and ethnicity in accordance to the U.S. Office of Management and Budget Standards, and demonstrate how to navigate data.census.gov to access this data. We'll also show you key tips and tricks to zero-in on the data you need, and guide you to additional resources to help you in your search. Please note that this is a webinar on how to find existing race and ethnicity data on data.census.gov. This webinar will not address 2020 Census data. For the slides and written transcript, please see our Census Academy page. https://www.census.gov/data/academy/webinars/2021/discovering-race-and-ethnicity-data-on-data-census-gov.html
    https://wn.com/Discovering_Race_And_Ethnicity_Data_On_Data_Census_Gov
    How to find race and ethnicity from the U S  Census
    1:16

    How to find race and ethnicity from the U S Census

    • Order:
    • Duration: 1:16
    • Uploaded Date: 20 Jan 2022
    • views: 33
    Flashback video from old youtube channel... This is what FactFinder looked like back in 2011-2012...
    https://wn.com/How_To_Find_Race_And_Ethnicity_From_The_U_S_Census
    Collecting and Tabulating Ethnicity and Race Responses in the 2020 Census
    1:07:10

    Collecting and Tabulating Ethnicity and Race Responses in the 2020 Census

    • Order:
    • Duration: 1:07:10
    • Uploaded Date: 25 Feb 2020
    • views: 4222
    Webinar: February 19, 2020 This webinar will provide you with a deeper understanding of how the questions and concepts of race and ethnicity are operationalized in the Census. Topics covered will include: - What is race? - What is ethnicity? - History of race and ethnicity in the United States decennial census - U.S. Office of Management and Budget Standards on Race and Ethnicity - Why data on race and ethnicity is important - 2020 Census question design improvements for race and ethnicity - Common responses to the questions on race and ethnicity and how these responses are interpreted by the Census Bureau #CensusAcademy For more training resources related to this webinar, visit us at: https://www.census.gov/data/academy/webinars/2020/collecting-and-tabulating-ethnicity-and-race-responses-in-2020-census.html census.gov/academy
    https://wn.com/Collecting_And_Tabulating_Ethnicity_And_Race_Responses_In_The_2020_Census
    US Census Race and Ethnicity (Read and Updates)
    1:26:11

    US Census Race and Ethnicity (Read and Updates)

    • Order:
    • Duration: 1:26:11
    • Uploaded Date: 02 Dec 2024
    • views: 90
    Please like share and subscribe!!!!!!!!!!!!!!!! Shop at Amazon: Hit that affiliate link to support this Platform, it's free to do so. ETM Media Group Affiliate Link: https://amzn.to/3XFq31U Etmmediagroup Store: https://www.etmmediagroupstore.com/ Reparations Now Documentary: https://reparationsnowdoc.com/ 2024 Cut The Check Reparations Manifestations Planner: https://amzn.to/46X1Oja Reparations Now on Tubi: https://tubitv.com/movies/100005110/reparations-now
    https://wn.com/US_Census_Race_And_Ethnicity_(Read_And_Updates)
    How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?
    5:47

    How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?

    • Order:
    • Duration: 5:47
    • Uploaded Date: 09 Sep 2021
    • views: 2235
    Did you know that the multi-racial population in the United States has increased by 275.7% since the 2010 Census? Are you looking for data about race and Hispanic Origin for 2010 and 2020? This Data Gem will teach you how to use an interactive data visualization to identify trends for the nation, state, and county. For more Data Gems, visit census.gov/academy Resources: Data Visualization - https://www.census.gov/library/visualizations/interactive/race-and-ethnicity-in-the-united-state-2010-and-2020-census.html
    https://wn.com/How_Can_I_Visualize_Race_And_Hispanic_Origin_Data_From_The_2020_And_2010_Census
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Asian Americans: Last Week Tonight with John Oliver (HBO)

    John Oliver discusses the large and diverse group of people who fall under the term “Asian American”, the history of the model minority stereotype, and why our conversations on the subject need to be better-informed. Connect with Last Week Tonight online... Subscribe to the Last Week Tonight YouTube channel for more almost news as it almost happens: www.youtube.com/lastweektonight Find Last Week Tonight on Facebook like your mom would: www.facebook.com/lastweektonight Follow us on Twitter for news about jokes and jokes about news: www.twitter.com/lastweektonight Visit our official site for all that other stuff at once: www.hbo.com/lastweektonight
    27:02
    Asian Americans: Last Week Tonight with John Oliver (HBO)
    John Oliver discusses the large and diverse group of people who fall under the term “Asian...
    published: 07 Jun 2021
    Play in Full Screen
    14:54
    Why Everyone Hates Asian Americans
    Asian Americans are in a unique situation where they face a lot of hate, but have very few...
    published: 25 Feb 2024
    Play in Full Screen
    1:31
    Asian Americans: PBS documentary series | KQED
    Asian Americans is a five-part PBS documentary series that delivers a fresh perspective on...
    published: 01 May 2020
    Play in Full Screen
    5:16
    'Discrimination Against Asian-Americans Is Wrong - Yes Or Now?': Hawley Grills Biden Nominee
    At today's Senate Judiciary Committee hearing, Sen. Josh Hawley (R-MO) questioned Kelley B...
    published: 07 Sep 2022
    Play in Full Screen
    10:43
    How Income Inequality Became A Big Issue Among Asian Americans
    The Asian American Pacific Islander population is extremely diverse, culturally and econom...
    published: 22 May 2021
    Play in Full Screen
    13:43
    Asian-Americans are Overachievers, This is Why | Thomas Sowell
    Asian-Americans are Overachievers, This is Why --- 👉 Join this channel to get access to pe...
    published: 20 Dec 2023
    Play in Full Screen
    2:08
    Suspects arrested in home invasion ring that targeted Asian Americans | FOX 13 Seattle
    Federal and local law enforcement called the operation a "robbery ring built on fear," bel...
    published: 16 Aug 2024
    Play in Full Screen
    5:56
    Asian Americans face rise in racist incidents
    There has been more than an 800% increase in racist incidents against Asian Americans repo...
    published: 10 Oct 2020
    Play in Full Screen
    1:09
    New Asian-American community center, Cambodian temple coming to Westbrook
    A new Asian-American community center and Cambodian temple is coming to Westbrook after th...
    published: 15 Aug 2024
    Play in Full Screen
    8:43
    How 24+ million Asian Americans can change the 2024 presidential election | The Big Deal
    "The Big Deal" continues to examine key voting blocs that could play a big role in decidin...
    published: 17 Aug 2024
    Play in Full Screen

    Asian American International Film Festival

    The Asian American International Film Festival (AAIFF) is an international film festival held annually during the summer in New York City to showcase the works of both emerging and experienced Asian and Asian American filmmakers and media artists across a diverse range of genres and styles.

    Current Festival

    The 39th Asian American International Film Festival will be held from July 21-30, 2016. The AAIFF'16 will be celebrating all over NYC, in Manhattan, Brooklyn, and Queens.

    History

    In 1975, grassroots media activists Peter Chow, Danny Yung, Thomas Tam and Christine Choy founded Asian CineVision (ACV), a nonprofit media arts organization "dedicated to promoting and preserving Asian and Asian American media expressions", under the name CCTV (Chinese Cable TV) in New York’s Chinatown. At a time of exceptional energy and assertion on the part of diverse cultural groups, claiming their voices and places in a landscape that had been dominated by European Americans, ACV’s founders saw the need to bring greater social and cultural awareness of Asian American experience and history to both Asian American communities and to the public at large. Moving-image media had become the nation’s common language, its most pervasive source of images and ideas, and Asian Americans barely registered on its screens. ACV’s founders wanted to address problems faced by Asian Americans in both representation in the media and access to the means of media production and distribution. Technologies and outlets for independent media were multiplying, creating new possibilities for Asian Americans both behind and in front of the cameras, in production and distribution, in scholarship and practice, in every style and platform of media arts.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Census
      2:35
      U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Censusremove from playlist
    • Gravitas: America's Race Census 2021
      4:19
      Gravitas: America's Race Census 2021remove from playlist
    • Using data census gov to Explore Race & Ethnicity Data
      1:06:43
      Using data census gov to Explore Race & Ethnicity Dataremove from playlist
    • Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surges
      33:31
      Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surgesremove from playlist
    • Race and ethnicity in the United States Census
      23:26
      Race and ethnicity in the United States Censusremove from playlist
    • US Census Revamps Race and Ethnicity Categories for Improved Demographic Tracking
      0:50
      US Census Revamps Race and Ethnicity Categories for Improved Demographic Trackingremove from playlist
    • Race and ethnicity in the United States Census | Wikipedia audio article
      26:02
      Race and ethnicity in the United States Census | Wikipedia audio articleremove from playlist
    • Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talk
      1:01:50
      Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talkremove from playlist
    • Discovering Race and Ethnicity Data on data census gov
      1:05:09
      Discovering Race and Ethnicity Data on data census govremove from playlist
    • How to find race and ethnicity from the U S  Census
      1:16
      How to find race and ethnicity from the U S Censusremove from playlist
    • Collecting and Tabulating Ethnicity and Race Responses in the 2020 Census
      1:07:10
      Collecting and Tabulating Ethnicity and Race Responses in the 2020 Censusremove from playlist
    • US Census Race and Ethnicity (Read and Updates)
      1:26:11
      US Census Race and Ethnicity (Read and Updates)remove from playlist
    • How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?
      5:47
      How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    U.S. Census changing race, ethnicity categories

    The form will only have one question regarding race and ethnicity.
    0:47
    U.S. Census changing race, ethnicity categories
    The form will only have one question regarding race and ethnicity.
    published: 29 Mar 2024
    Play in Full Screen
    2:35
    U.S. Population More Racially, Ethnically Diverse Than Ever: 2020 Census
    The number of people of color in the U.S. is growing, pointing toward a future in which th...
    published: 12 Aug 2021
    Play in Full Screen
    4:19
    Gravitas: America's Race Census 2021
    A survey by US census bureau has revealed that America's white population has shrunk for t...
    published: 13 Aug 2021
    Play in Full Screen
    1:06:43
    Using data census gov to Explore Race & Ethnicity Data
    The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and ...
    published: 02 May 2023
    Play in Full Screen
    33:31
    Census: U.S. More Racially Diverse, Percentage Of Americans Self-Identifying As Mixed-Race Surges
    As experts predicted, early findings from the 2020 census show that the U.S. population is...
    published: 12 Aug 2021
    Play in Full Screen
    23:26
    Race and ethnicity in the United States Census
    Race and ethnicity in the United States Census, defined by the federal Office of Managemen...
    published: 02 Oct 2014
    Play in Full Screen
    0:50
    US Census Revamps Race and Ethnicity Categories for Improved Demographic Tracking
    The 2030 U.S. Census is set to introduce significant revisions in race and ethnicity check...
    published: 04 Apr 2024
    Play in Full Screen
    26:02
    Race and ethnicity in the United States Census | Wikipedia audio article
    This is an audio version of the Wikipedia Article: Race and ethnicity in the United State...
    published: 21 Nov 2018
    Play in Full Screen
    1:01:50
    Coding Race & Ethnicity: Demographic Changes in America | US Census Bureau Redistricting Data Talk
    How have we changed the way race & ethnicity is coded? What are some high-level findings o...
    published: 15 Oct 2021
    Play in Full Screen
    1:05:09
    Discovering Race and Ethnicity Data on data census gov
    The Census Bureau has ample demographic and socioeconomic data by race and ethnicity, and ...
    published: 12 Mar 2021
    Play in Full Screen
    1:16
    How to find race and ethnicity from the U S Census
    Flashback video from old youtube channel... This is what FactFinder looked like back in 20...
    published: 20 Jan 2022
    Play in Full Screen
    1:07:10
    Collecting and Tabulating Ethnicity and Race Responses in the 2020 Census
    Webinar: February 19, 2020 This webinar will provide you with a deeper understanding of ...
    published: 25 Feb 2020
    Play in Full Screen
    1:26:11
    US Census Race and Ethnicity (Read and Updates)
    Please like share and subscribe!!!!!!!!!!!!!!!! Shop at Amazon: Hit that affiliate link...
    published: 02 Dec 2024
    Play in Full Screen
    5:47
    How Can I Visualize Race and Hispanic Origin Data from the 2020 and 2010 Census?
    Did you know that the multi-racial population in the United States has increased by 275.7%...
    published: 09 Sep 2021
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×