- published: 22 Dec 2022
- views: 78760
'+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; })); }); -->
St. Andrew's Church is a historic Episcopal church complex in Richmond, Virginia, United States. The complex consists of the church (1901), school (1901), parish hall (1904), Instructive Nurse Association Building (1904), and William Byrd Community House or Arents Free Library (1908). The church is a rough-faced Virginia granite, cruciform Gothic Revival style structure dominated by a 115-foot corner tower. The school and parish hall are three-story, brick buildings on a stone basements.
The woodwork for the structures was provided by Richmond Wood Working Company. A.H. Ellwood and Noland & Baskerville are credited as the architects. The Gothic Revival architecture site was added to the National Register of Historic Places in 1979.
Richmond (/ˈrɪtʃmənd/ RICH-mənd) is the capital of the Commonwealth of Virginia, in the United States. It is the center of the Richmond Metropolitan Statistical Area (MSA) and the Greater Richmond Region. While it was incorporated in 1742, Richmond has been an independent city since 1871.
As of the 2010 census, the population was 204,214; in 2014, the population was estimated to be 217,853, the fourth-most populous city in Virginia. The Richmond Metropolitan Area has a population of 1,260,029, the third-most populous metro in the state.
Richmond is located at the fall line of the James River, 44 miles (71 km) west of Williamsburg, 66 miles (106 km) east of Charlottesville, and 98 miles (158 km) south of Washington, D.C. Surrounded by Henrico and Chesterfield counties, the city is located at the intersections of Interstate 95 and Interstate 64, and encircled by Interstate 295 and Virginia State Route 288. Major suburbs include Midlothian to the southwest, Glen Allen to the north and west, Short Pump to the west and Mechanicsville to the northeast.
Richmond Station may refer to:
St. Andrew's Church, 73 Simcoe Street, Toronto is a large and historic Romanesque Revival Presbyterian church in downtown Toronto, Ontario, Canada.
The congregation was founded in 1830 as the first Church of Scotland congregation in the Town of York. The original church was located at the southwest corner of Church and Adelaide East Streets was built by John Ewart. After the 1843 split of the Presbyterian Church in Scotland, a portion of the congregation supportive of the Free Church Movement left St. Andrew's the following summer and founded Knox Presbyterian along with another group led by Rev. James Harris that had been separate since 1834.
The original St Andrew's building eventually proved too small, and the church moved to its current location on the southeast corner of King and Simcoe Streets on February 13, 1876. This westward move caused some controversy, and the church split over the issue. One group (62 of 403 members) continued in the old church, which became known as Old St. Andrew's. This group moved in 1878 to a new building located on nearby Jarvis Street. It continued until 1951 when Old St. Andrew's United Church joined with Westminster (formerly Yorkville Presbyterian) - Central (formerly Methodist) to become St. Andrew's United at 117 Bloor Street East. The Old St. Andrew's building was sold to another denomination and became St. Andrew's Evangelical Lutheran Church.
St. Andrew's Church is a historic Roman Catholic church in LeRoy, Wisconsin, United States. The Gothic Revival church was built in 1899 by architect Anton Dohmen. The Emil Frei Stained Glass Company later added over 20 stained glass windows to the church; these windows were described as "works of art with vivid colors and intricate details" by the Wisconsin Historical Society. The church's congregation was composed of German farmers from the surrounding area, who paid for the church and constructed parts of its interior; the church has historically served as a focal point for community life. The church has been called the "Cathedral on the Marsh" due to its proximity to the Horicon Marsh. On January 27, 2010, the church was added to the National Register of Historic Places.
St. Andrew's Presbyterian Church, Quebec City is a Presbyterian Church in Canada congregation in the Upper Town of Quebec City.
The congregation's roots began with the British conquest of Quebec at the Plains of Abraham in 1759. Under the leadership of Church of Scotland Chaplain Robert MacPherson and soldiers of the famous 78th Fraser Highlanders of James Wolfe's Army in 1759. A congregation evolved under his leadership, until his death in 1765. He was succeeded by another former Chaplain, George Henry.
With the 1763 Treaty, and the coming of merchants from Scotland and New England, the congregation soon assumed civilian status and was known as the Scotch Congregation - in connection with the Church of Scotland.
During the 1802 ministry of Alexander Spark, in response to a petition signed by 148 persons, the present Church site was granted by His Majesty George III, although it was not until 1807 that construction began.
The long-contemplated Church was dedicated on November 30, 1810, on St. Andrew's Day, and appropriately named after the apostle. The building remains virtually unchanged but for the addition of the Vestry in 1900.
Virginia (i/vərˈdʒɪnjə/ vər-JIN-yə, UK /vərˈdʒɪniə/ vər-JIN-ee-ə), officially the Commonwealth of Virginia, is a state located in the South Atlantic region of the United States. Virginia is nicknamed the "Old Dominion" due to its status as the first colonial possession established in mainland British America, and "Mother of Presidents" because eight U.S. presidents were born there, more than any other state. The geography and climate of the Commonwealth are shaped by the Blue Ridge Mountains and the Chesapeake Bay, which provide habitat for much of its flora and fauna. The capital of the Commonwealth is Richmond; Virginia Beach is the most populous city, and Fairfax County is the most populous political subdivision. The Commonwealth's estimated population as of 2014 is over 8.3 million.
The area's history begins with several indigenous groups, including the Powhatan. In 1607 the London Company established the Colony of Virginia as the first permanent New World English colony. Slave labor and the land acquired from displaced Native American tribes each played a significant role in the colony's early politics and plantation economy. Virginia was one of the 13 Colonies in the American Revolution and joined the Confederacy in the American Civil War, during which Richmond was made the Confederate capital and Virginia's northwestern counties seceded to form the state of West Virginia. Although the Commonwealth was under one-party rule for nearly a century following Reconstruction, both major national parties are competitive in modern Virginia.
Richmond, Virginia is a fascinating city. As the capital of Virginia and the former capital of the Confederacy, the city has a lot of interesting history and is unique today. I have visited the city a couple times over the past few years and have really enjoyed my experiences there. In this series I cover a city's history, population, skyline and a few things that make the city unique. Thanks for watching: Richmond Overview | An informative introduction to Richmond, Virginia. If you enjoy short geography overviews, here is a link to one of the primary books that inspired me to make this channel: https://amzn.to/4h5Qh6T (Amazon) Track: Oleg Mazur – Inspiring Corporate #citygeek #richmond
A day in my life in Richmond, VA traveling to parks, picnics, food + more!✨My Instagram: https://www.instagram.com/laurenzray Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic My Story: Moving to Richmond, VA: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray 🌱My Vegan Guide to Richmond, VA: https://www.laurenzray.com/rva-vegan-ebook Places Visited in Video: Monroe Park - https://maps.app.goo.gl/193nzRRzrJEVwDhA9 Befriend - https://www.instagram.com/befriend.movement Agecroft Hall & Gardens - https://maps.app.goo.gl/hZj3eVa72XAiuttYA Common House RVA - https://maps.app.goo.gl/o5F1XFdN7L2MwWSs6 ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear ►Video schedule: Every Sunday ►Also ...
Are you thinking about visiting Richmond Virginia and looking for some additional information on the city center of Richmond? Alright, look no further than this Richmond Virginia travel guide from Spring 2021. We take you around Main Street then head over to the James River where we then walk around the area around the civil war museum then head over towards the Virginia war memorial and then along to the Hollywood Hill Cemetery. #Richmond #Virginia #TravelGuide 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.
Get exclusive discounts on your trip at the link below: https://bit.ly/bookrichmond In this video, you will learn about all the best things to do in Richmond, Virginia. There are many unique attractions and experiences for tourists and travelers to do in the city. ▬Contents of this video▬ 00:00 - Intro 00:24 - Attractions 03:37 - Museums 06:56 - Outdoor recreation 08:35 - Outro Like this content? Subscribe here: https://www.youtube.com/channel/UCxG8DXN7UCNFaVeWbBx18qA?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/channel/UCxG8DXN7UCNFaVeWbBx18qA/videos History buffs will enjoy the Virginia Museum of History and Culture for its exhaustive and expansive collection of more than 9 million items that tell the story of Virginia, starting with the Native Americans...
After living here for a few months, here are some of my cons of moving to Richmond, Virginia. ✨I'm on Instagram: https://www.instagram.com/laurenzray Mosquito Repellant: https://amzn.to/3R8SDWs Bug Bite Thing: https://amzn.to/3uSVAmO EZ Pass: https://www.ezpassva.com Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic Why I Quit Being a Digital Nomad: https://youtu.be/_Vxzl3i1XsA Subscribe for more here: https://www.youtube.com/laurenzray - - - - - - - ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear - - - - - - - - - ►Video schedule: Every Sunday ►Also find me here: My IG: http://www.instagram.com/laurenzray Lukas' IG: http://www.instagram.com/musicbylukas Portfolio: https://www.laurenzray.com/portfolio CONTACT: ...
Richmond, Virginia: The Best Things to Do in the City! From what I hear from fellow travelers, Richmond isn't high on many lists of places to see in the U.S., but we believe Richmond is highly underrated. DON'T CLICK THIS: http://bit.ly/3kMzZDs We drove 2 hours north to spend the day in Richmond, and see for ourselves just what great things this city had to offer. We tried to fit a lot of things to do in just one day. Check out a few the links here in the description to find out more about the locations. Richmond is quickly transforming into a cultural hotspot, and great restaurants are popping up every week! We dropped a pin to the location of the Pipeline Trial for anyone confused like we were. After walking down E. Canal St., we turned onto Virginia St. There is a small parking lot...
Come along as I take you to 5 Hidden Gems in Richmond, VA. ✨My Instagram: https://www.instagram.com/laurenzray Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic My Story: Moving to Richmond, VA: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray 🌱My Vegan Guide to Richmond, VA: https://www.laurenzray.com/rva-vegan-ebook Places Visited in Video: Hollywood Cemetery - https://maps.app.goo.gl/BgWymwaDfcjyDcjT6 Virginia Museum of Fine Arts - https://maps.app.goo.gl/ei5wuAibzkUyDCa78 Paix Coffee - https://maps.app.goo.gl/efkHuoT8dmLEeZ4i6 The Byrd Theatre - https://maps.app.goo.gl/Yhg74CVnfCAuPgNw5 Proper Pie Co - https://maps.app.goo.gl/bWTCGmG8L8EgPNLp9 ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzra...
My Hotel Recommendations in Richmond: https://expedia.com/affiliate/2JlR7UO My Tours and Activities Recommendations in Richmond: https://expedia.com/affiliate/gTPOe9D Check out cool Richmond, VA Stuff HERE: https://amzn.to/42n1717 Richmond Virginia is best known as the capital of the old confederacy during the Civil War. Richmond is filled with historic sites, and interestingly, acknowledges it’s confederate past while also exhibiting progressive ideas throughout the city. So what are the best things to do and see in Richmond today? In this video we will visit: The White House of the Confederacy Richmond Historic District John Marshall House Capitol Square Virginia State Capitol Building Richmond Canal Walk Canal Walk Murals American Civil War Museum Historic Tredegar Shockoe Slip Richm...
This is why I moved to Richmond, Virginia, and why I love it here! ✨I'm on Instagram: https://www.instagram.com/laurenzray My Story: Moving to Richmond, Virginia: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray - - - - - - - ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear - - - - - - - - - ►Video schedule: Every Sunday ►Also find me here: My IG: http://www.instagram.com/laurenzray Portfolio: https://www.laurenzray.com/portfolio CONTACT: [email protected] Richmond, Virginia RVA Richmond Vlog Richmond Virginia
If you are thinking about moving to/living in Richmond VA this is the video for you! We will show you the 6 BEST areas to live in around Richmond Virginia. You will get to see all of the commercial "bubbles" surrounding these 6 best areas, and we will provide you with a ton of information about the housing and neighborhoods within them too. Short Pump, Glen Allen, Midlothian, Moseley, Mechanicsville and the city of Richmond are all covered in this single video. If you are unfamiliar with Richmond and the surrounding areas, we assure you that after watching this you will have a much better understanding and knowledge of the areas. We also highly recommend to watch our video titled "5 Steps To Take When Relocating To Richmond VA" as that one will give you steps to take to help you determin...
St. Andrew's Church is a historic Episcopal church complex in Richmond, Virginia, United States. The complex consists of the church (1901), school (1901), parish hall (1904), Instructive Nurse Association Building (1904), and William Byrd Community House or Arents Free Library (1908). The church is a rough-faced Virginia granite, cruciform Gothic Revival style structure dominated by a 115-foot corner tower. The school and parish hall are three-story, brick buildings on a stone basements.
The woodwork for the structures was provided by Richmond Wood Working Company. A.H. Ellwood and Noland & Baskerville are credited as the architects. The Gothic Revival architecture site was added to the National Register of Historic Places in 1979.