'+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; })); }); -->

Eva Eastwood

Eva Östlund better known by her stage name Eva Eastwood (born in Örebro, Sweden on 25 September 1967), is a Swedish songwriter and singer who sings rockabilly and rock'n'roll songs.

Although she was offered a contract in the United States in 1997, she chose to go back home and soon after formed the band The Major Keys and made releases crediting Eva Eastwood and the Major Keys through the small Tail Records label based in Jönköping

In 2005, she took part in Allsång på Skansen, a sing-along TV show from Skansen performing "Vårt liv i repris" from her album En ny stil i stan proving to be a turning point in her career. Eva won the Millencolin Music Prize 2010 becoming the first woman to do so. In 2011, she returned to the same stage singing the title track "Lyckost" from her similarly named album.

As a songwriter, she has composed over 800 songs, including the likes of The Boppers, Linda Gail Lewis, Lalla Hansson, Berth Idoffs, Jerry Williams and Larz-Kristerz.

Discography

Albums

Hudson River

The Hudson River is a 315-mile (507 km) river that flows from north to south primarily through eastern New York in the United States. The river originates in the Adirondack Mountains of Upstate New York, flows through the Hudson Valley, and eventually drains into the Atlantic Ocean, between New York City and Jersey City. The river serves as a political boundary between the states of New Jersey and New York, and further north between New York counties. The lower half of the river is a tidal estuary occupying the Hudson Fjord, which formed during the most recent period of North American glaciation, estimated at 26,000 to 13,300 years ago. Tidal waters influence the Hudson's flow from as far north as Troy.

The river is named after Henry Hudson, an Englishman sailing for the Dutch East India Company, who explored it in 1609, and after whom Canada's Hudson Bay is also named. It had previously been observed by Italian explorer Giovanni da Verrazano sailing for King Francis I of France in 1524, as he became the first European known to have entered the Upper New York Bay, but he considered the river to be an estuary. The Dutch called the river the North River with the Delaware River called the South River and it formed the spine of the Dutch colony of New Netherland. Settlement of the colony clustered around the Hudson, and its strategic importance as the gateway to the American interior led to years of competition between the English and the Dutch over control of the river and colony.

Hudson River (Georgia)

The Hudson River is a 49.5-mile-long (79.7 km) tributary of the Broad River in the U.S. state of Georgia. Via the Broad River, it is part of the Savannah River watershed.

The headwaters are in Banks County near the city of Homer. Grove Creek feeds into the Hudson near the Franklin County line. The river then constitutes most of the southern border of Franklin County, separating it from Madison County. Nails Creek feeds into the river along this border, just before the Hudson itself feeds into the Broad River, south of the city of Franklin Springs.

