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

Washington, D.C.

Washington, D.C., formally the District of Columbia and commonly referred to as "Washington", "the District", or simply "D.C.", is the capital of the United States. The signing of the Residence Act on July 16, 1790, approved the creation of a capital district located along the Potomac River on the country's East Coast. The U.S. Constitution provided for a federal district under the exclusive jurisdiction of the Congress and the District is therefore not a part of any U.S. state.

The states of Maryland and Virginia each donated land to form the federal district, which included the pre-existing settlements of Georgetown and Alexandria. Named in honor of George Washington, the City of Washington was founded in 1791 to serve as the new national capital. In 1846, Congress returned the land originally ceded by Virginia; in 1871, it created a single municipal government for the remaining portion of the District.

Washington had an estimated population of 672,228 as of July 2015. Commuters from the surrounding Maryland and Virginia suburbs raise the city's population to more than one million during the workweek. The Washington metropolitan area, of which the District is a part, has a population of over 6 million, the seventh-largest metropolitan statistical area in the country.

Southeast, Washington, D.C.

Southeast (SE or S.E.) is the southeastern quadrant of Washington, D.C., the capital of the United States, and is located south of East Capitol Street and east of South Capitol Street. It includes the Capitol Hill and Anacostia neighborhoods, the Navy Yard, the U.S. Marine Barracks, the Anacostia River waterfront, Eastern Market, the remains of several Civil War-era forts, historic St. Elizabeths Hospital, RFK Stadium, Nationals Park, and the Congressional Cemetery. It is also contains a landmark known as "The Big Chair," located on Martin Luther King Avenue. The quadrant is bisected by the Anacostia River, with the portion that is west of the river sometimes referred to as "Near Southeast".

Government

Politically, Southeast includes most of Ward 8, as well as much of Wards 6 and 7. Marion Barry, the former mayor of Washington, D.C., served as D.C. Council Member for Ward 8 until his death on November 23, 2014.

Culture

Nationals Park, the current ballpark for Major League Baseball's Washington Nationals, opened in Southeast in March 2008.

Northeast, Washington, D.C.

Northeast (NE or N.E.) is the northeastern quadrant of Washington, D.C., the capital of the United States. It encompasses the area located north of East Capitol Street and east of North Capitol Street.

