- published: 23 Sep 2022
- views: 198
'+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; })); }); -->
Bristol is an independent city in the U.S. state of Virginia. As of the 2010 census, the population was 17,835. It is the twin city of Bristol, Tennessee, just across the state line, which runs down the middle of its main street, State Street. The Bureau of Economic Analysis combines the city of Bristol, Virginia, with neighboring Washington County, Virginia, for statistical purposes. Bristol is a principal city of the Kingsport–Bristol–Bristol, TN-VA Metropolitan Statistical Area, which is a component of the Johnson City–Kingsport–Bristol, TN-VA Combined Statistical Area – commonly known as the "Tri-Cities" region.
Originally named "Goodson", it was renamed "Bristol" (after Bristol, England) in 1890.
The Grove, Solar Hill Historic District, and Walnut Grove are listed on the National Register of Historic Places.
Bristol is located in southwestern Virginia at 36°36′N 82°11′W / 36.600°N 82.183°W / 36.600; -82.183 (36.6111, -82.1762). It is bordered to the west, north, and east by Washington County, Virginia, and to the south by the city of Bristol in Sullivan County, Tennessee.
Bristol is a borough in Bucks County, Pennsylvania, 23 miles (37 km) northeast of Center City Philadelphia, opposite Burlington, New Jersey on the Delaware River. Bristol was first incorporated in 1720. Although its charter was revised in 1905, the original charter remains in effect, making Bristol one of the older boroughs in Pennsylvania. 7,104 people lived in Bristol in 1900; 9,256 in 1910; 10,273 in 1920; and 11,895 in 1940. The population was 9,726 at the 2010 census. The current Mayor is Patrick Sabatini Sr. The first female Mayor was Margaret Stakenas, elected in 1979.
Bristol was first settled in 1681 as Buckingham (for Buckingham, England). It was originally used as a port and dock. Bristol is rich in history, boasting many historic and restored houses that line the streets of Radcliffe and Mill.
Until 1725 Bristol served as county seat of Bucks County.
From its earliest days Bristol was a center of milling. With the building of the Delaware Canal and the Pennsylvania Railroad it became a center of transportation and an attractive location for industry.
Bristol is a Patience game using a deck of 52 playing cards. It has an unusual feature of building regardless of suit on both the foundations and on the tableau; it is also one of the easiest to win.
Eight piles (or fans) of three cards each are dealt onto the tableau. Any king that is not on the bottom of its pile is placed underneath. Then three cards are placed under these piles. These form the bases for the three reserve piles.
Whenever an ace becomes available, it becomes a foundation, on which it can be built up regardless of suit up to a King. The same is done on the three other aces.
The top card of each pile on the tableau and the top card of each reserve pile is available to be built on the foundations and around the tableau. Like the foundations, the piles on the tableau are built down regardless of suit. Only one card can be moved at a time and when a pile becomes empty, it is never filled.
Cards in the stock are dealt onto the reserve three at a time, one for each pile. In effect, gaps on the reserve are filled during the deal; therefore, when a reserve pile becomes empty, it is not filled until the next batch of three cards is dealt.
Bristol is a town in the historic county seat of Bristol County, Rhode Island, United States. The population was 22,954 at the 2010 census. Bristol, a deepwater seaport, is named after Bristol, England.
Major industries include boat building (and related marine industries), manufacturing and tourism. The town's school system is united with neighboring Warren, Rhode Island. Prominent communities include Luso-Americans (Portuguese-Americans), mostly Azorean, and Italian-Americans.
The first battle of King Philip's War took place here in 1675; although Philip was eventually defeated, a variant of his Indian name, Metacomet, is now the name of a main road in Bristol: Metacom Avenue (RI Route 136).
King Philip made nearby Mount Hope (Montaup) his base of operations. "King Philip's Chair", a rocky ledge on the mountain, was a lookout site for enemy ships on Mount Hope Bay. After that war concluded, the town was settled in 1680 as part of the Plymouth Colony. It was presumably named after Bristol, England.
50 Virginia /vərˈdʒɪnjə/ is a large, very dark main belt asteroid. It was discovered by American astronomer James Ferguson on October 4, 1857 from the United States Naval Observatory in Washington, D.C. German astronomer Robert Luther discovered it independently on October 19 from Düsseldorf, and his discovery was announced first.
The reason for Virginia's name is not known; it may be named after Verginia, the Roman noblewoman slain by her father, but it may alternatively have been named after the American state of Virginia, which is contiguous with Washington.
Photometric observations of this asteroid at the Organ Mesa Observatory in Las Cruces, New Mexico during 2008 gave a light curve with a period of 14.315 ± 0.001 hours and a brightness variation of 0.19 ± 0.02 in magnitude. The shape of the light curve at the maximum was found to change with phase angle.
The orbit of 50 Virginia places it in an 11:4 mean motion resonance with the planet Jupiter. The computed Lyapunov time for this asteroid is only 10,000 years, indicating that it occupies a chaotic orbit that will change randomly over time because of gravitational perturbations of the planets.
Verginia, or Virginia (ca. 465 BC–449 BC), was the subject of a story of Ancient Rome, related in Livy's Ab Urbe Condita.
The people of Rome were already angry with the decemviri for not calling the proper elections, taking bribes, and other abuses. It seemed that they were returning to the rule of the Kings of Rome who had been overthrown only a few decades before. In 451 BC, Appius Claudius began to lust after Verginia, a beautiful plebeian girl and the daughter of Lucius Verginius, a respected centurion. Verginia was betrothed to Lucius Icilius, a former tribune of the plebs, and when she rejected Claudius, Claudius had one of his clients, Marcus Claudius, claim that she was actually his slave. Marcus Claudius then abducted her while she was on her way to school. The crowd in the Forum objected to this, as both Verginius and Icilius were well-respected men, and they forced Marcus Claudius to bring the case before the decemvirs, led by Appius Claudius himself. Verginius was recalled from the field to defend his daughter, and Icilius, after threats of violence, succeeded in having Verginia returned to her house while the court waited for her father to appear. Claudius tried to have his own supporters intercept the messengers sent to summon Verginius, but they arrived too late to delay Verginius' arrival.
Virginia is a wooden schooner that is a modern replica of an early twentieth century pilot vessel of the same name. She conducts educational programs and passenger trips along the Eastern Seaboard of the United States and Canada, and in the Caribbean.
The original schooner Virginia was commissioned by the Virginia Pilots Association and designed by naval engineers Cox and Stevens. Pilots Association president William Rowe Boutwell instructed the designers to model the vessel after the America's Cup competitors of the day. She was built by A.C. Brown & Son of Tottenville, Staten Island, New York, and was completed in 1916. Although steamboats were readily available at the time, Virginia was built with no engines so as to maintain the pilots' sailing skills and train new apprentices.
Virginia served actively as a pilot vessel during World War I. Following the war, she was fitted with two 75 hp diesel engines, which necessitated a shortening of her fore boom to accommodate a smokestack.
Bristol Virginia is a historic town that has the honor of being the birthplace of Country music having recorded some of it's first stars back in the 1920's. It's a charming city with lots of unique hotels, bars, and music pouring out onto the streets. That along with the Birthplace of Country Music Museum makes it a great stop along the crooked trail. https://birthplaceofcountrymusic.org/ #countrymusic #travelvlog #virginia
Bristol, Virginia - One half of the sister cities of Bristol along the state line between Tennessee and Virginia Check out the awesome heated Doace jackets and vests at this link: https://amzn.to/3C57EBU We make a small profit from any purchases so you'll be helping to support our page as well. CHECK OUT OUR NEW CHANNEL "REAL SHANE AND MELODY" at this link: https://www.youtube.com/channel/UCfQSM70Kxl42RF5vLjEg9iQ We would appreciate your like, comment and if you'd subscribe to the new channel, thank you! CHECK OUT OUR NEW MERCHANDISE AT: real-appalachia.creator-spring.com Follow us on Facebook at: https://m.facebook.com/RealAppalachia/ Follow us on TikTok at: www.tiktok.com/@realappalachia Follow us on Instagram at: www.instagram.com/real_appalachia Follow us on Twitter at:...
A noticeable increase in the homeless population in Bristol, Virginia has city officials taking action to ensure all citizens are safe.
When most people think of Bristol, they think of Tennessee and the Bristol Motor Speedway, or at least we sure did. However we were soon to learn that not only is Bristol in TN, but it actually shares itself with VA! This quant little town has an upbeat and energizing downtown atmosphere that makes for an awesome weekend getaway for theatre, good eats, tasty treats, breweries, and unique shopping. We found an Amazing "Country Music" themed brick loft right in the middle of Downtown so follow us on our adventure as we explore the hidden gem that is Bristol, TN/VA Airbnb: Mountain Music Loft- https://www.airbnb.com/rooms/38066974?guests=1&adults=1&s=67&unique_share_id=92cbf76a-da9b-4178-a45d-e68916814713 Country Music: A Documentary By Ken Burns Amazon link: https://amzn.to/3jLnBqL
Downtown Bristol is expected to be booming, with several events scheduled during the coming months. More: WCYB.com
Bristol, Tennessee (and Virginia) is FULL of surprises from the birthplace of country music to a very hip, walkable downtown! And let's not forget the Bristol Motor Speedway! So much to do, you'll need an extended weekend to get it all in! My travel television videos have always been and will remain free to you. The best way to support the videos I make is to SUBSCRIBE to my channel. Hit the subscribe button and never miss a new video. You are welcome here. All are welcome here. If you love to travel (as much I do), then this is your tribe; your community of like-minded individuals who seek to get out there and explore. All I ask is you watch, subscribe, like and share with your friends and family. SUBSCRIBE: https://www.youtube.com/erikthetravelguy TRAVEL MERCH: Erikthetravelguy.com.e...
Ten charged with sex crimes against children in Bristol, VA
Bristol, Virginia is now doing what it calls voluntary air sampling and monitoring at the landfill. More: https://wcyb.com/news/local/bristol-virginia-begins-voluntary-air-sampling-and-monitoring-at-landfill-city-of-bristol-virginia-mayor-neal-osborne-vocs-ammonia-hydrogen-sulfide-hope-for-bristol-joel-kellogg-grassroots-organization-environmental-environment
Bristol, Va. council approves apartments at The Falls
Bristol, Virginia city leaders discuss solutions to 'unusual odor'
Bristol, Virginia receives federal grant for housing revitalization
Bristol, VA business leaders support public camping ban
Bristol, Va. officer fires shot at vehicle
As a part of the Virginia is for Lovers WanderLove campaign, we are showcasing hidden gems, backroads, and outdoor locations in Southwest Virginia! Today we are showcasing Sugar Hollow Park in Bristol Virginia. This park offers camping, picnicking, walking trails, sports complexes, and this magical forest of perfectly planted trees. To learn more about Bristol and Sugar Hollow Park, visit their website at: https://discoverbristol.org/discover/outdoor/ To learn more about Southwest Virginia and other WanderLove destinations, visit our website: https://visitswva.org/ Finally, to learn more about Virginia is for Lovers and the WanderLove campaign, visit their website: https://www.virginia.org/
This is heading down Mill St over the Bristol Wharf and then back. Just practicing on a beautiful day.
Bristol is a borough in Bucks County, Pennsylvania, 23 miles (37 km) northeast of Center City Philadelphia, opposite Burlington, New Jersey on the Delaware River. Bristol Borough predates Philadelphia, being settled in 1681 and first incorporated in 1720. After 1834, the town became very important to the development of the American Industrial Revolution as the terminus city of the Delaware Canal providing greater Philadelphia with the days High Tech Anthracite fuels from the Lehigh Canal via Easton. The canal and a short trip on the Delaware also gave the town access to the mineral resources available in Connecticut, New Jersey and New York via each of the Morris Canal, the Delaware and Hudson Canal, and the Delaware and Raritan Canal, and connected the community to those markets and trade...
just a short aerial video
February 18, 2024 - 2:40 PM 40°F / 4°C Walking tour of the town of Bristol in Bucks County, Pennsylvania via the following route: Delaware Canal State Park Trail → Bristol Wharf → eastbound on Radcliffe Street → northbound on Mulberry Street → westbound on Cedar Street → northbound on Market Street → westbound on Pond Street →southbound on Mill Street. Filmed with GoPro Hero 12. Highlights: 00:00 - Delaware Canal State Park Trail 02:16 - Harriet Tubman statue 02:50 - Puerto Rican Immigration Monument 03:15 - High Cross Monument 03:58 - Christopher Columbus Memorial 04:16 - Bristol Wharf 05:40 - Bristol Beacon 06:38 - Walking eastbound on Radcliffe Street 07:19 - Community Baptist Church 08:37 - Walking northbound on Mulberry Street 09:30 - Walking westbound on Cedar Street 11:07 - Walkin...
Come Sail with The Philly Captain as he rides his scooter in Bristol Pennsylvania. The Captain starts off on the banks of the Delaware River and shows you a few historic locations in the historic borough. The Captain goes in a graveyard and shows you the graves of people who definitely had an impact on your life. #phillycaptain #bristol #jawn  Here is the link to the patreon ...... https://www.patreon.com/Thephillycaptain Send The Captain money on Cash app https://cash.app/$ThePhillyCaptain Buy A Phily Captain T shirt here https://www.redbubble.com/shop/philly+captain Buy the Captain a gift on his Amazon wishlist https://www.amazon.com/hz/wishlist/ls/393T24PYG3KWS?ref_=wl_share The Philly Captain's mailing address is P.O. Box 5989 Phila PA 19137 Follow The Captain on Instagram her...
#KingGeorge2 #Foodie #BristolPA This trip was to Bristol, PA where we found "America's Oldest Continuously Operating Inn". This place pre-dates the Revolutionary War and George Washington stayed here at the age of 25 on his way to Virginia. Such a cool place for history buffs to soak in, and the food's good too! http://www.kginn.com/ https://www.visitbuckscounty.com/listing/bristol-waterfront-park/4899/ Please subscribe to our Channel and share our videos: https://www.youtube.com/c/GROVELAND Follow us on Facebook for Channel updates: www.facebook.com/Grovelandvids
Best Places to live in Pennsylvania - Pennsylvania, United States Living in Pennsylvania offers a unique blend of history, culture, and natural beauty that can't be found anywhere else. From the bustling city streets to the peaceful countryside of Lancaster County, Pennsylvania has something for everyone. With a diverse economy, affordable housing options, and various cultural attractions, there are plenty of reasons to call Pennsylvania home. It's a diverse state offering a wide range of options for those looking to call it home. 00:00 Intro 00:54 8-Erie 02:12 7-Scranton 03:39 6-Harrisburg 04:45 5-Allentown 06:00 4-Lancaster 07:12 3-State College 08:20 2-Pittsburgh 09:28 1-Philadelphia 10:54 Outro Subscribe to Our Channel: https://bit.ly/3PJXN9c #UsHistorians #pennsylvania #viral ...
Bristol Wharf, Pennsylvania Drone Used: https://amzn.to/3w1SvRJ ~Main Channel (Mechanical Adventure Type Stuff): https://www.youtube.com/NoNonsenseKnowHow ~2nd Channel (Repairs, Reviews, and More): http://www.youtube.com/RNoNonsenseKnowHow ~3rd Channel (All #Shorts): https://www.youtube.com/channel/UC5MdocZ1V2QxqEAFoJvadTA ~4th Channel (MISC Stuff): https://www.youtube.com/channel/UCPplCbs9qJkfweMHASq-dTA Thanks so much for watching!
A group of cadets from Valley Forge Military Academy had the opportunity to share a meal with veterans at the Mansion at Rosemont retirement community Monday afternoon. Read more: https://www.cbsnews.com/philadelphia/news/rosemont-pennsylvania-veterans-day-cadets-event/ Subscribe on YouTube: http://www.youtube.com/CBSPHILLY Follow us on X: @CBSPhiladelphia Like us on Facebook: https://www.facebook.com/cbsphiladelphia/ Follow us on TikTok: @CBSPhiladelphia Follow us on Instagram: @CBSPhiladelphia
Spend some time with the family in Lower Bucks County! The lower region of Bucks County, which includes beautiful Bristol Borough, is filled with fun activities like Snipes Farm, Silver Lake Nature Center, Pennsbury Manor and more.
Bristol is a borough in Bucks County, Pennsylvania, 23 miles (37 km) northeast of Center City Philadelphia, opposite Burlington, New Jersey on the Delaware River. Bristol Borough predates Philadelphia, being settled in 1681 and first incorporated in 1720. After 1834, the town became very important to the development of the American Industrial Revolution as the terminus city of the Delaware Canal providing greater Philadelphia with the days High Tech Anthracite fuels from the Lehigh Canal via Easton. The canal and a short trip on the Delaware also gave the town access to the mineral resources available in Connecticut, New Jersey and New York via each of the Morris Canal, the Delaware and Hudson Canal, and the Delaware and Raritan Canal, and connected the community to those markets and trade...
Bristol is an independent city in the U.S. state of Virginia. As of the 2010 census, the population was 17,835. It is the twin city of Bristol, Tennessee, just across the state line, which runs down the middle of its main street, State Street. The Bureau of Economic Analysis combines the city of Bristol, Virginia, with neighboring Washington County, Virginia, for statistical purposes. Bristol is a principal city of the Kingsport–Bristol–Bristol, TN-VA Metropolitan Statistical Area, which is a component of the Johnson City–Kingsport–Bristol, TN-VA Combined Statistical Area – commonly known as the "Tri-Cities" region.
Originally named "Goodson", it was renamed "Bristol" (after Bristol, England) in 1890.
The Grove, Solar Hill Historic District, and Walnut Grove are listed on the National Register of Historic Places.
Bristol is located in southwestern Virginia at 36°36′N 82°11′W / 36.600°N 82.183°W / 36.600; -82.183 (36.6111, -82.1762). It is bordered to the west, north, and east by Washington County, Virginia, and to the south by the city of Bristol in Sullivan County, Tennessee.