See also

  • List of rivers of Georgia
  • References

  • U.S. Geological Survey Geographic Names Information System: Hudson River
  • USGS Hydrologic Unit Map - State of Georgia (1974)
  • Coordinates: 34°14′20″N 83°10′23″W / 34.23900°N 83.17293°W / 34.23900; -83.17293

    Podcasts:

    Eva Eastwood

    ALBUMS

    Eva Eastwood & The Major Keys

    ALBUMS

    • Eva Eastwood & The Boppers "They Never Know"

      Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10

      published: 11 May 2015
    • Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021

      Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabillymedley.

      published: 10 May 2021
    • Larz-Kristerz & Eva Eastwood - Hjärtat bankar

      (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebook.com/LarzKristerz

      published: 11 Jan 2012
    • Eva Eastwood - Rockabilly Willy

      Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy tillsammans med Kvinnaböske Band.

      published: 10 May 2023
    • Eva Eastwood - Lyckans ost

      Eva Eastwood - Lyckans ost

      published: 21 Feb 2012
    • Eva Eastwood "My My My" på Bingolotto 16 Maj 2010

      Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.

      published: 18 May 2010
    • Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023

      Från 17 December

      published: 17 Dec 2023
    • Bli Min

      Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Darrow Entertainment AB Released on: 2011-04-20 Producer: Fredric Björegren Music Publisher: BMG Rights Chrysalis Auto-generated by YouTube.

      published: 13 Jan 2019
    • Eva Eastwood - Lyckost

      Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Eva Eastwood.

      published: 22 Apr 2011
    • Eva Eastwood - Old School - Live BingLotto 9/5 2021

      Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"

      published: 10 May 2021
    developed with YouTube
    Eva Eastwood & The Boppers "They Never Know"
    2:47

    Eva Eastwood & The Boppers "They Never Know"

    • Order:
    • Duration: 2:47
    • Uploaded Date: 11 May 2015
    • views: 432980
    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    https://wn.com/Eva_Eastwood_The_Boppers_They_Never_Know
    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021
    4:00

    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021

    • Order:
    • Duration: 4:00
    • Uploaded Date: 10 May 2021
    • views: 20959
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabillymedley.
    https://wn.com/Eva_Eastwood_Rockabillymedley_Live_Bingolotto_9_5_2021
    Larz-Kristerz & Eva Eastwood - Hjärtat bankar
    3:12

    Larz-Kristerz & Eva Eastwood - Hjärtat bankar

    • Order:
    • Duration: 3:12
    • Uploaded Date: 11 Jan 2012
    • views: 1250153
    (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebook.com/LarzKristerz
    https://wn.com/Larz_Kristerz_Eva_Eastwood_Hjärtat_Bankar
    Eva Eastwood - Rockabilly Willy
    2:40

    Eva Eastwood - Rockabilly Willy

    • Order:
    • Duration: 2:40
    • Uploaded Date: 10 May 2023
    • views: 5704
    Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy tillsammans med Kvinnaböske Band.
    https://wn.com/Eva_Eastwood_Rockabilly_Willy
    Eva Eastwood - Lyckans ost
    2:29

    Eva Eastwood - Lyckans ost

    • Order:
    • Duration: 2:29
    • Uploaded Date: 21 Feb 2012
    • views: 107838
    Eva Eastwood - Lyckans ost
    https://wn.com/Eva_Eastwood_Lyckans_Ost
    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010
    2:54

    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010

    • Order:
    • Duration: 2:54
    • Uploaded Date: 18 May 2010
    • views: 185867
    Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.
    https://wn.com/Eva_Eastwood_My_My_My_På_Bingolotto_16_Maj_2010
    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023
    2:41

    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023

    • Order:
    • Duration: 2:41
    • Uploaded Date: 17 Dec 2023
    • views: 2426
    Från 17 December
    https://wn.com/Eva_Eastwood_The_Major_Keys_En_Riktig_Gran_Go’Kväll_Svt_2023
    Bli Min
    2:48

    Bli Min

    • Order:
    • Duration: 2:48
    • Uploaded Date: 13 Jan 2019
    • views: 15072
    Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Darrow Entertainment AB Released on: 2011-04-20 Producer: Fredric Björegren Music Publisher: BMG Rights Chrysalis Auto-generated by YouTube.
    https://wn.com/Bli_Min
    Eva Eastwood  -  Lyckost
    2:30

    Eva Eastwood - Lyckost

    • Order:
    • Duration: 2:30
    • Uploaded Date: 22 Apr 2011
    • views: 236039
    Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Eva Eastwood.
    https://wn.com/Eva_Eastwood_Lyckost
    Eva Eastwood - Old School - Live BingLotto 9/5 2021
    2:44

    Eva Eastwood - Old School - Live BingLotto 9/5 2021

    • Order:
    • Duration: 2:44
    • Uploaded Date: 10 May 2021
    • views: 4977
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"
    https://wn.com/Eva_Eastwood_Old_School_Live_Binglotto_9_5_2021
    • Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME

      Footage of the U.S. Airway Plane Landing on Hudson River in 2009. Subscribe to TIME ►► http://po.st/SubscribeTIME Get closer to the world of entertainment and celebrity news as TIME gives you access and insight on the people who make what you watch, read and share. https://www.youtube.com/playlist?list=PL2EFFA5DB900C633F Money helps you learn how to spend and invest your money. Find advice and guidance you can count on from how to negotiate, how to save and everything in between. https://www.youtube.com/playlist?list=PLYOGLpQQfhNKdqS_Wccs94rMHiajrRr4W Find out more about the latest developments in science and technology as TIME’s access brings you to the ideas and people changing our world. https://www.youtube.com/playlist?list=PLYOGLpQQfhNIzsgcwqhT6ctKOfHfyuaL3 Let TIME show you e...

      published: 16 Jan 2019
    • The Plane That Landed On The Hudson 😮

      published: 23 Sep 2024
    • Sully 2016 Plane Crash Scene Landing in the Hudson River

      published: 05 Jan 2017
    • Hudson River Plane Landing (US Airways 1549) Animation with Audio

      Professional 3D animation, accurately reconstructed to match the event. From http://www.scenesystems.com

      published: 06 Feb 2009
    • Travel Along America's Historic And Mighty Hudson River | World's Most Scenic River Journeys

      Escape with us on a sensational journey along America's Hudson River, from the brilliant fall colors of the Adirondack Mountains to the glinting skyscrapers of New York City. Through wild and spiritual landscapes, tackling white water rafting and riding beside tugboats. We'll explore a vibrant river flowing with history and culture, and meet the people who live, work, and play on this mighty waterway, known as one of America's most important and diverse waterways. Subscribe to see more full documentaries every week: https://bit.ly/2lneXNy TRACKS publishes unique, unexpected and untold stories from across the world every week. Any queries, please contact us at: owned-enquiries@littledotstudios.com #hudsonriver #eastcoast #rivers

      published: 29 Feb 2024
    • How All Passengers Survived the Miracle on the Hudson

      When US Airways Flight 1549 loses engine power moments after leaving LaGuardia, there's only one option: an emergency landing on the Hudson. #airdisasters #planecrash From: AIR DISASTERS: Getting Out Alive http://bit.ly/1aNLXYq

      published: 12 Apr 2015
    • 13 Interesting Facts About The Hudson River

      The Hudson River is a major river that runs through New York City in the United States of America. It begins at Lake Tear and runs south into New York state, where it is separated into the Upper Hudson River and the Lower Hudson River. The Hudson River is also historically significant because it was previously an important route for shipping commodities between New York Harbor and the Great Lakes through the Erie Canal, which substantially aided New York trade. #HudsonRiver #USA #Travel

      published: 22 Jun 2022
    • "Hudson River Miracle: 155 Lives Saved in 60 Seconds!"

      Relive the incredible moment when Captain Chesley "Sully" Sullenberger made history by safely landing a passenger plane on the Hudson River after a catastrophic bird strike. We'll delve into the minute-by-minute account of the events, exploring the heroic actions of the crew and passengers, and the lasting impact of this miraculous event on air safety and aviation history.

      published: 29 Mar 2023
    • The Haunted Island in New York's Hudson River: Pollepel Island

      Step into the shadows of history as we explore the infamous Bannerman Castle, a forgotten military warehouse nestled on Pollepel Island in the Hudson River. This abandoned structure, with its Gothic architecture and haunting tales, is a sight to behold. In this captivating video, we explore the island's rich history, unraveling the fascinating life of its owner, Frank Bannerman, and uncovering the hidden treasures within the castle's crumbling walls. From breathtaking views to astonishing relics, Pollepel Island offers a unique and unforgettable experience.

      published: 24 Dec 2024
    • Air Traffic Controller of USAirways Flight 1549 Hudson River Landing "the Lowest Low I've Ever Felt"

      Patrick Harten, the Air Traffic Controller of the US Airways Flight 1549 Hudson River Landing by Captain Chesley Sully Sullenberger speaks to Congress that "People do not survive landings on the Hudson" and it was "the lowest low I've ever felt"

      published: 28 Feb 2009
    developed with YouTube
    Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME
    0:44

    Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME

    • Order:
    • Duration: 0:44
    • Uploaded Date: 16 Jan 2019
    • views: 663495
    Footage of the U.S. Airway Plane Landing on Hudson River in 2009. Subscribe to TIME ►► http://po.st/SubscribeTIME Get closer to the world of entertainment and celebrity news as TIME gives you access and insight on the people who make what you watch, read and share. https://www.youtube.com/playlist?list=PL2EFFA5DB900C633F Money helps you learn how to spend and invest your money. Find advice and guidance you can count on from how to negotiate, how to save and everything in between. https://www.youtube.com/playlist?list=PLYOGLpQQfhNKdqS_Wccs94rMHiajrRr4W Find out more about the latest developments in science and technology as TIME’s access brings you to the ideas and people changing our world. https://www.youtube.com/playlist?list=PLYOGLpQQfhNIzsgcwqhT6ctKOfHfyuaL3 Let TIME show you everything you need to know about drones, autonomous cars, smart devices and the latest inventions which are shaping industries and our way of living https://www.youtube.com/playlist?list=PL2862F811BE8F5623 Stay up to date on breaking news from around the world through TIME’s trusted reporting, insight and access https://www.youtube.com/playlist?list=PLYOGLpQQfhNJeIsW3A2d5Bs22Wc3PHma6 CONNECT WITH TIME Web: http://time.com/ Twitter: https://twitter.com/TIME Facebook: https://www.facebook.com/time Google+: https://plus.google.com/+TIME/videos Instagram: https://www.instagram.com/time/?hl=en Magazine: http://time.com/magazine/ Newsletter: time.com/newsletter ABOUT TIME TIME brings unparalleled insight, access and authority to the news. A 24/7 news publication with nearly a century of experience, TIME’s coverage shapes how we understand our world. Subscribe for daily news, interviews, science, technology, politics, health, entertainment, and business updates, as well as exclusive videos from TIME’s Person of the Year, TIME 100 and more created by TIME’s acclaimed writers, producers and editors. Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME https://www.youtube.com/user/TimeMagazine
    https://wn.com/Footage_Of_The_U.S._Airway_Plane_Landing_On_Hudson_River_In_2009_|_Time
    The Plane That Landed On The Hudson 😮
    0:32

    The Plane That Landed On The Hudson 😮

    • Order:
    • Duration: 0:32
    • Uploaded Date: 23 Sep 2024
    • views: 15255825
    https://wn.com/The_Plane_That_Landed_On_The_Hudson_😮
    Sully 2016   Plane Crash Scene Landing in the Hudson River
    3:08

    Sully 2016 Plane Crash Scene Landing in the Hudson River

    • Order:
    • Duration: 3:08
    • Uploaded Date: 05 Jan 2017
    • views: 3935978
    https://wn.com/Sully_2016_Plane_Crash_Scene_Landing_In_The_Hudson_River
    Hudson River Plane Landing (US Airways 1549) Animation with Audio
    2:08

    Hudson River Plane Landing (US Airways 1549) Animation with Audio

    • Order:
    • Duration: 2:08
    • Uploaded Date: 06 Feb 2009
    • views: 4715650
    Professional 3D animation, accurately reconstructed to match the event. From http://www.scenesystems.com
    https://wn.com/Hudson_River_Plane_Landing_(Us_Airways_1549)_Animation_With_Audio
    Travel Along America's Historic And Mighty Hudson River | World's Most Scenic River Journeys
    47:04

    Travel Along America's Historic And Mighty Hudson River | World's Most Scenic River Journeys

    • Order:
    • Duration: 47:04
    • Uploaded Date: 29 Feb 2024
    • views: 156103
    Escape with us on a sensational journey along America's Hudson River, from the brilliant fall colors of the Adirondack Mountains to the glinting skyscrapers of New York City. Through wild and spiritual landscapes, tackling white water rafting and riding beside tugboats. We'll explore a vibrant river flowing with history and culture, and meet the people who live, work, and play on this mighty waterway, known as one of America's most important and diverse waterways. Subscribe to see more full documentaries every week: https://bit.ly/2lneXNy TRACKS publishes unique, unexpected and untold stories from across the world every week. Any queries, please contact us at: owned-enquiries@littledotstudios.com #hudsonriver #eastcoast #rivers
    https://wn.com/Travel_Along_America's_Historic_And_Mighty_Hudson_River_|_World's_Most_Scenic_River_Journeys
    How All Passengers Survived the Miracle on the Hudson
    3:54

    How All Passengers Survived the Miracle on the Hudson

    • Order:
    • Duration: 3:54
    • Uploaded Date: 12 Apr 2015
    • views: 22287559
    When US Airways Flight 1549 loses engine power moments after leaving LaGuardia, there's only one option: an emergency landing on the Hudson. #airdisasters #planecrash From: AIR DISASTERS: Getting Out Alive http://bit.ly/1aNLXYq
    https://wn.com/How_All_Passengers_Survived_The_Miracle_On_The_Hudson
    13 Interesting Facts About The Hudson River
    3:40

    13 Interesting Facts About The Hudson River

    • Order:
    • Duration: 3:40
    • Uploaded Date: 22 Jun 2022
    • views: 17294
    The Hudson River is a major river that runs through New York City in the United States of America. It begins at Lake Tear and runs south into New York state, where it is separated into the Upper Hudson River and the Lower Hudson River. The Hudson River is also historically significant because it was previously an important route for shipping commodities between New York Harbor and the Great Lakes through the Erie Canal, which substantially aided New York trade. #HudsonRiver #USA #Travel
    https://wn.com/13_Interesting_Facts_About_The_Hudson_River
    "Hudson River Miracle: 155 Lives Saved in 60 Seconds!"
    1:00

    "Hudson River Miracle: 155 Lives Saved in 60 Seconds!"

    • Order:
    • Duration: 1:00
    • Uploaded Date: 29 Mar 2023
    • views: 99551
    Relive the incredible moment when Captain Chesley "Sully" Sullenberger made history by safely landing a passenger plane on the Hudson River after a catastrophic bird strike. We'll delve into the minute-by-minute account of the events, exploring the heroic actions of the crew and passengers, and the lasting impact of this miraculous event on air safety and aviation history.
    https://wn.com/Hudson_River_Miracle_155_Lives_Saved_In_60_Seconds
    The Haunted Island in New York's Hudson River: Pollepel Island
    9:35

    The Haunted Island in New York's Hudson River: Pollepel Island

    • Order:
    • Duration: 9:35
    • Uploaded Date: 24 Dec 2024
    • views: 41
    Step into the shadows of history as we explore the infamous Bannerman Castle, a forgotten military warehouse nestled on Pollepel Island in the Hudson River. This abandoned structure, with its Gothic architecture and haunting tales, is a sight to behold. In this captivating video, we explore the island's rich history, unraveling the fascinating life of its owner, Frank Bannerman, and uncovering the hidden treasures within the castle's crumbling walls. From breathtaking views to astonishing relics, Pollepel Island offers a unique and unforgettable experience.
    https://wn.com/The_Haunted_Island_In_New_York's_Hudson_River_Pollepel_Island
    Air Traffic Controller of USAirways Flight 1549 Hudson River Landing "the Lowest Low I've Ever Felt"
    5:37

    Air Traffic Controller of USAirways Flight 1549 Hudson River Landing "the Lowest Low I've Ever Felt"

    • Order:
    • Duration: 5:37
    • Uploaded Date: 28 Feb 2009
    • views: 3260320
    Patrick Harten, the Air Traffic Controller of the US Airways Flight 1549 Hudson River Landing by Captain Chesley Sully Sullenberger speaks to Congress that "People do not survive landings on the Hudson" and it was "the lowest low I've ever felt"
    https://wn.com/Air_Traffic_Controller_Of_Usairways_Flight_1549_Hudson_River_Landing_The_Lowest_Low_I've_Ever_Felt
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Eva Eastwood & The Boppers "They Never Know"

    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    2:47
    Eva Eastwood & The Boppers "They Never Know"
    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    published: 11 May 2015
    Play in Full Screen
    4:00
    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabil...
    published: 10 May 2021
    Play in Full Screen
    3:12
    Larz-Kristerz & Eva Eastwood - Hjärtat bankar
    (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebo...
    published: 11 Jan 2012
    Play in Full Screen
    2:40
    Eva Eastwood - Rockabilly Willy
    Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy ...
    published: 10 May 2023
    Play in Full Screen
    2:29
    Eva Eastwood - Lyckans ost
    Eva Eastwood - Lyckans ost
    published: 21 Feb 2012
    Play in Full Screen
    2:54
    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010
    Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.
    published: 18 May 2010
    Play in Full Screen
    2:41
    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023
    Från 17 December
    published: 17 Dec 2023
    Play in Full Screen
    2:48
    Bli Min
    Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Da...
    published: 13 Jan 2019
    Play in Full Screen
    2:30
    Eva Eastwood - Lyckost
    Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Ev...
    published: 22 Apr 2011
    Play in Full Screen
    2:44
    Eva Eastwood - Old School - Live BingLotto 9/5 2021
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"...
    published: 10 May 2021
    Play in Full Screen

    Eva Eastwood

    Eva Östlund better known by her stage name Eva Eastwood (born in Örebro, Sweden on 25 September 1967), is a Swedish songwriter and singer who sings rockabilly and rock'n'roll songs.

    Although she was offered a contract in the United States in 1997, she chose to go back home and soon after formed the band The Major Keys and made releases crediting Eva Eastwood and the Major Keys through the small Tail Records label based in Jönköping

    In 2005, she took part in Allsång på Skansen, a sing-along TV show from Skansen performing "Vårt liv i repris" from her album En ny stil i stan proving to be a turning point in her career. Eva won the Millencolin Music Prize 2010 becoming the first woman to do so. In 2011, she returned to the same stage singing the title track "Lyckost" from her similarly named album.

    As a songwriter, she has composed over 800 songs, including the likes of The Boppers, Linda Gail Lewis, Lalla Hansson, Berth Idoffs, Jerry Williams and Larz-Kristerz.

    Discography

    Albums

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME

    Footage of the U.S. Airway Plane Landing on Hudson River in 2009. Subscribe to TIME ►► http://po.st/SubscribeTIME Get closer to the world of entertainment and celebrity news as TIME gives you access and insight on the people who make what you watch, read and share. https://www.youtube.com/playlist?list=PL2EFFA5DB900C633F Money helps you learn how to spend and invest your money. Find advice and guidance you can count on from how to negotiate, how to save and everything in between. https://www.youtube.com/playlist?list=PLYOGLpQQfhNKdqS_Wccs94rMHiajrRr4W Find out more about the latest developments in science and technology as TIME’s access brings you to the ideas and people changing our world. https://www.youtube.com/playlist?list=PLYOGLpQQfhNIzsgcwqhT6ctKOfHfyuaL3 Let TIME show you everything you need to know about drones, autonomous cars, smart devices and the latest inventions which are shaping industries and our way of living https://www.youtube.com/playlist?list=PL2862F811BE8F5623 Stay up to date on breaking news from around the world through TIME’s trusted reporting, insight and access https://www.youtube.com/playlist?list=PLYOGLpQQfhNJeIsW3A2d5Bs22Wc3PHma6 CONNECT WITH TIME Web: http://time.com/ Twitter: https://twitter.com/TIME Facebook: https://www.facebook.com/time Google+: https://plus.google.com/+TIME/videos Instagram: https://www.instagram.com/time/?hl=en Magazine: http://time.com/magazine/ Newsletter: time.com/newsletter ABOUT TIME TIME brings unparalleled insight, access and authority to the news. A 24/7 news publication with nearly a century of experience, TIME’s coverage shapes how we understand our world. Subscribe for daily news, interviews, science, technology, politics, health, entertainment, and business updates, as well as exclusive videos from TIME’s Person of the Year, TIME 100 and more created by TIME’s acclaimed writers, producers and editors. Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME https://www.youtube.com/user/TimeMagazine
    0:44
    Footage Of The U.S. Airway Plane Landing On Hudson River In 2009 | TIME
    Footage of the U.S. Airway Plane Landing on Hudson River in 2009. Subscribe to TIME ►► htt...
    published: 16 Jan 2019
    Play in Full Screen
    0:32
    The Plane That Landed On The Hudson 😮
    published: 23 Sep 2024
    Play in Full Screen
    3:08
    Sully 2016 Plane Crash Scene Landing in the Hudson River
    published: 05 Jan 2017
    Play in Full Screen
    2:08
    Hudson River Plane Landing (US Airways 1549) Animation with Audio
    Professional 3D animation, accurately reconstructed to match the event. From http://www...
    published: 06 Feb 2009
    Play in Full Screen
    47:04
    Travel Along America's Historic And Mighty Hudson River | World's Most Scenic River Journeys
    Escape with us on a sensational journey along America's Hudson River, from the brilliant f...
    published: 29 Feb 2024
    Play in Full Screen
    3:54
    How All Passengers Survived the Miracle on the Hudson
    When US Airways Flight 1549 loses engine power moments after leaving LaGuardia, there's on...
    published: 12 Apr 2015
    Play in Full Screen
    3:40
    13 Interesting Facts About The Hudson River
    The Hudson River is a major river that runs through New York City in the United States of ...
    published: 22 Jun 2022
    Play in Full Screen
    1:00
    "Hudson River Miracle: 155 Lives Saved in 60 Seconds!"
    Relive the incredible moment when Captain Chesley "Sully" Sullenberger made history by saf...
    published: 29 Mar 2023
    Play in Full Screen
    9:35
    The Haunted Island in New York's Hudson River: Pollepel Island
    Step into the shadows of history as we explore the infamous Bannerman Castle, a forgotten ...
    published: 24 Dec 2024
    Play in Full Screen
    5:37
    Air Traffic Controller of USAirways Flight 1549 Hudson River Landing "the Lowest Low I've Ever Felt"
    Patrick Harten, the Air Traffic Controller of the US Airways Flight 1549 Hudson River Land...
    published: 28 Feb 2009
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×