Northeast includes the neighborhoods of

  • Atlas District (H Street Corridor)
  • Brentwood
  • Brookland
  • Deanwood
  • Eckington
  • Edgewood
  • Fort Lincoln
  • Fort Totten
  • Ivy City
  • Kenilworth
  • Kingman Park
  • Marshall Heights
  • Michigan Park
  • Near Northeast
  • Pleasant Hill
  • Riggs Park
  • Stanton Park
  • Trinidad
  • Woodridge
  • A significant section of Capitol Hill is also located in Northeast, as is part of NoMa. The population of Northeast is predominantly African-American, particularly east of the Anacostia River.

    Politically, Northeast includes most of Ward 5, much of Wards 6 and 7, and parts of Ward 4.

    Landmarks

    Northeast is home to Gallaudet University, a federally chartered private university for the education of the deaf and hard of hearing located in the Trinidad neighborhood. It is also home to The Catholic University of America and Trinity Washington University, two of the Catholic institutions which give the Brookland neighborhood its nickname of "Little Rome" or "Little Vatican." Others include the Basilica of the National Shrine of the Immaculate Conception, the Saint John Paul II National Shrine, the Mount St. Sepulchre Franciscan Monastery, and the headquarters of the United States Conference of Catholic Bishops.

    Northwest, Washington, D.C.

    Northwest (NW or N.W.) is the northwestern quadrant of Washington, D.C., the capital of the United States, and is located north of the National Mall and west of North Capitol Street. It is the largest of the four quadrants of the city (NW, NE, SW and SE), and it includes the central business district, the Federal Triangle, and the museums along the northern side of the National Mall, as well as such neighborhoods as West End, Petworth, Dupont Circle, LeDroit Park, Georgetown, Adams Morgan, Embassy Row, Glover Park, Tenleytown, Foggy Bottom, Cleveland Park, Columbia Heights, Mount Pleasant, the Palisades, Shepherd Park, Crestwood, Bloomingdale, Takoma and Friendship Heights.

    Northwest contains many college campuses, including American University, George Washington University, Georgetown University, Howard University, and the University of the District of Columbia. The Verizon Center, home of the Washington Wizards, the Washington Capitals, and the Georgetown Hoyas as well as the venue for many concerts and other events, is located in Northwest, as are the National Cathedral, the White House, and Rock Creek Park.

    Washington, D.C. (novel)

    Washington, D. C. by Gore Vidal is the sixth in his Narratives of Empire series of historical novels (although the first one published, in 1967). It begins in 1937 and continues into the Cold War, tracing the families of Senator James Burden Day and influential newspaper publisher Blaise Sanford.

    This book is the least historical and most novelistic of any of the seven books. The Golden Age, the seventh book in the series, takes place during nearly the same span of years with many of the same characters, and needed to be written around the events of Washington D.C.

    The novel is written in the third person and is inspired by the novels of Henry James.

    References

  • http://www.theparisreview.org/interviews/3917/the-art-of-fiction-no-50-gore-vidal


  • Southwest, Washington, D.C.

    Southwest (SW or S.W.) is the southwestern quadrant of Washington, D.C., the capital of the United States, and is located south of the National Mall and west of South Capitol Street. It is the smallest quadrant of the city. Southwest is small enough that it is frequently referred to as a neighborhood in and of itself. However, it actually contains five separate neighborhoods.

    Geography

    Southwest is actually composed of five neighborhoods:

  • the Southwest Federal Center, also called the Southwest Employment District, is the area between the National Mall and the Southeast/Southwest Freeway (Interstate 395).
  • Dóc

    Dóc is a village in Csongrád county, in the Southern Great Plain region of southern Hungary.

    Geography

    It covers an area of 49.43 km2 (19 sq mi) and has a population of 813 people (2002).

    Coordinates: 46°26′N 20°08′E / 46.433°N 20.133°E / 46.433; 20.133

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Dóc

    Podcasts:

    • Top Things to Do in Washington, D.C. | Travel Guide

      😊 Hey there description box reader! If you feel so inclined, please consider buying us a coffee or using one of our affiliate links down below to keep us on the road. Any and all support means the world to us. Don't want to? That's fine too! ☀️ Check out our new packing cubes on Amazon!!! ☀️ https://www.amazon.com/Packing-Outfit-Suitcase-Organizers-Vacation/dp/B0BJ397JZ4?maas=maas_adg_2EE63F3F6D9CBC9FA9FBF85C229BE905_afap_abs&ref_=aa_maas&tag=maas 🧳 Luggage we're obsessed with The BEST personal item/backpack: https://peak-design.pxf.io/m5Rr77 Our favorite suitcase: http://shrsl.com/3noqi ☕️ Buy us a coffee https://www.buymeacoffee.com/sharingtheroad 📸 Gear we use Camera: https://amzn.to/33Wqqts Lens: https://amzn.to/3jZ7l33 🐶 Join TrustedHousesitters and get a 25% discount on your...

      published: 20 Aug 2023
    • Washington D.C. - City Video Guide

      http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is situated on the east coast of the USA, along the banks of the Potomac River. Most visitors begin at the National Mall. Zero Milestone is the proposed reference point for distances on all US maps. To the north is the White House. To the south stands the Washington Monument. The US Capitol Building, atop Capitol Hill, is the nation's seat of federal government. The Mall is also home to many of the nation's Smithsonian buildings, including the Smithsonian National Air and Space Museum. Reflecting Pool is surrounded by tributes to its heroes and founding fathers, including the Vietnam Veterans Memorial, and the Lincoln Memorial. Washington D.C.'s Capital Bikeshare system makes it easy to reach dow...

      published: 17 Apr 2013
    • Best Things To Do in Washington DC 2025 4K

      Are you looking for the best things to do in Washington DC? We just created a list of 28 must do activities for you to do while visiting Washington DC! In this Washington DC travel guide we show you around National Mall, Arlington, Alexandria, National Harbor, Georgetown and many museums. If you enjoy this Washington DC travel video you can also watch our other travel vlogs from across the USA. It took me 3 days to make this Washington DC vlog. I would say you can explore the museums around National Mall in 1 day but 2 days is ideal. Just depends on how many museums you really want to visit. Island Hopper TV takes you around the world to the premiere travel destinations. Our virtual travel guides from across America to Asia, Europe and Australia have assisted many world travelers in educ...

      published: 03 May 2024
    • EarthCam Live: Cherry Blossoms Bloom Cam (Washington, D.C.)

      Experience the beauty of Washington, D.C. with this live streaming camera! A gift from Japan, see the cherry blossom trees that surround the Tidal Basin. The camera also takes viewers on a virtual tour of the capital's iconic landmarks, including the FDR Memorial, MLK Memorial and the Washington Monument.

      published: 24 Mar 2025
    • 20 Essential Tips for a First Visit to Washington, DC

      The seat of American government, bustling Washington DC is home to the touchstone by which all other museums are judged as well as monuments and memorials that tell the story of the nation’s rich history. A DC trip can be easier on the budget than other destinations across the country because so many attractions within the city are free. If you plan on spending time in the District and you’ve never been here before, we’ve put together a list just for you. In this episode, we share with you 20 essential tips for a first visit to Washington DC. #WashingtonDC #DC #TravelTips 🌐 GALLIVANTER WEBSITE/BLOG. https://chadgallivanter.com/blog/dc 📬 MAIL. Chad Gallivanter P.O. Box 636 Lake Helen, FL 32744 📱 SOCIAL. TWITTER: http://twitter.com/ChadGallivanter INSTAGRAM: http://instagram.com/Chad...

      published: 17 Aug 2022
    • The Genius Design of Washington D.C.

      Washington D.C. is widely recognized as one of the best designed Capital Cities in the world. In this video, we take a look at the history behind this design, and how it has influenced urban planning across the globe. Thanks for Watching, and consider subscribing if you enjoyed the video. #Washington #urbanplanning #infrastructure © 2023 Arkive Productions LLC

      published: 01 Apr 2023
    • Why DC's Shaped Like That

      Use code HAI60 to get 60% off your first Factor box at https://bit.ly/3Fm8ooV Get a Half as Interesting t-shirt: https://standard.tv/collections/half-as-interesting Suggest a video: http://halfasinteresting.com/suggest Follow Sam from Half as Interesting on Instagram: http://Instagram.com/Sam.From.Wendover Follow Half as Interesting on Twitter: http://twitter.com/halfinteresting Discuss this video on Reddit: http://www.Reddit.com/r/halfasinteresting Video written by Corinne Neustadter Check out our other channels: http://youtube.com/wendoverproductionshttp://youtube.com/jetlagthegame

      published: 08 Nov 2022
    • Washington D.C. Vacation Travel Guide | Expedia

      Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city with us and start planning a journey of your own! When ready, browse vacation packages to Washington: https://www.expedia.com/Washington.d178318.Destination-Travel-Guides Your #Washington, D.C. #vacation should start at the National Mall, where you’ll find monuments, memorials, and government buildings instead of tons of shopping. #Visit the Watergate Hotel and Kennedy Center when you stop at Foggy Bottom, then move on to Georgetown, the oldest district in D.C. It’s filled with 18th-century buildings and, of course, the university itself. If you’re feeling the need to channel your inner 007, go to the International Spy Museum, and learn about the covert operations and intelligence agencies that hav...

      published: 07 Mar 2013
    • Washington DC 2025 Cherry Blossom Season 🌸Important Info!

      Cherry blossom season in Washington, DC is almost here! We'll cover some of the National Cherry Blossom Festival events as well as some general tips and logistics if you're planning to come to Washington, DC as a visitor or tourist this spring. Cherry Blossom Tips Playlist - https://www.youtube.com/watch?v=kBvppzGjxJc&list=PLouaLJ0cMYR34s2-85eMqIm9dMAgmAxta Blossom Virtual Tours Playlist - https://www.youtube.com/watch?v=cWaEfG-6drQ&list=PLouaLJ0cMYR0W6RU21ePj_824VyXHoOvk **************************************** ~Trip Hacks DC resources for your trip~ Subscribe to the channel! - http://bit.ly/TripHacksDC Sign up for a guided tour - http://www.triphacksdc.com/tours Trip Hacks DC PODCAST - https://www.triphacksdc.com/podcast Recommended Hotels Guide - https://www.triphacksdc.com/hotels ...

      published: 09 Mar 2025
    • 7 Secrets of the National Mall | Things to Do in Washington D.C.

      One of the popular things to do in Washington D.C. is to visit the National Mall. Here are 7 secrets of the National Mall you won't want to miss during you visit to Washington D.C. Join Washington D.C. tour guide @TripHacksDC who gives an incredible Washington D.C. monuments tour! He shares his favorite secrets of the Washington D.C. Mall. Booking a tour with TripHacks D.C. is one of the best things to do in Washington D.C. Book a tour here: https://www.triphacksdc.com/ If you enjoyed this video, please click SUBSCRIBE. It helps me bring you more videos like this! Thank you so much for joining and happy travels! 00:00-01:20 Best tour guide in Washington D.C. (Rob of TripHacks DC) 01:20-03:29 Albert Einstein Memorial Washington D.C. 03:29-06:24 Signers' Island (American Revolution Si...

      published: 04 Aug 2024
    Top Things to Do in Washington, D.C. | Travel Guide
    10:26

    Top Things to Do in Washington, D.C. | Travel Guide

    • Order:
    • Duration: 10:26
    • Uploaded Date: 20 Aug 2023
    • views: 130805
    😊 Hey there description box reader! If you feel so inclined, please consider buying us a coffee or using one of our affiliate links down below to keep us on the road. Any and all support means the world to us. Don't want to? That's fine too! ☀️ Check out our new packing cubes on Amazon!!! ☀️ https://www.amazon.com/Packing-Outfit-Suitcase-Organizers-Vacation/dp/B0BJ397JZ4?maas=maas_adg_2EE63F3F6D9CBC9FA9FBF85C229BE905_afap_abs&ref_=aa_maas&tag=maas 🧳 Luggage we're obsessed with The BEST personal item/backpack: https://peak-design.pxf.io/m5Rr77 Our favorite suitcase: http://shrsl.com/3noqi ☕️ Buy us a coffee https://www.buymeacoffee.com/sharingtheroad 📸 Gear we use Camera: https://amzn.to/33Wqqts Lens: https://amzn.to/3jZ7l33 🐶 Join TrustedHousesitters and get a 25% discount on your membership https://bit.ly/3jebE9y 🏠 Try Airbnb for $65 off your first booking https://abnb.me/e/To9ZiPOA78 📧 Contact Business email: sharingtheroadtravel@gmail.com D.C. Information Library of Congress tickets: https://loc.usedirect.com/LOC/ D.C. museums: https://www.si.edu/museums Air and Space Museum: https://airandspace.si.edu/visit/museum-dc 0:00 National Mall 0:51 Library of Congress 2:24 Monuments 4:55 Georgetown 5:40 Museums 7:40 White House 8:06 Capital Building 8:43 Arlington Cemetery 9:47 Food! 👀 Pay no attention to the man behind the curtain washington dc,washington dc travel tips,washington dc travel,washington dc attractions,things to do in dc,things to do in washington dc,what to do in washington dc,washington dc travel guide,visiting washington dc,washingtion dc travel guide,dc travel guide,travel advice,washington dc tour,top 10 things to do in washington dc,trip hacks dc,dc trip hacks,visiting dc,washington attractions,washington dc city guide,washington dc city tour,washington,dc,d.c.
    https://wn.com/Top_Things_To_Do_In_Washington,_D.C._|_Travel_Guide
    Washington D.C. - City Video Guide
    5:47

    Washington D.C. - City Video Guide

    • Order:
    • Duration: 5:47
    • Uploaded Date: 17 Apr 2013
    • views: 988284
    http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is situated on the east coast of the USA, along the banks of the Potomac River. Most visitors begin at the National Mall. Zero Milestone is the proposed reference point for distances on all US maps. To the north is the White House. To the south stands the Washington Monument. The US Capitol Building, atop Capitol Hill, is the nation's seat of federal government. The Mall is also home to many of the nation's Smithsonian buildings, including the Smithsonian National Air and Space Museum. Reflecting Pool is surrounded by tributes to its heroes and founding fathers, including the Vietnam Veterans Memorial, and the Lincoln Memorial. Washington D.C.'s Capital Bikeshare system makes it easy to reach downtown neighborhoods such as DuPont Circle and Foggy Bottom. Georgetown is the oldest district in Washington D.C. Wisconsin Avenue and M Street have boutique stores and galleries. To the north is the National Cathedral, the Smithsonian National Zoo and the International Spy Museum. Just across the Potomac is Arlington National Cemetery. Find out more travel tips & information on
    https://wn.com/Washington_D.C._City_Video_Guide
    Best Things To Do in Washington DC 2025 4K
    15:34

    Best Things To Do in Washington DC 2025 4K

    • Order:
    • Duration: 15:34
    • Uploaded Date: 03 May 2024
    • views: 116661
    Are you looking for the best things to do in Washington DC? We just created a list of 28 must do activities for you to do while visiting Washington DC! In this Washington DC travel guide we show you around National Mall, Arlington, Alexandria, National Harbor, Georgetown and many museums. If you enjoy this Washington DC travel video you can also watch our other travel vlogs from across the USA. It took me 3 days to make this Washington DC vlog. I would say you can explore the museums around National Mall in 1 day but 2 days is ideal. Just depends on how many museums you really want to visit. Island Hopper TV takes you around the world to the premiere travel destinations. Our virtual travel guides from across America to Asia, Europe and Australia have assisted many world travelers in educating themselves on their next destination to travel or even vacation.
    https://wn.com/Best_Things_To_Do_In_Washington_DC_2025_4K
    EarthCam Live:  Cherry Blossoms Bloom Cam (Washington, D.C.)
    0:00

    EarthCam Live: Cherry Blossoms Bloom Cam (Washington, D.C.)

    • Order:
    • Duration: 0:00
    • Uploaded Date: 24 Mar 2025
    • views: 10461
    Experience the beauty of Washington, D.C. with this live streaming camera! A gift from Japan, see the cherry blossom trees that surround the Tidal Basin. The camera also takes viewers on a virtual tour of the capital's iconic landmarks, including the FDR Memorial, MLK Memorial and the Washington Monument.
    https://wn.com/Earthcam_Live_Cherry_Blossoms_Bloom_Cam_(Washington,_D.C.)
    20 Essential Tips for a First Visit to Washington, DC
    13:44

    20 Essential Tips for a First Visit to Washington, DC

    • Order:
    • Duration: 13:44
    • Uploaded Date: 17 Aug 2022
    • views: 362595
    The seat of American government, bustling Washington DC is home to the touchstone by which all other museums are judged as well as monuments and memorials that tell the story of the nation’s rich history. A DC trip can be easier on the budget than other destinations across the country because so many attractions within the city are free. If you plan on spending time in the District and you’ve never been here before, we’ve put together a list just for you. In this episode, we share with you 20 essential tips for a first visit to Washington DC. #WashingtonDC #DC #TravelTips 🌐 GALLIVANTER WEBSITE/BLOG. https://chadgallivanter.com/blog/dc 📬 MAIL. Chad Gallivanter P.O. Box 636 Lake Helen, FL 32744 📱 SOCIAL. TWITTER: http://twitter.com/ChadGallivanter INSTAGRAM: http://instagram.com/ChadGallivanter FACEBOOK: http://facebook.com/ChadGallivanter
    https://wn.com/20_Essential_Tips_For_A_First_Visit_To_Washington,_DC
    The Genius Design of Washington D.C.
    8:01

    The Genius Design of Washington D.C.

    • Order:
    • Duration: 8:01
    • Uploaded Date: 01 Apr 2023
    • views: 514653
    Washington D.C. is widely recognized as one of the best designed Capital Cities in the world. In this video, we take a look at the history behind this design, and how it has influenced urban planning across the globe. Thanks for Watching, and consider subscribing if you enjoyed the video. #Washington #urbanplanning #infrastructure © 2023 Arkive Productions LLC
    https://wn.com/The_Genius_Design_Of_Washington_D.C.
    Why DC's Shaped Like That
    6:00

    Why DC's Shaped Like That

    • Order:
    • Duration: 6:00
    • Uploaded Date: 08 Nov 2022
    • views: 811614
    Use code HAI60 to get 60% off your first Factor box at https://bit.ly/3Fm8ooV Get a Half as Interesting t-shirt: https://standard.tv/collections/half-as-interesting Suggest a video: http://halfasinteresting.com/suggest Follow Sam from Half as Interesting on Instagram: http://Instagram.com/Sam.From.Wendover Follow Half as Interesting on Twitter: http://twitter.com/halfinteresting Discuss this video on Reddit: http://www.Reddit.com/r/halfasinteresting Video written by Corinne Neustadter Check out our other channels: http://youtube.com/wendoverproductionshttp://youtube.com/jetlagthegame
    https://wn.com/Why_Dc's_Shaped_Like_That
    Washington D.C. Vacation Travel Guide | Expedia
    5:47

    Washington D.C. Vacation Travel Guide | Expedia

    • Order:
    • Duration: 5:47
    • Uploaded Date: 07 Mar 2013
    • views: 3107851
    Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city with us and start planning a journey of your own! When ready, browse vacation packages to Washington: https://www.expedia.com/Washington.d178318.Destination-Travel-Guides Your #Washington, D.C. #vacation should start at the National Mall, where you’ll find monuments, memorials, and government buildings instead of tons of shopping. #Visit the Watergate Hotel and Kennedy Center when you stop at Foggy Bottom, then move on to Georgetown, the oldest district in D.C. It’s filled with 18th-century buildings and, of course, the university itself. If you’re feeling the need to channel your inner 007, go to the International Spy Museum, and learn about the covert operations and intelligence agencies that have shaped the world we live in. Of course, you can’t enjoy any Washington, D.C. #tour without admiring the White House, so make sure that’s on your list too. For now, we hope you enjoy watching this #travel #guide as much as we enjoyed making it. More travel information around Washington: https://www.expedia.com/Washington.dx178318 Subscribe to Expedia’s YouTube Channel for great travel videos and join the conversation on the best vacation ideas. --------- Follow us on social media: FACEBOOK: https://www.facebook.com/expedia TWITTER: https://twitter.com/Expedia INSTAGRAM: https://instagram.com/expedia/ PINTEREST: https://www.pinterest.com/expedia --------- 0:00 - Washington D.C. 0:41 - The National Mall 1:00 - Zero Milestone 1:09 - The White House and Washington Monument 1:26 - Capitol Building 1:34 - Reflecting Pool 1:48 - Vietnam Veterans Memorial 2:02 - Lincoln Memorial 2:09 - Franklin Delano Roosevelt Memorial 2:20 - Thomas Jefferson Memorial 2:30 - Smithsonian Castle 2:47 - Smithsonian National Air and Space Museum 2:59 - Newseum 3:09 - United States Botanic Garden 3:27 - DuPont Circle 3:37 - Foggy Bottom 3:50 - Georgetown 4:03 - Wisconsin Avenue and M Street 4:09 - National Cathedral 4:18 - Smithsonian National Zoo 4:27 - International Spy Museum 4:38 - Arlington National Cemetery 5:01 - Arlington House
    https://wn.com/Washington_D.C._Vacation_Travel_Guide_|_Expedia
    Washington DC 2025 Cherry Blossom Season 🌸Important Info!
    9:06

    Washington DC 2025 Cherry Blossom Season 🌸Important Info!

    • Order:
    • Duration: 9:06
    • Uploaded Date: 09 Mar 2025
    • views: 15349
    Cherry blossom season in Washington, DC is almost here! We'll cover some of the National Cherry Blossom Festival events as well as some general tips and logistics if you're planning to come to Washington, DC as a visitor or tourist this spring. Cherry Blossom Tips Playlist - https://www.youtube.com/watch?v=kBvppzGjxJc&list=PLouaLJ0cMYR34s2-85eMqIm9dMAgmAxta Blossom Virtual Tours Playlist - https://www.youtube.com/watch?v=cWaEfG-6drQ&list=PLouaLJ0cMYR0W6RU21ePj_824VyXHoOvk **************************************** ~Trip Hacks DC resources for your trip~ Subscribe to the channel! - http://bit.ly/TripHacksDC Sign up for a guided tour - http://www.triphacksdc.com/tours Trip Hacks DC PODCAST - https://www.triphacksdc.com/podcast Recommended Hotels Guide - https://www.triphacksdc.com/hotels Contact us about tours - https://www.triphacksdc.com/contact-us **************************************** ~Follow Trip Hacks DC on social media~ https://www.instagram.com/triphacksdc https://www.facebook.com/triphacksdc https://www.tiktok.com/@triphacksdc **************************************** ~Video Chapters~ 0:00 2025 Washington DC cherry blossom season 1:00 Key cherry blossom dates in 2025 2:03 2025 National Cherry Blossom Festival events 6:42 Tidal Basin seawall construction update
    https://wn.com/Washington_DC_2025_Cherry_Blossom_Season_🌸Important_Info
    7 Secrets of the National Mall | Things to Do in Washington D.C.
    16:26

    7 Secrets of the National Mall | Things to Do in Washington D.C.

    • Order:
    • Duration: 16:26
    • Uploaded Date: 04 Aug 2024
    • views: 17651
    One of the popular things to do in Washington D.C. is to visit the National Mall. Here are 7 secrets of the National Mall you won't want to miss during you visit to Washington D.C. Join Washington D.C. tour guide @TripHacksDC who gives an incredible Washington D.C. monuments tour! He shares his favorite secrets of the Washington D.C. Mall. Booking a tour with TripHacks D.C. is one of the best things to do in Washington D.C. Book a tour here: https://www.triphacksdc.com/ If you enjoyed this video, please click SUBSCRIBE. It helps me bring you more videos like this! Thank you so much for joining and happy travels! 00:00-01:20 Best tour guide in Washington D.C. (Rob of TripHacks DC) 01:20-03:29 Albert Einstein Memorial Washington D.C. 03:29-06:24 Signers' Island (American Revolution Sites in D.C.) 06:24-07:46 Hidden Kilroy (World War II Memorial Washington D.C.) 07:46-09:09 Site of the Original Cherry Trees in Washington D.C. (Where were the first cherry trees in Washington D.C.) 09:09-10:48 President Garfield Memorial in Washington D.C. 10:48-13:40 Summer House in Washington D.C. 13:40-15:43 Bartholdi Fountain in Washington D.C. 15:43-16:25 Secrets of the Washington D.C. National Mall
    https://wn.com/7_Secrets_Of_The_National_Mall_|_Things_To_Do_In_Washington_D.C.
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Top Things to Do in Washington, D.C. | Travel Guide
      10:26
      Top Things to Do in Washington, D.C. | Travel Guideremove from playlist
    • Washington D.C. - City Video Guide
      5:47
      Washington D.C. - City Video Guideremove from playlist
    • Best Things To Do in Washington DC 2025 4K
      15:34
      Best Things To Do in Washington DC 2025 4Kremove from playlist
    • EarthCam Live:  Cherry Blossoms Bloom Cam (Washington, D.C.)
      0:00
      EarthCam Live: Cherry Blossoms Bloom Cam (Washington, D.C.)remove from playlist
    • 20 Essential Tips for a First Visit to Washington, DC
      13:44
      20 Essential Tips for a First Visit to Washington, DCremove from playlist
    • The Genius Design of Washington D.C.
      8:01
      The Genius Design of Washington D.C.remove from playlist
    • Why DC's Shaped Like That
      6:00
      Why DC's Shaped Like Thatremove from playlist
    • Washington D.C. Vacation Travel Guide | Expedia
      5:47
      Washington D.C. Vacation Travel Guide | Expediaremove from playlist
    • Washington DC 2025 Cherry Blossom Season 🌸Important Info!
      9:06
      Washington DC 2025 Cherry Blossom Season 🌸Important Info!remove from playlist
    • 7 Secrets of the National Mall | Things to Do in Washington D.C.
      16:26
      7 Secrets of the National Mall | Things to Do in Washington D.C.remove from playlist
    PLAYLIST TIME: 0:00 / 1:30:51

    Top Things to Do in Washington, D.C. | Travel Guide

    😊 Hey there description box reader! If you feel so inclined, please consider buying us a coffee or using one of our affiliate links down below to keep us on the road. Any and all support means the world to us. Don't want to? That's fine too! ☀️ Check out our new packing cubes on Amazon!!! ☀️ https://www.amazon.com/Packing-Outfit-Suitcase-Organizers-Vacation/dp/B0BJ397JZ4?maas=maas_adg_2EE63F3F6D9CBC9FA9FBF85C229BE905_afap_abs&ref_=aa_maas&tag=maas 🧳 Luggage we're obsessed with The BEST personal item/backpack: https://peak-design.pxf.io/m5Rr77 Our favorite suitcase: http://shrsl.com/3noqi ☕️ Buy us a coffee https://www.buymeacoffee.com/sharingtheroad 📸 Gear we use Camera: https://amzn.to/33Wqqts Lens: https://amzn.to/3jZ7l33 🐶 Join TrustedHousesitters and get a 25% discount on your membership https://bit.ly/3jebE9y 🏠 Try Airbnb for $65 off your first booking https://abnb.me/e/To9ZiPOA78 📧 Contact Business email: sharingtheroadtravel@gmail.com D.C. Information Library of Congress tickets: https://loc.usedirect.com/LOC/ D.C. museums: https://www.si.edu/museums Air and Space Museum: https://airandspace.si.edu/visit/museum-dc 0:00 National Mall 0:51 Library of Congress 2:24 Monuments 4:55 Georgetown 5:40 Museums 7:40 White House 8:06 Capital Building 8:43 Arlington Cemetery 9:47 Food! 👀 Pay no attention to the man behind the curtain washington dc,washington dc travel tips,washington dc travel,washington dc attractions,things to do in dc,things to do in washington dc,what to do in washington dc,washington dc travel guide,visiting washington dc,washingtion dc travel guide,dc travel guide,travel advice,washington dc tour,top 10 things to do in washington dc,trip hacks dc,dc trip hacks,visiting dc,washington attractions,washington dc city guide,washington dc city tour,washington,dc,d.c.
    10:26
    Top Things to Do in Washington, D.C. | Travel Guide
    😊 Hey there description box reader! If you feel so inclined, please consider buying us a ...
    published: 20 Aug 2023
    Play in Full Screen
    5:47
    Washington D.C. - City Video Guide
    http://www.expedia.com.au/Washington.d178318.Destination-Travel-Guides Washington D.C. is...
    published: 17 Apr 2013
    Play in Full Screen
    15:34
    Best Things To Do in Washington DC 2025 4K
    Are you looking for the best things to do in Washington DC? We just created a list of 28 m...
    published: 03 May 2024
    Play in Full Screen
    0:00
    EarthCam Live: Cherry Blossoms Bloom Cam (Washington, D.C.)
    Experience the beauty of Washington, D.C. with this live streaming camera! A gift from Jap...
    published: 24 Mar 2025
    Play in Full Screen
    13:44
    20 Essential Tips for a First Visit to Washington, DC
    The seat of American government, bustling Washington DC is home to the touchstone by which...
    published: 17 Aug 2022
    Play in Full Screen
    8:01
    The Genius Design of Washington D.C.
    Washington D.C. is widely recognized as one of the best designed Capital Cities in the wor...
    published: 01 Apr 2023
    Play in Full Screen
    6:00
    Why DC's Shaped Like That
    Use code HAI60 to get 60% off your first Factor box at https://bit.ly/3Fm8ooV Get a Half ...
    published: 08 Nov 2022
    Play in Full Screen
    5:47
    Washington D.C. Vacation Travel Guide | Expedia
    Washington D.C. – Take in the many splendors of the nation’s capital. Explore the city wit...
    published: 07 Mar 2013
    Play in Full Screen
    9:06
    Washington DC 2025 Cherry Blossom Season 🌸Important Info!
    Cherry blossom season in Washington, DC is almost here! We'll cover some of the National C...
    published: 09 Mar 2025
    Play in Full Screen
    16:26
    7 Secrets of the National Mall | Things to Do in Washington D.C.
    One of the popular things to do in Washington D.C. is to visit the National Mall. Here are...
    published: 04 Aug 2024
    Play in Full Screen

    Washington, D.C.

    Washington, D.C., formally the District of Columbia and commonly referred to as "Washington", "the District", or simply "D.C.", is the capital of the United States. The signing of the Residence Act on July 16, 1790, approved the creation of a capital district located along the Potomac River on the country's East Coast. The U.S. Constitution provided for a federal district under the exclusive jurisdiction of the Congress and the District is therefore not a part of any U.S. state.

    The states of Maryland and Virginia each donated land to form the federal district, which included the pre-existing settlements of Georgetown and Alexandria. Named in honor of George Washington, the City of Washington was founded in 1791 to serve as the new national capital. In 1846, Congress returned the land originally ceded by Virginia; in 1871, it created a single municipal government for the remaining portion of the District.

    Washington had an estimated population of 672,228 as of July 2015. Commuters from the surrounding Maryland and Virginia suburbs raise the city's population to more than one million during the workweek. The Washington metropolitan area, of which the District is a part, has a population of over 6 million, the seventh-largest metropolitan statistical area in the country.

    '); } 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: washington, d.c.

    Edit

    Avista Makes Price Adjustment Request in Washington

    Nasdaq Globe Newswire 01 Apr 2025
    Overall change in electric prices would be effective July 1, 2025. Overall change in electric prices would be effective July 1, 2025 ... .
    Edit

    Air traffic controller arrested after ‘incident’ at Washington DC area control tower

    CNN 01 Apr 2025
    An air traffic controller was charged with assault and battery after an “incident” at Ronald Reagan Washington National Airport on Thursday night, the Metropolitan ...
    Edit

    The Washington Informer celebrates 60 years of service at Legacy Awards Gala

    The Philadelphia Tribune 01 Apr 2025
    The Washington Informer has long captured the stories of the residents, leaders and communities that infuse vibrant culture into the District of Columbia. For six decades the newspaper has been a voice for people in D.C. and beyond ....
    Edit

    Degenhart has 19, Boise State beats George Washington 89-59 in CBC

    The Lufkin News 01 Apr 2025
    Led by Tyson Degenhart's 19 points, the Boise State Broncos defeated the George Washington Revolutionaries 89-59 on Monday in the College Basketball Crown ....
    ×