- published: 29 Jun 2022
- views: 67606
'+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; })); }); -->
Ferryland is a town in Newfoundland and Labrador on the Avalon Peninsula. According to the 2011 Statistics Canada census, its population is 465. Addresses in Ferryland use the alphanumerically lowest postal codes in Canada, starting with A0A.
Ferryland was originally established as a station for migratory fishermen in the late 16th century but had earlier been used by the French, Spanish, and Portuguese. By the 1590s it was one of the most popular fishing harbours in Newfoundland and acclaimed by Sir Walter Raleigh. Ferryland was called "Farilham" by the Portuguese fishermen and "Forillon" by the French—it later became anglicized to its current name "Ferryland." (This should not be confused with the Forillon National Park in Quebec, which still keeps its French name.)
The land was granted by charter to the London and Bristol Company in the 1610s and the vicinity became the location of a number of short-lived English colonies at Cuper's Cove, Bristol's Hope, and Renews and adjoined the colony of South Falkland. In 1620 the territory was granted to George Calvert, 1st Baron Baltimore who had obtained the holdings from William Vaughan.
Newfoundland and Labrador (/njuːfənˈlænd ænd ˈlæbrədɔːr/, French: Terre-Neuve-et-Labrador) is the most easterly province of Canada. Situated in the country's Atlantic region, it comprises the island of Newfoundland and mainland Labrador to the northwest, with a combined area of 405,212 square kilometres (156,500 sq mi). In 2013, the province's population was estimated at 526,702. About 92% of the province's population lives on the island of Newfoundland (and its neighboring smaller islands), of whom more than half live on the Avalon Peninsula. The province is Canada's most linguistically homogeneous, with 97.6% of residents reporting English (Newfoundland English) as their mother tongue in the 2006 census. Historically, Newfoundland was also home to unique varieties of French and Irish, as well as the extinct Beothuk language. In Labrador, local dialects of Innu-aimun and Inuktitut are also spoken.
Newfoundland and Labrador's capital and largest city, St. John's, is Canada's 20th-largest census metropolitan area, and is home to almost 40 percent of the province's population. St. John's is the seat of government, home to the House of Assembly of Newfoundland and Labrador and to the highest court in the jurisdiction, the Newfoundland and Labrador Court of Appeal.
Athlone (/æθˈloʊn/; Irish: Baile Átha Luain, meaning "town of Luan's ford") is a town on the River Shannon near the southern shore of Lough Ree in Ireland. It is the largest town in the Midlands Region. Most of the town lies on the east bank of the river; however, by the terms of the Local Government Act of 1898, six townlands on the west bank of the Shannon were deemed to be part of the town and, therefore, part of County Westmeath.
The 2011 Census of Ireland recorded the population of the town at 20,153, a 14.8% increase from 2006. Recent growth has also occurred outside the town's boundaries.
Athlone is near the geographical centre of Ireland, which is 8.85 kilometres (5.50 mi) north-northwest of the town, in the area of Carnagh East in County Roscommon.
Athlone Castle is the geographical and historical center of Athlone. Throughout its early history, the ford of Athlone was strategically important, as south of Athlone the Shannon is impassable until Clonmacnoise, where the Esker Riada meets the Shannon, while to the north it flows into Lough Ree. In 1001 Brian Bóru sailed his army up river from Kincora and through Lough Derg to attend a gathering in Athlone.
Athlone is a residential neighbourhood in north west Edmonton, Alberta, Canada. The neighbourhood is named after the Earl of Athlone, Canada's Governor-General from 1940-46. The western portion of the neighbourhood is also called Dunvegan, after the Dunvegan Yards a railway depot that existed on the site for some 70 years.
The most common type of residence in the neighbourhood, according to the 2005 municipal census, is the single-family dwelling. These account for four out of every five (80.2%) of all the residences in the neighbourhood. Row houses account for another one in seven (14.9%) of all residences. Most of the remaining residences are duplexes. Just under three out of every four (73%) of all residences are owner-occupied with just over one out of every four (27%) being rented.
There are three schools in the neighbourhood. Athlone Elementary School and Wellington Junior High School are operated by the Edmonton Public School System, while Sir John Thompson Catholic Junior High School is operated by the Edmonton Catholic School System.
Athlone is a major town and River Shannon crossing in County Westmeath in Ireland.
Athlone may also refer to:
In geography: (by country)
In politics:
Others:
In This Video You Can See the Top 5 Places to Live in Newfoundland and Labrador’s (CA) or Best Places to live || Moving in Newfoundland || Live in Newfoundland || Life in Newfoundland || Places to see. 😍 4K Newfoundland and Labrador’s modern amenities, vibrant culture, and world-class hotels, all just a few miles away from the pristine coastland and woodland offer excellent urban and rural living. Although the cities are much smaller than other cities in the rest of the country, they offer adventure and a different way of living. Newfoundland and Labrador is much bigger than some of the countries like Germany and Japan. It has a population of approximately 550,000 people, with the majority living in urban areas. The province has six parks and several provincial wilderness parks. So...
If you enjoyed this one, maybe check out this one next: https://youtu.be/TrNcV_QE4o8 And check out our store: https://ilovesnewfoundland.com Newfoundland is my favorite place in the world, but there are unique challenges here. Combine these with a few more common challenges, and you might find that this isn't the place where you will live your best life. On the other hand, sometimes all it takes is some advance notice so you can prepare for the hard stuff, and then you won't be caught off guard. I mention a podcast about "Sheila's Brush" in this video, here is the link: https://www.productofnewfoundland.ca/articles/what-is-sheilas-brush I am not affiliated with "Product of Newfoundland" in any way, but I find myself really enjoying the content on that site, so do yourself a favor and ch...
New Foundland and Labrador Canada 🇨🇦 Virtual Job Fair 2024 | Sponsorship Jobs | No agent needed Have you heard that New Foundland and Labrador Located at the eastern part of Atlantic region is having a virtual job fair that can land you in canada 🇨🇦 in 2025? No need LMIA as New Foundland has exemptions for LMIA work permit options. Virtual fair 24th October 2024, 9am - 4pm and 23rd January 2025, 9 am - 4pm. Get a job offer here and apply for PR. Update your resume and register. There is also an email to contact if you have technical issues. This is all for free and you can come with your family All you need to know about the virtual job fair and Register here for the virtual job fair: https://homeawaits.ca/virtualevents/ Please like, comment, share and subscribe 👍 Canada Job Fair 2...
10 Reasons Why is everyone Moving to Newfoundland and Labrador Newfoundland and Labrador, Canada's easternmost province, is a land of rugged natural beauty and rich history. If you're intrigued by the unique charm of Newfoundland and Labrador, be sure to check out our video, "10 Reasons to Live in Newfoundland and Labrador. ➡️Playlist About The Canada: https://www.youtube.com/playlist?list=PLJ4bsCQChnUoU0Cff81u_F-8Ev0-g6vJ6 ➡️Become a channel member and gain benefits: https://www.youtube.com/channel/UCpQIsmcyBptw_u5Hxpv2ycQ/join newfoundland,newfoundland and labrador,newfoundland canada,cape spear,is newfoundland a good place to live,labrador,st johns newfoundland,atlantic canada,living in newfoundland,st. john's,come to newfoundland,come to nl,around the bay,east coast canada,cost o...
The latest news from CBC Newfoundland and Labrador. »»» Subscribe to CBC NL to watch more videos: https://www.youtube.com/c/cbcnl?sub_confirmation=1 For your daily CBC NL news fix: https://www.cbc.ca/nl CBC NL on Twitter: https://www.twitter.com/cbcnl CBC NL on Facebook: https://www.facebook.com/cbcnl/
As requested! Newfoundland and Labrador, a spectacular province with so much to see. There is so much history spread all over! All of the pictures and video footage was taken on my trip there in early 2020! Newfoundland offers such a unique lifestyle. The culture, the people, the food and everything else is absolutely amazing...except the snow, the snow kinda sucks lol. Since I didn't talk about Labrador that much in the video, let me know if you would want to see a video specifically about Labrador! Let me know what you all think of NL! Would you move there? Leave come suggestions in the comments, and don't forget to like and subscribe!
Listen to the new podcast and video series: Around The World With Geoff, available July 17th on this channel and ALL major podcast apps! 💬 Instagram: https://www.instagram.com/geographybygeoff/ 💬 Threads: https://www.threads.net/@geographybygeoff 🌎 Podcast: @GeographyPod or https://www.spreaker.com/show/geography-is-everything 🌳 Linktree for everything: https://linktr.ee/geographybygeoff 🗺️ Map store: https://geoffxmuirway.com/ 🤠 Patreon: https://www.patreon.com/GeographyByGeoff Did you know that Newfoundland and Labrador were once an independent country in the same manner as Canada was? It's true! It was called the Dominion of Newfoundland and due to a series of unfortunate events, it had to relinquish its independence. In today's video, we cover the vast geography of the province, it's...
To register for this opportunity to connect with Newfoundland-based employers, go here: https://homeawaits.vfairs.ca/en/ If you found this video helpful, please consider subscribing: https://www.youtube.com/channel/UCSTfWh04sfi1hYLXh94UK-A?sub_confirmation=1 I also create videos about Newfoundland, and share stories from people who have moved here from locations around the world. I have another channel for those videos. Click here to see: https://www.youtube.com/channel/UCZzKIHzPW1gccA_2tY87kWQ -- My name is Mark Royle and I am a Regulated Canadian Immigration Consultant (RCIC). If you have further questions about work permits, or any other aspect of the Canadian immigration system, please feel free to contact me via email: [email protected] Or to book a consultation, select a t...
In this Gale Force Wins WinGust, we dive into the Valentine Gold Mine with Ryan King from Calibre Mining. Learn how this transformative project in Newfoundland and Labrador, which is 81% complete, is set to become Atlantic Canada’s largest open-pit gold mine. Our guest shares how Calibre's acquisition of the asset from Marathon Gold has paved the way for significant economic growth, job opportunities, and operational excellence in the region. Explore the journey from initial discoveries to the strategic mine plan and learn how Calibre Mining is committed to delivering quality through advanced infrastructure and experienced leadership. Hear how this project not only strengthens Calibre’s portfolio but also enhances Newfoundland's economy by retaining local talent and establishing sustainab...
Canada and Newfoundland remained separate from 1867 to 1949. But given their close proximity, cultural connections and economies, why did it take so long? To find out watch this short and simple animated history documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Daniel Galgano Fox2012 Ethan Godden Robyn Kitchen Southside Mitch Hasmuffin John Azlow the Lion Andrew Partington Michael Kram Ryan Schindeler Franco La Bruna אורי פרקש So long, john kevinh Tino David Brown Scott P Aaron Conaway Chase Labiste Kevin Phoenix Ian Smith Dan Reiher Chris Weisel Brian Giordano anon Ian Jensen Leena Al-Souki ...
Visit Athlone in County Westmeath with us! We are taking you to Athlone Ireland day trip, at the very centre of Ireland, where you're in the heart of it all. The perfect base to enjoy, explore and escape! We visit oldest pub in he world, Athlone Castle, test local Guinness quality and much more. Athlone Town is located in County Westmeath on the banks of the River Shannon, Ireland's longest River. It's a great location for people who want to cruise the Shannon. The medieval Athlone Castle offers views from its battlements, plus displays on local history. South of town, along the River Shannon, the early Christian ruins of Clonmacnoise include a cathedral and 7 churches. To the north, vast Lough Ree is dotted with islands, some housing monastic ruins. Dún na Sí Amenity & Heritage Park ha...
A visit to the town of Athlone in County Westmeath in Ireland. #athlone #ireland
Athlone is a town in County Westmeath, Ireland. It is located on the River Shannon near the southern shore of Lough Ree. It is the second most populous town in the Midlands Region. The town is semicircular in shape with the river neatly dividing it in two halves. Hope in to the Vikings Boat is a must here to be able to enjoy the beautiful history of this medieval town, and of course The Athlone Castle and Saint and St. Peter & Pauls Athlone Church should be included in the list. Email: [email protected] IG: iamthesplendidfeet Subscribe to my channel my channel for more videos: https://www.youtube.com/c/SplendidFeet I'm using VideoStudio Pro 2020 Video Editing Software https://www.kqzyfj.com/click-100170594-11316431 https://amzn.to/2As6cNv Hohem iSteady X Gimbal Stabilize...
Athlone is at the centre – and heart – of Ireland. A former garrison town, it's rich with heritage and history – making it the perfect location for a two-day getaway. From castles to walking tours and great food galore, here's everything you should eat, do, and explore in 48 hours. Tap into the relaxed rhythm of Ireland's Hidden Heartlands to reveal unexplored tracks and trails, beguiling waterways, exciting waterside towns and picturesque rural villages. Yours to Uncover. Subscribe to our channel for inspiration for your next perfect holiday break in Ireland! Explore our website today: https://irelandshiddenheartlands.discoverireland.ie/ Uncover the region on... Instagram: http://bit.ly/2YFCoEn Facebook: http://bit.ly/2U6GeI5
Another travelling video. This time the choice was Atlhone. A small town in the heart of Ireland. Very little place but much to see. I really enjoyed my time there and I hope you like this video. Thanks for watching! Music attribution Song: Inukshuk - The Long Road Home [NCS Release] Music provided by NoCopyrightSounds Free Download/Stream: http://ncs.io/TLRH Watch: http://youtu.be/athFRSHdrag Contact details: Instagram https://www.instagram.com/mind_off_set/ Facebook https://www.facebook.com/MindOffSet/?ref=pages_you_manage Email [email protected]
Athlone Town is located in County Westmeath on the banks of the River Shannon, Ireland's longest River. It's a great location for people who want to cruise the Shannon. The population of Athlone is over 21 thousand. FILMED ON A GOPRO HERO 8 + MEDIA MOD + RODE LAVALIER MIC
GET YOUR LOITV HALF-SEASON PASS NOW 📺🎫 | https://www.loitv.ie/en-int/page/season-pass-1 All the action as league leaders Cork fall to defeat in the Midlands.
I went to Ireland’s most romantic place Athlone as revealed by a recently online study. So for Valentines Day I travelled down to see just how loved up it really is.
The goal and the highlights from the 1 - 0 win over Cork City FC in the SSE Airtricity Men's First Division on the 31.05.2024 at the Athlone Town Stadium 18' Jamar campion Hinds ATAFC #CmonTheTown #PrideOfTheMidlands
A 4K Guided Walking Tour of Athlone Town in County Westmeath, The Republic of Ireland. Situated 8Km from the geographical centre of Ireland, Athlone is a colourful and historic town on the banks of The River Shannon. Join me for a guided walk through the narrow streets of the Town Centre and we will see among other things The River Shannon, Athlone Castle and Bridge and The Church of Saints Peter & Paul. Athlone is also famous for being home to the oldest pub in Ireland. Sean's Bar dates back an amazing 1000 years and I couldn't resist stopping in for a pint of Guinness. Athlone is approximately 100KM for Dublin City and is easily accessible by car and rail. It is a beautiful and friendly town so is certainly worth adding to your itinerary. You can support the channel by liking the vide...
Ferryland is a town in Newfoundland and Labrador on the Avalon Peninsula. According to the 2011 Statistics Canada census, its population is 465. Addresses in Ferryland use the alphanumerically lowest postal codes in Canada, starting with A0A.
Ferryland was originally established as a station for migratory fishermen in the late 16th century but had earlier been used by the French, Spanish, and Portuguese. By the 1590s it was one of the most popular fishing harbours in Newfoundland and acclaimed by Sir Walter Raleigh. Ferryland was called "Farilham" by the Portuguese fishermen and "Forillon" by the French—it later became anglicized to its current name "Ferryland." (This should not be confused with the Forillon National Park in Quebec, which still keeps its French name.)
The land was granted by charter to the London and Bristol Company in the 1610s and the vicinity became the location of a number of short-lived English colonies at Cuper's Cove, Bristol's Hope, and Renews and adjoined the colony of South Falkland. In 1620 the territory was granted to George Calvert, 1st Baron Baltimore who had obtained the holdings from William Vaughan.