- published: 22 Oct 2012
- views: 908950
'+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; })); }); -->
Clarence Eugene "Hank" Snow (May 9, 1914 – December 20, 1999) was a celebrated Canadian country music artist. In a career that spanned nearly 50 years, he recorded 140 albums and charted more than 85 singles on the Billboard country charts from 1950 until 1980. His number one hits include the self-penned songs "I'm Moving On", "The Golden Rocket" and famous versions of "I Don't Hurt Anymore", "Let Me Go, Lover!", "I've Been Everywhere", "Hello Love", as well as other top 10 hits.
Snow was an accomplished songwriter whose clear, baritone voice expressed a wide range of emotions including the joys of freedom and travel as well as the anguish of tortured love. His music was rooted in his beginnings in small town Nova Scotia where, as a frail, 80-pound youngster, he endured extreme poverty, beatings and psychological abuse as well as physically punishing labour during the economically depressed 1920s and 30s. Through it all, his musically talented mother provided the emotional support he needed to pursue his dream of becoming a famous entertainer like his idol, the country star, Jimmie Rodgers.
Charles Thomas "Stompin' Tom" Connors, OC (February 9, 1936 – March 6, 2013) was a Canadian country and folk singer-songwriter. Focusing his career exclusively on his native Canada, Connors is credited with writing more than 300 songs and has released four dozen albums, with total sales of nearly 4 million copies. Connors died at 77 in his home in Ballinafad, Ontario, of renal failure.
His songs have become part of the Canadian cultural landscape. Three of his best-known songs, Sudbury Saturday Night, Bud the Spud and The Hockey Song, are played at various games throughout the National Hockey League; the latter is played at every Toronto Maple Leafs home game.
He was born Charles Thomas Connors in Saint John, New Brunswick to the teenaged Isabel Connors and her boyfriend Thomas Joseph Sullivan at midnight, February 9, 1936 at the General Hospital in Saint John, New Brunswick.
Isabel's family were Protestant, and his maternal grandfather, John Connors, was a sea captain from Boston, Massachusetts who had died before Stompin' Tom was born. Stompin' Tom's father was a Catholic of Irish and French ancestry, and "may have been Métis or ... Micmac." Isabel Connors and Thomas Joseph Sullivan didn't wed until 30 years later, probably because Sullivan's family were devout Catholics and didn't want him marrying a Protestant; they later divorced. Sullivan's mother gave him $10, and was told to leave home. Connors was also cousin of New Brunswick fiddling sensation, Ned Landry.
Nova Scotia (Latin for "New Scotland", pronounced in English as /ˌnoʊvə ˈskoʊʃə/) (French: Nouvelle-Écosse; Scottish Gaelic: Alba Nuadh; Scots: New Alba) is one of Canada's three Maritime provinces, and one of the four provinces which form Atlantic Canada. Its provincial capital is Halifax. Nova Scotia is the second-smallest province in Canada, with an area of 55,284 square kilometres (21,300 sq mi), including Cape Breton and another 3,800 coastal islands. As of 2011, the population was 921,727, making Nova Scotia the second-most-densely populated province in Canada.
Nova Scotia means New Scotland in Latin and is the recognized English language name for the province. In Scottish Gaelic, the province is called Alba Nuadh, which also simply means New Scotland. The province was first named in the 1621 Royal Charter granting the right to settle lands including modern Nova Scotia, Cape Breton Island, Prince Edward Island, New Brunswick and the Gaspé Peninsula to Sir William Alexander in 1632.
Nova Scotia is the third album by Cousteau, released in 2005 on the Endeavour record label. It was subsequently released in the U.S. under the band name 'Moreau' due to legal reasons on the One Little Indian label with two additional tracks (*). The US release also featured new artwork.
Davey Ray Moor had previously left the band leaving the main song writing duties to be taken over by lead singer Liam McKahey. "We thought it was the end and we were all feeling really emotional," says McKahey of Moor's departure. "But after a few pints, we'd decided to carry on and do it (the songwriting) ourselves. It was sink or swim, and we decided to swim."
The Nova Scotia (grid reference ST571721) is a historic nineteenth century public house situated on Spike Island adjacent to the Cumberland Basin in Bristol Harbour in Bristol, England. It was originally built as a terrace of three houses and then converted into a pub. It is a grade II listed building. It was a coaching inn and traces of large lanterns and the entrance to the coach yard survive.
The pub serves food and has a range of real ales and traditional cider.
I Do Not Own The Rights For This.
From "Across This Land"
Here are a few of Stompin' Tom's best. This was recorded live at the Horseshoe Tavern in downtown Toronto, Ontario Canada. This is just a few songs from the film "Across This Land." To watch the entire film click the link below. He was a true Canadian Icon and may he rest in peace and forever sail away in the golden dory. 1936-2013 Acoss This Land https://www.youtube.com/watch?v=6dvtrWRTo4w 1) Sudbury Saturday Night 2) Bud the Spud 3) Luke's Guitar 4) Roll On Saskatchewan 5) The Moon-Man Newfie 6) Old Atlantic Shore 7) Goodbye Rubberhead 8) The Hockey Song 9) Big Joe Mufferaw 10) Mule Skinner Blues (I LOVE the face at 28:38) 11) My Stompin' Grounds
From the staff at www.stompintom.com We must regretfully announce today the passing of the Great and Patriotic Stompin' Tom Connors. He died this March 6th 2013 with his Family seeing him off. His family have given us a message from Tom that he wanted passed along to all of you upon his death: "Hello friends, I want all my fans, past, present, or future, to know that without you, there would have not been any Stompin' Tom." "It was a long hard bumpy road, but this great country kept me inspired with it's beauty, character, and spirit, driving me to keep marching on and devoted to sing about its people and places that make Canada the greatest country in the world." "I must now pass the torch, to all of you, to help keep the Maple Leaf flying high, and be the Patriot Canada needs now an...
Official music video for Stompin' Tom Connors' "Margo's Cargo".
http://acrossthislandwith.wix.com/stompintomconnors#!slideshow/chts Horseshoe Tavern circa 1973 He is known for many classic hits, including "Bud The Spud" "Ben In The Pen" "Margo's Cargo" "Sudbury Saturday Night" "The Hockey Song" "Luke's Guitar" "The Ketchup Song" and many more! Stompin' Tom combines the sound of traditional country western music, with Canadian folk music. A very unique blend! His influences include: Wilf Carter, Hank Snow, Hank Williams, Johnny Cash, Roger Miller
Live at the Horseshoe Tavern in 1973!
From the staff at www.stompintom.com We must regretfully announce today the passing of the Great and Patriotic Stompin' Tom Connors. He died this March 6th 2013 with his Family seeing him off. His family have given us a message from Tom that he wanted passed along to all of you upon his death: "Hello friends, I want all my fans, past, present, or future, to know that without you, there would have not been any Stompin' Tom." "It was a long hard bumpy road, but this great country kept me inspired with it's beauty, character, and spirit, driving me to keep marching on and devoted to sing about its people and places that make Canada the greatest country in the world." "I must now pass the torch, to all of you, to help keep the Maple Leaf flying high, and be the Patriot Canada needs now an...
Maple Leaf Gardens Closing Ceremonies
Your Nova Scotia adventure awaits. Experience our stunning coastlines, whale watching, , national parks, charming seaside towns and bustling city nights. Savour our seafood, paired it with our wines, beer, cider and spirits crafted by talented producers. It's easy to do more in Nova Scotia.
Follow live coverage from CBC Radio of municipal election night results from across Nova Scotia, starting at 7 p.m. AT on Saturday, Oct. 19. For more information on the election in your part of the province, visit https://www.cbc.ca/1.7330180
An investigation is underway following the tragic death of a Walmart employee in Halifax, N.S., over the weekend. Halifax police were called to the supercentre off Mumford Road on Saturday evening to investigate the sudden death of the 19-year-old female. While officials are currently keeping details under wraps, Global News has confirmed some key details about the incident. Ella MacDonald brings us the latest. For more info, please go to https://globalnews.ca/news/10821783/halifax-walmart-death-mumford-road/ Subscribe to Global News Channel HERE: http://bit.ly/20fcXDc Like Global News on Facebook HERE: http://bit.ly/255GMJQ Follow Global News on X HERE: http://bit.ly/1Toz8mt Follow Global News on Instagram HERE: https://bit.ly/2QZaZIB #GlobalNews #NovaScotia #Walmart
In this Nova Scotia travel guide, we showcase the best of where to go and what to see and do in this beautiful part of Canada. We recently spent 9 days on a road trip throughout Nova Scotia, and these were our favorite spots and highlights! Be sure to follow along (& subscribe) to my channel because I have a more in-depth series covering everything we did in Nova Scotia. If you're planning a trip to Nova Scotia, or a first-time visitor, I hope this video gives you some ideas of how amazing this part of Canada is! Chapters: 0:00 Nova Scotia Hype! 0:44 Cape Breton 2:22 Peggy's Cove 3:10 Lunenburg 4:10 Annapolis Valley 5:05 Bay of Fundy 6:00 Halifax 7:40 More to Come... Watch Next: Halifax travel guide: https://youtu.be/C3DjcRPOM7s Lunenburg & Peggy's Cove: https://youtu.be/qG_8XeNOmuQ An...
Are you thinking of visiting, studying in, or moving to Nova Scotia? Look no further! In this video, we will give you 5 compelling reasons to steer clear of this Canadian province. Reason #1: Water If you're not a fan of water activities like boating, fishing, or swimming, Nova Scotia may not be the place for you. With its extensive coastline and numerous lakes, water is a significant part of Nova Scotia's culture and lifestyle. Reason #2: Friendly People Do you prefer to keep to yourself and avoid engaging with locals? If so, you may want to think twice before visiting Nova Scotia. The people here are known for their warm hospitality and friendly nature, and you're likely to strike up a conversation with a stranger at any given moment. Reason #3: Taking Photos If you're not a fan of st...
The best things to do in Nova Scotia from Cape Breton to the South Shore. This Nova Scotia travel guide takes you on a road trip through Nova Scotia. ►Subscribe: http://bit.ly/1lY0X5y and click the bell to the right for new video notifications each week Check out the Wild Atlantic Way Road Trip in Ireland: bit.ly/2J1tQE8 Another Epic Drive. See more Nova Scotia Videos: ►Things to do in Nova Scotia - the Best of the South Shore:http://bit.ly/2wdR94O ►The Best of the Cabot Trail: https://youtu.be/8B0Wju2EjYQ ►Hiking the Cabot Trail: http://bit.ly/2u5ZTdT ►Scenes from Nova Scotia: http://bit.ly/2uEUzeo ►Kayaking the Bay of Fundy http://bit.ly/2tvZRdJ ►And check out our Canada playlist: http://bit.ly/2uYycA3 Enjoy this video highlighting all the great stops on Nova Scotia's South Shore. Fr...
In this Halifax travel guide we’re sharing all the best things to do, places to eat and where to stay. Read more on my blog about things to do in Halifax: https://likewhereyouregoing.com/2-days-in-halifax/ We stayed at the Prince George Hotel: https://bit.ly/3YuGIpf Watch next: Best of Nova Scotia: https://youtu.be/VS8KKm7-Y2I Lunenburg & Peggy's Cove: https://youtu.be/qG_8XeNOmuQ Annapolis Valley: https://youtu.be/5PHV-u6Rt7Y Cape Breton: https://youtu.be/eDUosK3D9nU?si=G1G02OxkOOc2ywin // About me - Aly Smalls: I'm the CFF (Chief Fun Finder) of my travel website - Like Where You're Going. https://likewhereyouregoing.com/ My free travel and destination guides focus on unique & fresh itineraries - showcasing Canada, USA, Mexico and a bit of Europe. Facebook Page: https://w...
BEST IN TRAVEL 2023: NOVA SCOTIA Taking a road trip around Nova Scotia is a journey you will never forget. Nova Scotia may be one of Canada's smallest provinces, but it's big on charm. Local surfer and entrepreneur Dean Petty shows us why he's obsessed with his island province. In between panoramic motorcycle rides to surprisingly exhilarating mudslides, Dean takes us to the best places to eat and to hang so you can see why this place is one of the BEST places to journey this year. Trust us — you'll be obsessed with Nova Scotia, too. Featuring: Dean Petty Executive Producer: Annie Greenberg Producer: Matt Paco Director / DP: Jack Pearce Camera Operator: Blake Horn Editor: Max Dickson Subscribe to the Lonely Planet YouTube Channel: https://youtube.com/@LonelyPlanet. Follow Lonely ...
The top places you can visit and activities to do in Nova Scotia, Canada! ☼ Travel Advice & Adventure: SUBSCRIBE & CLICK the 🔔☞ http://bit.ly/hey-nadine ✘ PLACES VISITED ✘ Harbour Hopper Tour: https://www.harbourhopper.com Maritime Museum: https://maritimemuseum.novascotia.ca Halifax Seaport Farmers Market: http://www.halifaxfarmersmarket.com Ocean Kayaking: http://www.capelahaveadventures.ca Pier 21: http://www.pier21.ca Lunenburg: http://www.explorelunenburg.ca/tourism Peggy's Cove: http://www.peggyscoveregion.com Kejimkujik National Park and National Historic Site: http://www.pc.gc.ca/eng/pn-np/ns/kejimkujik/index.aspx Try the Local Drinks: http://localtastingtours.com https://halifaxdistillingco.ca http://ironworksdistillery.com http://drinkannapolis.ca Surfing at White Point...
🛑Free Eligibility Assessment - https://www.questcanadaca.com/free-eligibility QuestCanada is connected and affiliated with 40 DLI schools in Atlantic Canada and over 200 schools across Canada. If you need help in your international student journey, fill out the form. 🛑Free Study Permit Mentorship– https://www.questcanadaca.com/master-diy 🛑https://www.questcanadaca.com/resources For more free downloads and information on how to jumpstart your international student to Canada journey, visit our website. Various free downloadable for you to be a successful international student in Canada. 🛑 Cost of Living in Atlantic Canada https://www.questcanadaca.com/CostofLivinginAtlanticCanada 🛑 Cost of Living in Nova Scotia https://www.questcanadaca.com/CostofLivinginNovaScotia 🛑 The Cheapest ...
Clarence Eugene "Hank" Snow (May 9, 1914 – December 20, 1999) was a celebrated Canadian country music artist. In a career that spanned nearly 50 years, he recorded 140 albums and charted more than 85 singles on the Billboard country charts from 1950 until 1980. His number one hits include the self-penned songs "I'm Moving On", "The Golden Rocket" and famous versions of "I Don't Hurt Anymore", "Let Me Go, Lover!", "I've Been Everywhere", "Hello Love", as well as other top 10 hits.
Snow was an accomplished songwriter whose clear, baritone voice expressed a wide range of emotions including the joys of freedom and travel as well as the anguish of tortured love. His music was rooted in his beginnings in small town Nova Scotia where, as a frail, 80-pound youngster, he endured extreme poverty, beatings and psychological abuse as well as physically punishing labour during the economically depressed 1920s and 30s. Through it all, his musically talented mother provided the emotional support he needed to pursue his dream of becoming a famous entertainer like his idol, the country star, Jimmie Rodgers.
We're havin' a party, we're havin' a session
Come on and join the redemption
We're havin' a party, we're havin' a session
Come on and join the redemption
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Them want I, them want I
To perform as them general
Them claim say, them claim say
We have the credential
Them want I, them want I
To perform as them general
Them claim say, them claim say
We have the credential
Come in a from the cold, me warm ya body and soul
Me have the girls upon remote control
And me never did act shy, the girls do give me reply
So after hours I go meet, I go fly
Nuff are gonna be good nuff a gwan bad
The stand me have to give them is the stand me have fi have
When the man they have nuff girls, and man nuff not to brag
Girls a love the man a when me kill them with the shag
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
I've been feelin' like I wanna go dancin'
With someone else 'cause I'm tired of dancin' with myself
I love a dem girls them screamin', they givin' me sexual healin'
Now I feel fine, so jack it up one time
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Them want I, them want I
To perform as them general
Them claim say, them claim say
We have the credential
Them want I, them want I
To perform as them general
Them claim say, them claim say
We have the credential
Now I'm feelin' like my skin is peelin'
The girls are fine, I wanna see them one more time
They got my body burnin?
Baby, I'm yearnin? for you to be mine
Oh well, so jack it up one last time, shag
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
We're havin' a party, we're havin' a session
(Say steedly, steedly woa, say steedly, steedly woa)
Come on and join the redemption
(Say steedly, steedly, steedly, steedly, steedly woa)
We're havin' a party, we're havin' a session
(Say steedly, steedly woa, say steedly, steedly woa)
Come on and join the redemption
(Say steedly, steedly, steedly, steedly, steedly woa, shag)
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa
Say steedly, steedly woa, say steedly, steedly woa
Say steedly, steedly, steedly, steedly, steedly woa