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

District 2

District 2 can refer to:

  • District 2, Düsseldorf, Germany
  • District 2, Grand Bassa County, a district in Liberia
  • District 2, Ho Chi Minh City, Vietnam
  • District 2 (New York City Council), a New York city council district
  • II District, Turku, in Finland
  • District 2 (Zurich), a district in the city of Zurich
  • District 2 (Sirte), Sirte, Libya
  • District 2, an electoral district of Malta
  • District 2, a police district of Malta
  • District 2 (Hunger Games), a fictional district in the Hunger Games books and films
  • See also

  • Sector 2 (Bucharest)
  • District 1 (disambiguation)
  • District 3 (disambiguation)
  • District 2 (Zürich)

    District 2 is a district on the western side of Lake Zürich in the Swiss city of Zürich.

    The district comprises the quarters Wollishofen, Leimbach and Enge.

    References

    Coordinates: 47°20′13″N 8°31′16″E / 47.337°N 8.521°E / 47.337; 8.521


    Fictional universe of The Hunger Games

    The Hunger Games universe is a fictional world appearing in The Hunger Games trilogy written by Suzanne Collins.

    Panem

    The series takes place at an unspecified point in the future. By this time, the nation of Panem rules North America in place of the governments of Canada, the United States, and Mexico, which failed to survive.

    Panem's seat of power is a superficially utopian city called the Capitol located in the Rocky Mountains. Outside of the Capitol, the nation is divided into twelve districts under the hegemony of a totalitarian dictatorship, headed by the tyrannical President Coriolanus Snow. A thirteenth district had existed but was destroyed by the Capitol seventy-five years prior to the beginning of The Hunger Games during a period known as the Dark Days. In Mockingjay, it is revealed that District 13 retreated underground after the Dark Days. This was the main source of the rebellion that happened in Catching Fire and Mockingjay. The Capitol developed the Hunger Games as an annual event to punish the citizens of Panem for their rebellion and to remind citizens of consequences for rebelling against the absolute power of the Capitol. The country of Panem, though occupying the whole of North America, isn't as big as the current North America.

    Podcasts:

    • DISTRICT 2 - BANTEN | PESERTA ACADEMY OF CHAMPIONS! 🔥 MENYALAAA! # #academyofchampions #ruangguru

      _______________________________________________________________________________________________ Download aplikasi Ruangguru sekarang! ☞ Android: https://tinyurl.com/rgappandroid ☞ iOS: https://tinyurl.com/rgappsios Untuk komentar, saran, pertanyaan, dan keluhan mengenai layanan Ruangguru, mohon DM di Instagram @ruangguru atau kirim email ke info@ruangguru.com Ada pertanyaan? Hubungi Tim Ruangguru di: ☎ Telepon: (021) 2854 - 3000 ✉ E-mail: info@ruangguru.com ✎ Website: https://ruangguru.com/ Hubungi whatsapp RUANGGURU dan ketik HALO Hubungi: 0815-7820-0000 Jangan ketinggalan kabar terbaru dari Ruangguru! ✽ Instagram: https://www.instagram.com/ruangguru/ ✽ Twitter: https://twitter.com/ruangguru ✽ Facebook: https://www.facebook.com/ruanggurucom ✽ LINE: @ruangguru http://bit.ly/LINERG ✽ ...

      published: 16 Dec 2024
    • Hunger Games Deep Dives: District Two

      Part Two of a thirteen part series taking a look at every district in Panem! Tiktok: LuckyLeftie https://www.tiktok.com/@luckyleftie?lang=en Instagram: thefourthsaluki https://www.instagram.com/thefourthsaluki/ Business email: luckyleftiebusiness@gmail.com

      published: 17 Nov 2023
    • District 2 Hymn

      With music in our 💕

      published: 12 Apr 2021
    • Exploring Thao Dien: Vietnam's Expat Paradise in Saigon's District 2

      I am exploring Thao Dien, Ho Chi Minh's upscale expat paradise in District 2. I was shocked by how different District 2 feels and is to the rest of Saigon. It is really a unique blend of Eastern charm and Western comfort that defines Thao Dien and which is why expats choose to settle here. Would you want to live there? 👍 If you find this video helpful or interesting in any way, I'd appreciate you hitting that like, comment subscribe button, which helps me sooo much! SAY HI 💬 INSTAGRAM: https://www.instagram.com/rita.loves.travel/ 💬 TIKTOK: https://www.tiktok.com/@rita.loves.travel 💬 FACEBOOK: https://www.facebook.com/rita.loves.travel 💬 WEBSITE: https://www.ritalovestravel.com GREAT OFFERS AND MORE FOR YOU* 🏥 Get the best travel health insurance: www.genki.world/with/ritalovestrave...

      published: 27 Jul 2024
    • DISTRICT - ALLSTAR Pt. 2 (Official Music Video)

      Directed by: BRVIN Assistant Director: Jayze Workz DOP | Editor: Jayze Workz Beats Prod. by: Andre Givenchy Mix & Mastered by: Jayze Gold Recorded @ @oneproexclusive Allrights Reserved 2022

      published: 01 Dec 2022
    • The Hunger Games Mockingjay part 2 going to district 2

      Katniss after her dream wakes up on the plane and she is on the way to district 2

      published: 20 Apr 2016
    • Katniss Joins The Fight In District 2 | The Hunger Games: Mockingjay Part 2

      Katniss (Jennifer Lawrence) rallies everyone around her to take the fight to Snow (Donald Sutherland) at the Capitol. President Snow plans for their arrival. #HungerGames #TheHungerGames #MockingjayPart2 Watch the Full Movie Now! https://www.lionsgate.com/franchises/the-hunger-games https://www.facebook.com/TheHungerGamesMovie http://www.twitter.com/TheHungerGames http://www.instagram.com/TheHungerGames At its core, the story of The Hunger Games is about the power of one person to change the world. Set in the future remnants of the USA in a new nation called Panem, one male and one female "tribute" between the ages of 11 and 18 from each of Panem's twelve districts is forced to participate in an annual competition called the Hunger Games, which is broadcast live throughout the country ...

      published: 01 Nov 2023
    • Saigon Vietnam District 2-Expat Heaven

      Ho Chi Minh City's District 2 is where all the expats live. Today I explore district 2 to find out why. 🌏🌏 Enjoy Watching Travel Videos? I bet you do.. But.. wouldn’t you rather be actually traveling the world right now? If the answer is yes, you might like my travel class hosted on Skillshare! Not A Skillshare Member? Use this link to get 1 month of Skillshare for free! https://www.skillshare.com/r/profile/Adam-Bartnik/2791453?gr_tch_ref=on I’ll See you in the Course! And then hopefully run into you in a Tropical Paradise somewhere! 🌏🌏 📸 V I D E O G E A R I U S E 📸 Main Camera - https://amzn.to/3K1bXzO Secondary camera - https://amzn.to/3aLL6IF Main Drone - https://amzn.to/3vpZnUA FPV Drone - https://amzn.to/3aSgXY9 Laptop for Video Editing- https://amzn.to/3lTkBqZ Por...

      published: 20 Jul 2022
    • Huron School District 2-2 Live Stream - Board of Education Regular Meeting

      published: 25 Mar 2025
    • Profil District 2 Banten - Academy of Champions #academyofchampions

      Profil District 2 Banten - Academy of Champions Ruang Guru Berikut profil Academy of Champions dari Distrik 2 Banten diantaranya ada : 1. Rexx dari SMA Kharisma Bangsa Tangerang Selatan 2. Yuriko dari SMA Kristen Penabur Gading Serpong 3. Jonathan dari SMA Negeri 6 Kota Tangerang Selatan #aoc #aocruangguru #ruangguru #academyofchampions #district1jakarta #reihanaoc #clarissaaoc #matthewaoc #kelaspengetahuanchannel #smakharismatangsel #smakpenaburgading #sman6kotatangerang #axelcoc

      published: 08 Jan 2025
    DISTRICT 2 - BANTEN | PESERTA ACADEMY OF CHAMPIONS! 🔥 MENYALAAA! # #academyofchampions #ruangguru
    0:11

    DISTRICT 2 - BANTEN | PESERTA ACADEMY OF CHAMPIONS! 🔥 MENYALAAA! # #academyofchampions #ruangguru

    • Order:
    • Duration: 0:11
    • Uploaded Date: 16 Dec 2024
    • views: 288901
    _______________________________________________________________________________________________ Download aplikasi Ruangguru sekarang! ☞ Android: https://tinyurl.com/rgappandroid ☞ iOS: https://tinyurl.com/rgappsios Untuk komentar, saran, pertanyaan, dan keluhan mengenai layanan Ruangguru, mohon DM di Instagram @ruangguru atau kirim email ke info@ruangguru.com Ada pertanyaan? Hubungi Tim Ruangguru di: ☎ Telepon: (021) 2854 - 3000 ✉ E-mail: info@ruangguru.com ✎ Website: https://ruangguru.com/ Hubungi whatsapp RUANGGURU dan ketik HALO Hubungi: 0815-7820-0000 Jangan ketinggalan kabar terbaru dari Ruangguru! ✽ Instagram: https://www.instagram.com/ruangguru/ ✽ Twitter: https://twitter.com/ruangguru ✽ Facebook: https://www.facebook.com/ruanggurucom ✽ LINE: @ruangguru http://bit.ly/LINERG ✽ Tiktok: @ruangguru https://www.tiktok.com/@ruangguru
    https://wn.com/District_2_Banten_|_Peserta_Academy_Of_Champions_🔥_Menyalaaa_Academyofchampions_Ruangguru
    Hunger Games Deep Dives: District Two
    12:35

    Hunger Games Deep Dives: District Two

    • Order:
    • Duration: 12:35
    • Uploaded Date: 17 Nov 2023
    • views: 152690
    Part Two of a thirteen part series taking a look at every district in Panem! Tiktok: LuckyLeftie https://www.tiktok.com/@luckyleftie?lang=en Instagram: thefourthsaluki https://www.instagram.com/thefourthsaluki/ Business email: luckyleftiebusiness@gmail.com
    https://wn.com/Hunger_Games_Deep_Dives_District_Two
    District 2 Hymn
    2:06

    District 2 Hymn

    • Order:
    • Duration: 2:06
    • Uploaded Date: 12 Apr 2021
    • views: 11424
    With music in our 💕
    https://wn.com/District_2_Hymn
    Exploring Thao Dien: Vietnam's Expat Paradise in Saigon's District 2
    20:36

    Exploring Thao Dien: Vietnam's Expat Paradise in Saigon's District 2

    • Order:
    • Duration: 20:36
    • Uploaded Date: 27 Jul 2024
    • views: 17301
    I am exploring Thao Dien, Ho Chi Minh's upscale expat paradise in District 2. I was shocked by how different District 2 feels and is to the rest of Saigon. It is really a unique blend of Eastern charm and Western comfort that defines Thao Dien and which is why expats choose to settle here. Would you want to live there? 👍 If you find this video helpful or interesting in any way, I'd appreciate you hitting that like, comment subscribe button, which helps me sooo much! SAY HI 💬 INSTAGRAM: https://www.instagram.com/rita.loves.travel/ 💬 TIKTOK: https://www.tiktok.com/@rita.loves.travel 💬 FACEBOOK: https://www.facebook.com/rita.loves.travel 💬 WEBSITE: https://www.ritalovestravel.com GREAT OFFERS AND MORE FOR YOU* 🏥 Get the best travel health insurance: www.genki.world/with/ritalovestravel 🚊Book your train tickets in Asia easily: https://12go.com/?z=8150424 👁️ Great tours and more on GetYourGuide: https://gyg.me/CVtmDFh2 ✈️ Book the best flights: https://skyscanner.pxf.io/AWGqQJ 💸 £5 for you when you sign up on Monzo: https://join.monzo.com/c/xgnvjmx 📱$3 off your e-sim: https://getnomad.page.link/app - enter code RITA28QY to redeem 🧳 $20 off your AWAY luggage: https://referrals-uk.awaytravel.com/2qs8b2np _________________ SUPPORT ME 👍 Leave your like on this video - it really does help! ☕️ Support me by buying me a coffee: https://www.buymeacoffee.com/ritalovestravel 😲 See what my travel must-haves are: https://kit.co/Rita_Loves_Travel SEE MORE AMAZING DESTINATIONS Visiting India? https://youtube.com/playlist?list=PLwPFsxZuzKnaYHNJrBIr8GxJqA7GKDpJH&si=bj9_TjyPuivXM8td ___________________ CHAPTERS 00:00 - Where expats live in Vietnam 00:46 - Coffee in District 2 Saigon 01:48 - Shopping in Thao Dien 02:40 - International Schools in Thao Dien 04:33 - Exploring District 2 in Saigon 06:13 - International Food in District 2 HCMC 11:15 - Dog heaven in District 2 12:07 - Why I would live in District 2 of Saigon 13:31 - Cars in Vietnam 14:37 - Fancy supermarket in Thao Dien Saigon 15:54 - Puppy shop in Thao Dien 17:51 - Cat Cafe in Ho Chi Minh City 18:52 - Coffee in District 2 19:06 - Street fun in Ho Chi Minh City 19:29 - Dinner in Thao Dien Saigon 20:05 - Heading back to District 1 in Saigon ___________________ #ThaoDien #District2 #HoChiMinhCity #Saigon #Vietnam #ExpatLife #TravelVlog #ExploreVietnam #LuxuryLiving #VietnamTravel #SaigonLife #ExpatsInVietnam #UrbanExploration #HiddenGems #CityAdventure #VietnamCulture #TravelGuide #VisitVietnam #SaigonAdventures #CityVibes #TravelDiary #VietnamExperience #DiscoverSaigon #ExpatsAbroad
    https://wn.com/Exploring_Thao_Dien_Vietnam's_Expat_Paradise_In_Saigon's_District_2
    DISTRICT - ALLSTAR Pt. 2 (Official Music Video)
    8:39

    DISTRICT - ALLSTAR Pt. 2 (Official Music Video)

    • Order:
    • Duration: 8:39
    • Uploaded Date: 01 Dec 2022
    • views: 29621
    Directed by: BRVIN Assistant Director: Jayze Workz DOP | Editor: Jayze Workz Beats Prod. by: Andre Givenchy Mix & Mastered by: Jayze Gold Recorded @ @oneproexclusive Allrights Reserved 2022
    https://wn.com/District_Allstar_Pt._2_(Official_Music_Video)
    The Hunger Games Mockingjay part 2 going to district 2
    5:17

    The Hunger Games Mockingjay part 2 going to district 2

    • Order:
    • Duration: 5:17
    • Uploaded Date: 20 Apr 2016
    • views: 336182
    Katniss after her dream wakes up on the plane and she is on the way to district 2
    https://wn.com/The_Hunger_Games_Mockingjay_Part_2_Going_To_District_2
    Katniss Joins The Fight In District 2 | The Hunger Games: Mockingjay Part 2
    7:22

    Katniss Joins The Fight In District 2 | The Hunger Games: Mockingjay Part 2

    • Order:
    • Duration: 7:22
    • Uploaded Date: 01 Nov 2023
    • views: 197612
    Katniss (Jennifer Lawrence) rallies everyone around her to take the fight to Snow (Donald Sutherland) at the Capitol. President Snow plans for their arrival. #HungerGames #TheHungerGames #MockingjayPart2 Watch the Full Movie Now! https://www.lionsgate.com/franchises/the-hunger-games https://www.facebook.com/TheHungerGamesMovie http://www.twitter.com/TheHungerGames http://www.instagram.com/TheHungerGames At its core, the story of The Hunger Games is about the power of one person to change the world. Set in the future remnants of the USA in a new nation called Panem, one male and one female "tribute" between the ages of 11 and 18 from each of Panem's twelve districts is forced to participate in an annual competition called the Hunger Games, which is broadcast live throughout the country for the entertainment of the Capitol's wealthy residents. Now, bestselling author Suzanne Collins and the world of The Hunger Games return in her latest addition to the series: The Ballad of Songbirds and Snakes.
    https://wn.com/Katniss_Joins_The_Fight_In_District_2_|_The_Hunger_Games_Mockingjay_Part_2
    Saigon Vietnam District 2-Expat Heaven
    7:47

    Saigon Vietnam District 2-Expat Heaven

    • Order:
    • Duration: 7:47
    • Uploaded Date: 20 Jul 2022
    • views: 27902
    Ho Chi Minh City's District 2 is where all the expats live. Today I explore district 2 to find out why. 🌏🌏 Enjoy Watching Travel Videos? I bet you do.. But.. wouldn’t you rather be actually traveling the world right now? If the answer is yes, you might like my travel class hosted on Skillshare! Not A Skillshare Member? Use this link to get 1 month of Skillshare for free! https://www.skillshare.com/r/profile/Adam-Bartnik/2791453?gr_tch_ref=on I’ll See you in the Course! And then hopefully run into you in a Tropical Paradise somewhere! 🌏🌏 📸 V I D E O G E A R I U S E 📸 Main Camera - https://amzn.to/3K1bXzO Secondary camera - https://amzn.to/3aLL6IF Main Drone - https://amzn.to/3vpZnUA FPV Drone - https://amzn.to/3aSgXY9 Laptop for Video Editing- https://amzn.to/3lTkBqZ Portable Laptop Stand - https://amzn.to/3lUpQ9G Portable Monitor - https://amzn.to/3vwpREg ✈ T R A V E L G E A R I R E C O M M E N D ✈ Universal Travel Adapter - https://amzn.to/3BVHuj1 Packing Cubes - https://amzn.to/3DPcuSv Best Travel Underwear - https://amzn.to/3AXvbld Best Travel Shirt - https://amzn.to/3AZqZkN 💲 D E A L S 💲 Music I use in My videos - https://bit.ly/3B2Ok5i Where I learned the Business of Youtube and How To Edit Videos: - https://bit.ly/3BS9rZ7 🙏 W A Y S T O S U P P O R T M E 🙏 Want to help support me to be able to stay on the road making videos? I will be forever grateful :) Patreon - https://www.patreon.com/AdamVentures Paypal - https://paypal.me/adamventures Purchase My Travel Course - https://bit.ly/3lXFG3K 😀 F R E E W A Y S T O S U P P O R T M E 😀 Like all my videos, share the channel with you friends, Use one of the links above before purchasing something on Amazon and I will get a small kickback. You Can also share my travel course with someone you know that wants to travel :) 👋 L E T S B E F R I E N D S 👋 Subscribe for more videos - https://www.youtube.com/c/adamventurestravel Instagram - https://www.instagram.com/adam.ventures.videos/ * Some of these links are affiliate links, I may receive a small kickback for referring you at no additional cost to you
    https://wn.com/Saigon_Vietnam_District_2_Expat_Heaven
    Huron School District 2-2 Live Stream - Board of Education Regular Meeting
    51:43

    Huron School District 2-2 Live Stream - Board of Education Regular Meeting

    • Order:
    • Duration: 51:43
    • Uploaded Date: 25 Mar 2025
    • views: 36
    https://wn.com/Huron_School_District_2_2_Live_Stream_Board_Of_Education_Regular_Meeting
    Profil District 2 Banten - Academy of Champions #academyofchampions
    0:39

    Profil District 2 Banten - Academy of Champions #academyofchampions

    • Order:
    • Duration: 0:39
    • Uploaded Date: 08 Jan 2025
    • views: 1481
    Profil District 2 Banten - Academy of Champions Ruang Guru Berikut profil Academy of Champions dari Distrik 2 Banten diantaranya ada : 1. Rexx dari SMA Kharisma Bangsa Tangerang Selatan 2. Yuriko dari SMA Kristen Penabur Gading Serpong 3. Jonathan dari SMA Negeri 6 Kota Tangerang Selatan #aoc #aocruangguru #ruangguru #academyofchampions #district1jakarta #reihanaoc #clarissaaoc #matthewaoc #kelaspengetahuanchannel #smakharismatangsel #smakpenaburgading #sman6kotatangerang #axelcoc
    https://wn.com/Profil_District_2_Banten_Academy_Of_Champions_Academyofchampions
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 1:56:55

    DISTRICT 2 - BANTEN | PESERTA ACADEMY OF CHAMPIONS! 🔥 MENYALAAA! # #academyofchampions #ruangguru

    _______________________________________________________________________________________________ Download aplikasi Ruangguru sekarang! ☞ Android: https://tinyurl.com/rgappandroid ☞ iOS: https://tinyurl.com/rgappsios Untuk komentar, saran, pertanyaan, dan keluhan mengenai layanan Ruangguru, mohon DM di Instagram @ruangguru atau kirim email ke info@ruangguru.com Ada pertanyaan? Hubungi Tim Ruangguru di: ☎ Telepon: (021) 2854 - 3000 ✉ E-mail: info@ruangguru.com ✎ Website: https://ruangguru.com/ Hubungi whatsapp RUANGGURU dan ketik HALO Hubungi: 0815-7820-0000 Jangan ketinggalan kabar terbaru dari Ruangguru! ✽ Instagram: https://www.instagram.com/ruangguru/ ✽ Twitter: https://twitter.com/ruangguru ✽ Facebook: https://www.facebook.com/ruanggurucom ✽ LINE: @ruangguru http://bit.ly/LINERG ✽ Tiktok: @ruangguru https://www.tiktok.com/@ruangguru
    0:11
    DISTRICT 2 - BANTEN | PESERTA ACADEMY OF CHAMPIONS! 🔥 MENYALAAA! # #academyofchampions #ruangguru
    __________________________________________________________________________________________...
    published: 16 Dec 2024
    Play in Full Screen
    12:35
    Hunger Games Deep Dives: District Two
    Part Two of a thirteen part series taking a look at every district in Panem! Tiktok: Luck...
    published: 17 Nov 2023
    Play in Full Screen
    2:06
    District 2 Hymn
    With music in our 💕
    published: 12 Apr 2021
    Play in Full Screen
    20:36
    Exploring Thao Dien: Vietnam's Expat Paradise in Saigon's District 2
    I am exploring Thao Dien, Ho Chi Minh's upscale expat paradise in District 2. I was shocke...
    published: 27 Jul 2024
    Play in Full Screen
    8:39
    DISTRICT - ALLSTAR Pt. 2 (Official Music Video)
    Directed by: BRVIN Assistant Director: Jayze Workz DOP | Editor: Jayze Workz Beats Prod. b...
    published: 01 Dec 2022
    Play in Full Screen
    5:17
    The Hunger Games Mockingjay part 2 going to district 2
    Katniss after her dream wakes up on the plane and she is on the way to district 2
    published: 20 Apr 2016
    Play in Full Screen
    7:22
    Katniss Joins The Fight In District 2 | The Hunger Games: Mockingjay Part 2
    Katniss (Jennifer Lawrence) rallies everyone around her to take the fight to Snow (Donald ...
    published: 01 Nov 2023
    Play in Full Screen
    7:47
    Saigon Vietnam District 2-Expat Heaven
    Ho Chi Minh City's District 2 is where all the expats live. Today I explore district 2 to ...
    published: 20 Jul 2022
    Play in Full Screen
    51:43
    Huron School District 2-2 Live Stream - Board of Education Regular Meeting
    published: 25 Mar 2025
    Play in Full Screen
    0:39
    Profil District 2 Banten - Academy of Champions #academyofchampions
    Profil District 2 Banten - Academy of Champions Ruang Guru Berikut profil Academy of Champ...
    published: 08 Jan 2025
    Play in Full Screen

    District 2

    District 2 can refer to:

  • District 2, Düsseldorf, Germany
  • District 2, Grand Bassa County, a district in Liberia
  • District 2, Ho Chi Minh City, Vietnam
  • District 2 (New York City Council), a New York city council district
  • II District, Turku, in Finland
  • District 2 (Zurich), a district in the city of Zurich
  • District 2 (Sirte), Sirte, Libya
  • District 2, an electoral district of Malta
  • District 2, a police district of Malta
  • District 2 (Hunger Games), a fictional district in the Hunger Games books and films
  • See also

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

    Latest News for: district 2

    Edit

    Second-quarter honor rolls: J. Watson Bailey Middle School

    Daily Freeman 30 Mar 2025
    KINGSTON, N.Y. — J. Watson Bailey Middle School has released its highest honor (94.5 to 100), high honor (89.5 to 94.49), and honor (84.5 to 89.49) for the second quarter. Grade 8 ... Grade 7 ... Williams, Daphne Wood-Fiori, Jessica Yang, Jason Ye ... ....
    Edit

    Second-quarter honor rolls: M. Cliford Miller Middle School

    Daily Freeman 30 Mar 2025
    LAKE KATRINE, N.Y. — M. Clifford Miller Middle School has released its highest honor (94.50 to 100), high honor (89.50 to 94.49) and honor (84.50 to 89.49) rolls for the second quarter. Grade 8 ... Grade 7 ... ....
    Edit

    Significant Weather Event Declared for All District Roads in Muskoka – Mar. 29, 2025 (District Municipality of Muskoka)

    Public Technologies 29 Mar 2025
    29, 2025 (Muskoka, ON) - The District has declared a Significant Weather Event for all District roads throughout Muskoka effective immediately ... impact road maintenance operations across the District.
    Edit

    District of Columbia Unemployment Rate at 5.4 Percent in February (District of Columbia Department of Employment Services)

    Public Technologies 29 Mar 2025
    The District's preliminary February job estimate shows an increase of 700 jobs, for a total of 762,100 jobs in the District ... The number of employed District residents increased by 1,300 from 396,000 in January 2025 to 397,300 in February 2025.
    Edit

    Senator Rosen Denounces Trump’s Appointment of Sigal Chattah as Interim U.S. Attorney for the District of Nevada (Jacky Rosen)

    Public Technologies 29 Mar 2025
    ). WASHINGTON, DC - Today, U.S. Senator Jacky Rosen (D-NV) issued the following statement in response to President Donald Trump naming Sigal Chattah as the interim U.S. Attorney for the District of Nevada. ... ### ... Disclaimer ... (noodl. 123344198) .
    Edit

    Traffic Advisories for the Week of March 30, 2025 (District of Columbia Department of Transportation)

    Public Technologies 29 Mar 2025
    The District Department of Transportation's (DDOT) mission is to enhance the quality of life for ... Visit goDCgo.com for more information on transportation options in the District.
    Edit

    California principal blocked Border Patrol recruiter from career fair; school district apologizes

    Hastings Tribune 29 Mar 2025
    LOS ANGELES — The Coachella Valley Unified School District has apologized to the U.S. Border Patrol after one of its recruiters was barred from attending a high school career fair earlier this week ... .
    ×