- published: 25 Jul 2023
- views: 20200
'+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; })); }); -->
Gloucester (i/ˈɡlɒstər/) is a city, district and county town of Gloucestershire in the South West region of England. Gloucester lies close to the Welsh border, and on the River Severn, approximately 32 miles (51 km) north-east of Bristol, and 45 miles (72 km) south-southwest of Birmingham.
A cathedral city, capital of its county which was built on a flat spot of land, Gloucester is situated on the River Severn and the Bristol and Birmingham Railway.
Gloucester was founded in AD 97 by the Romans under Emperor Nerva as Colonia Glevum Nervensis, and was granted its first charter in 1155 by King Henry II. Economically, the city is dominated by the service industries, and has a strong financial and business sector, being home to the bank Cheltenham & Gloucester and historically was prominent in the aerospace industry.
The origins of the name Gloucester can be traced to Caerloyw in the modern Welsh. There are various appellations in history such as Caer Glow, Gleawecastre, Gleucestre as an early British settlement is not confirmed by direct evidence. However, Gloucester was the Roman municipality of Colonia Nervia Glevensium, or Glevum, built in the reign of Nerva. Parts of the walls can be traced, and a number of remains and coins have been found, though inscriptions are scarce. In Historia Brittonum, a fabled account of the early rulers of Britain, Vortigern's grandfather, Gloiu (or Gloyw Wallt Hir: "Gloiu Long-hair"), is given as the founder of Gloucester. In the Anglo-Saxon Chronicle, Gloucester is shown as part of Wessex from the Battle of Deorham in 577 until 584, when it came under the control of Mercia. The name Gloucester derives from the Anglo-Saxon for fort (Old English ceaster) preceded by the Roman stem Glev- (pronounced glaiw).Claudia Castra is mentioned in the 18th Century as possible Latin name related to the city..
HM Prison Gloucester was a Category B men's prison located in Gloucester, Gloucestershire, England. The prison was operated by Her Majesty's Prison Service and closed in 2013.
Designed by William Blackburn, Gloucester opened as a County Gaol in 1791, and was substantially rebuilt in 1840 with flanking brick wings by Thomas Fuljames. A new young offenders wing was built at the prison in 1971. Further improvements were made in 1987, including a new gate, administration block and visits centre.
In April, 2003, Gloucester was named in a survey as "among the 20 most overcrowded jails" in the United Kingdom. The following day, the prison was the scene of a three-and-a-half hour siege when two prisoners protested over visiting rights by barricading themselves in a cell.
A Time Bank scheme was launched at Gloucester Prison in February 2006. Inmates who joined the scheme restored bicycles in the prison workshop, and this time was credited to their friends and families who could cash it in to get help from volunteers in the community. The scheme continued at the prison until its closure.
Gloucester is a regional rail station on the Gloucester (Rockport) Branch of the MBTA Commuter Rail Newburyport/Rockport Line, located off Railroad Avenue and Washington Street in the downtown area of Gloucester, Massachusetts. The station consists of a single side platform serving the line's single track. The station has a mini-high platform, making it handicapped accessible.
The Eastern Railroad built their Gloucester Branch in 1847, reaching Gloucester in December. The station was located in downtown Gloucester, at the intersection of Railroad and Maplewood Avenues. Gloucester was the end of the line until 1861, when the Rockport Railroad was built to extend the branch to Rockport station. Due to the new curve heading to Rockport, a new station was built to the west near Washington Street. The old depot, now on a short spur, was still used for freight service for several decades to come.
Initially, Rockport trains were operated by the Eastern Railroad and met Eastern mainline trains at Beverly. In 1864, trains began to be through-routed to Boston to increase frequencies on the inner part of the trunk line. The Eastern Railroad bought the Rockport Railroad in 1868, but the branch is still known as the Gloucester Branch. By the 1870s, regular commuter service was available. The Eastern was leased by the Boston and Maine Railroad in 1885 and merged into it in 1890. In 1911, the branch was doubled-tracked to Gloucester. (Today, the double track ends west of the station). Commuter service continued in the same fashion for decades, with 13 inbound round trips in 1906, 14 trips in 1950, and 11 trips in 1962.
Acadie—Bathurst (formerly Gloucester) is a federal electoral district in New Brunswick, Canada, that has been represented in the House of Commons of Canada since 1867.
Until 1997, the riding was largely held by the Liberal Party thanks to strong support from the francophone Acadian population. There is also a notable Red Tory tendency in the riding that enabled the former Progressive Conservative Party to win on occasion. In the 1997 federal election, the New Democratic Party's Yvon Godin won an unexpected victory over powerful Liberal cabinet minister Doug Young, mostly due to his Union connections and EI recipients' reaction to Liberal cuts to Employment Insurance. Godin held the riding until his retirement as of the 2015 federal election, at which point the Liberals reclaimed the riding as part of their sweep of Atlantic Canada.
The district includes eastern Gloucester County, and the communities along Nepisiguit Bay. The neighbouring ridings are Miramichi (electoral district) and Gaspésie—Îles-de-la-Madeleine.
Gloucestershire (i/ˈɡlɒstərʃər/ GLOSS-tər-shər; abbreviated Glos.) is a county in South West England. The county comprises part of the Cotswold Hills, part of the flat fertile valley of the River Severn, and the entire Forest of Dean.
The county town is the city of Gloucester, and other principal towns include Cheltenham, Cirencester, Stroud, and Tewkesbury.
Gloucestershire borders Herefordshire to the north west, Worcestershire to the north, Warwickshire to the north east, Oxfordshire to the east, Wiltshire to the south, Bristol and Somerset to the south west, and Monmouthshire to the west.
Gloucestershire is a historic county mentioned in the Anglo-Saxon Chronicle in the 10th century, though the areas of Winchcombe and the Forest of Dean were not added until the late 11th century. Gloucestershire originally included Bristol, then a small town. The "local" rural community moved to the port city, (as Bristol was to become) and Bristol's population growth accelerated during the industrial revolution. Bristol became a county in its own right, separate from Gloucestershire and Somerset in 1373. It later became part of the administrative County of Avon from 1974 to 1996.
The constituency of Gloucestershire was a UK Parliamentary constituency. After it was abolished under the 1832 Electoral Reform Act, two new constituencies, West Gloucestershire and East Gloucestershire, were created.
Gloucestershire was a constituency of the House of Commons of the Parliament of England, then of the Parliament of Great Britain from 1707 to 1800 and of the Parliament of the United Kingdom from 1801 to 1832. It was represented by two Knights of the Shire.
The constituency consisted of the historic county of Gloucestershire, excluding the part of the city of Bristol in the geographical county. Bristol had the status of a county of itself after 1373. Although Gloucestershire contained a number of other parliamentary boroughs, each of which elected two MPs in its own right for part of the period when Gloucestershire was a constituency, these were not excluded from the county constituency. Owning property within such boroughs could confer a vote at the county election. This was not the case, though, for Bristol.
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // This Gloucester travel guide shares the best things to do in Gloucester, England. ----------------- Recommended Tours in Gloucester: Tours of Colchester: https://www.viator.com/tours/Norwich/Colchester-History-Tours/d25031-381161P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-colchester-desc Zombie Scavengers Game - Colchester, UK: https://www.viator.com/tours/Norwich/Zombie-Scavengers-Game-Colchester/d25031-137238P498?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-colchester-desc ----------------- Welcome to the charming city of Gloucester, England! In this immersive video, we invite you to explore the top things to do and see in this his...
#GloucesterPlaces #PlacesInGloucester Gloucester is one of the biggest tourist attractions in England having many best places in Gloucester. Gloucester is a city in the west of England, near the Cotswolds rural area. It’s known for 11th-century Gloucester Cathedral, which has Romanesque and Gothic architecture, plus the tomb of King Edward II. Nearby are the Gloucester Docks, with restored Victorian warehouses, a dry dock and the Mariners Chapel. The National Waterways Museum celebrates the city’s industrial past with canal boats and interactive displays. As Gloucester famous places has such a long history and covers a lot of ground, it means that there is a huge amount to see and do – but as best places in Gloucester is so well connected even if you only have one day in this city, becaus...
CITY OF GLOUCESTER WALK FEATURING GLOUCESTER CATHEDRAL AND DOCKS "Gloucester Cathedral and Docks” Filmed 27th May 2024 Post-production completed 9th June 2024 Filmed in the city of Gloucester. Locations include Gloucester Cathedral, Gloucester Docks and Gloucester Quays. Written, presented, researched, directed, camera and sound, edited and music by Patrick Leach. Special thanks to Visit Gloucester for their information used in my research for this film. Click here for a map showing the route of the walk: https://explore.osmaps.com/route/20659712/gloucester-cathedral-and-docks-gloucester-city-centre?lat=51.863003&lon=-2.254685&zoom=14.5233&style=Standard&type=2d Click here for the location on Google Maps where I would have parked for this walk had I not used the bus: https://maps.ap...
The City of Gloster lies on the River Severn between the Cotswolds and the Forest of Dean. It is a cathedral city as well as Britain’s most inland port, linked to the Severn Estuary by the Gloucester and Sharpness Canal. One of the main attractions of Gloucester is the cathedral which stands in the north of the city and dates from the late 11th to early 12th century. A short walk from the cathedral is another popular tourist destination, Gloucester Docks. The docks are the most inland port in the country and contain many old dock buildings which have been repurposed for modern use. #Gloucester #Gloucestershire #GetawaysWithNoel
Welcome to the channel. This is going to be a channel deep diving the less talked about places in England. Today we cover Gloucestershire and the 6 worst places you could choose to live in the county. Some of this was shot before the latest data was released to the demographics could be slightly out of date but we stand by our choices! Apologies for the blurry drone on the number one entry the weather was appalling but that's English weather for you! It's a new channel and this will be improved upon. Please like, comment and subscribe for more. Next time we visit Devon and Cornwall.
Welcome, let me walk you around the city of Gloucester and give you an insight into its fascinating history and heritage spanning 2,000 years. It is a cathedral city alongside the River Severn, the most inland port in the UK. It's strategic position meant that it became an important port for the supplying the Midlands with food and materials during the Industrial Revolution. It is the location for the University of Gloucestershire having campuses in the city centre as well as the nearby Regency Spa town of Cheltenham. There are a number of museums recounting the fascinating development of the city. The Museum of Gloucester which is also where The Tourist Information Centre is based is in Brunswick Road off Eastgate Street. The historic docks, now no longer commercially viable, has the...
Gloucester UK, town walk 2024. No music, no talks, just natural sounds and city views. __________________________________________ ✔️Music We Use and You Can Get 1 month FOR FREE: ➡️ https://uppbeat.io/?as=OOKZCBHYLE __________________________________________ ✔️Canva - amazing tool for creating Thumbnails and Videos (FREE Option Available): ➡️https://partner.canva.com/gbQgk2 __________________________________________
Expanding on our previous visit during our Easter Special, we look into all the wonderful gems this Cathedral has to offer - from the burial place of Edward II all the way to the East window and the Lady Chapel. A brilliant place on the edge of the Cotswolds! Website: http://www.thecotswoldexplorer.co.uk Facebook: http://www.facebook.com/cotswoldexplorer Twitter: http://www.twitter.com/cotswoldplaces Instagram: http://www.instagram.com/thecotswolde...
Gloucester UU church's Sunday service. Share this free Sunday service with your friends and family! The Gloucester UU church is the oldest UU church in the country. We have regular Sunday services for all to watch and enjoy. The Universalist Unitarian Church ideology is a liberal church ideology that welcomes those of all races, gender identities, and cultures. Please feel welcome in our community no matter where you live! Every Sunday we broadcast our Sunday services typically hosted by Reverend Janet Parsons. DONATE HERE: https://www.gloucesteruu.org/connection/donate/ church, live church, liberal church, Unitarian Universalist, Unitarian Universalist Church, UU Church, Gloucester, Gloucester MA, Gloucester Massachusetts, welcoming church, LGBTQ church, BIPOC ...
Join me on my trip to Gloucester, as I spend the day exploring all the cool hidden gems and iconic landmarks that this city has to offer. Gloucester Cathedral was the first stop for the day, which is known for its enormous tower, outstanding architecture and unusual corridors. It's so perfect, it's even been used as a filming location for Harry Potter and Doctor Who! I then took a short walk across the city to the east side where the Museum of Gloucester is located, a free museum with some history. There are also the ruins of the east gate located on the main shopping street. As the rain started to move in a little, I went down to the docks area which has a large number of old warehouses, some with museums inside. This is where I stopped off for a bite to eat before proceeding to my nex...
An interesting schene indeed! Got the chance to visit the abandoned MBTA station called harbor on the Rockport line. The station is in between West Gloucester and Gloucester MBTA stations and was made to serve a newly built housing development in 1977. The station lasted for a good 8 years and was the only funded MBTA stop past manchester making it the last stop for a while. The station had a shelter and a grass clearing on the side of the outbound track and a nice paved path down to the station But, once MBTA began funding all stops past manchester, they decided to discount the station. All that remains is a grass patch and a comment slab and the nicely paved path. Trains go very slow by this station (Specifically outbound) nowadays because they are approaching the aging Gloucester draw b...
Here you'll see a MBTA Commuter Rail Train arriving at the Gloucester Station. This train was operating as Train 2100 Inbound to Boston on Labor Day. Recorded: 9/2/19
I hope you enjoy the video. For more, check out my Instagram: https://instagram.com/rail_spike_productions
WBZ TV's Kate Merrill reports.
Thanks for Watching Rail Spike Productions 2130! For more information, check out my Website, and to get information about when videos will be uploaded on this channel and see photos and some videos before they are uploaded, check out my Instagram: @railspikeproductions_2130 In this video I filled all around Gloucester and West Gloucester, Massachusetts. I was lucky enough to see a few meets and a friend of mine at the controls of MP36PH-3C 011.
taken around 10/16/13.
After a year of not uploading videos to this channel, it's FINALLY back.
In this video, I travel to Salem, MA during the morning of Halloween. I wanted to experience what it was like to ride the commuter rail from the Boston North Station to Salem. I heard that car traffic into the city was very bad, and that the commuter rail was the most efficient way to travel to and from Salem. Recorded October 31, 2021 💲 Support Me 💲 💵 PayPal: https://paypal.me/actionkidyt?locale.x=en_US 💵 Cash App: $actionkid 💵 Patreon: https://www.patreon.com/actionkid 💵 Merchandise Store: https://the-actionkid-store.creator-spring.com 😀 Social 😀 📸 My website: http://www.actionkidtv.com/ 📸 Follow me on Instagram: https://www.instagram.com/actionkidtv/ 📸 Follow me on Twitter: https://twitter.com/actionkidtv 📸 Discord Server : https://discord.gg/sw7SCeu ******************************...
Gloucester (i/ˈɡlɒstər/) is a city, district and county town of Gloucestershire in the South West region of England. Gloucester lies close to the Welsh border, and on the River Severn, approximately 32 miles (51 km) north-east of Bristol, and 45 miles (72 km) south-southwest of Birmingham.
A cathedral city, capital of its county which was built on a flat spot of land, Gloucester is situated on the River Severn and the Bristol and Birmingham Railway.
Gloucester was founded in AD 97 by the Romans under Emperor Nerva as Colonia Glevum Nervensis, and was granted its first charter in 1155 by King Henry II. Economically, the city is dominated by the service industries, and has a strong financial and business sector, being home to the bank Cheltenham & Gloucester and historically was prominent in the aerospace industry.
The origins of the name Gloucester can be traced to Caerloyw in the modern Welsh. There are various appellations in history such as Caer Glow, Gleawecastre, Gleucestre as an early British settlement is not confirmed by direct evidence. However, Gloucester was the Roman municipality of Colonia Nervia Glevensium, or Glevum, built in the reign of Nerva. Parts of the walls can be traced, and a number of remains and coins have been found, though inscriptions are scarce. In Historia Brittonum, a fabled account of the early rulers of Britain, Vortigern's grandfather, Gloiu (or Gloyw Wallt Hir: "Gloiu Long-hair"), is given as the founder of Gloucester. In the Anglo-Saxon Chronicle, Gloucester is shown as part of Wessex from the Battle of Deorham in 577 until 584, when it came under the control of Mercia. The name Gloucester derives from the Anglo-Saxon for fort (Old English ceaster) preceded by the Roman stem Glev- (pronounced glaiw).Claudia Castra is mentioned in the 18th Century as possible Latin name related to the city..
I'm too pac and two spots the block is secured
Stacked up to a fiend me, I'm the one you should call
But shawty on tour, juicy couture over law
And the drough when it's fire bet I can talk em to fall
Rhymes spreaded, I said it with a style
Commerce you dealer, I gave em coke and a smile
From poverty, no cold, it was foul
Now they admire me, I've been broke in a while
Wild, can't be talking to me
After my show, I have to be forced in the van
Came to new york, christopher walken to me
Figgy and pumble, christopher's walking to me
Slick talking tatty, bare arms, from iran, hope you ready
Grave yam yankee fitty cap, fred the god and I came to brign the city back
[Hook]
You know I bees in the city
You drive v's to the city
We push keys to the city
Mayor minds hope give me the key to the city
Now rep your city, this is for the streets
Now rep your city, this is for the streets
Now rep your city, this is for the streets
Now turn up
New york life is lawless
I got the city turnt up like the stocks dumped on mike and harris
Works the purest, same color is
Girl here from school, she studyin the art of chow
Forget the vest I wear liff up
Tbm the best, they will clip em
Heard you got sour around, well we'll stick em
For that 7 pounds with the wesson I will smith em
7 pounds will smith, big bronx uptown and we still spit
We back flowin and y'all know I got lines around the block
Like the tunnel back open
Speaking of tunnel, you know the sun is span
Call me harry and turman cause I got tunnel vision
Blue yankee fitty cap, fred the god and I came to bring the city back
[Hook]
You know I bees in the city
You drive v's to the city
We push keys to the city
Mayor minds hope give me the key to the city
Now rep your city, this is for the streets
Now rep your city, this is for the streets
Now rep your city, this is for the streets