- published: 07 Jul 2023
- views: 103917
'+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; })); }); -->
The Flower Kings are a Swedish progressive rock group. Formed on August 1994 by veteran guitarist Roine Stolt, as a touring band to support his solo album The Flower King, the band stayed together after the tour and have gone on to become one of the most prolific studio recording units in rock music of their era. In thirteen years they released nearly 18 hours of music spread over 11 albums. Their music is similar to early symphonic progressive rock groups such as Yes, marked by sharp dynamic changes, polyrhythmics, heavy bass, vocal harmonies, abstract and occasionally nonsensical lyrics, and extended song lengths.
The Flower Kings have been through frequent personnel changes. The original line-up for Stolt's solo album consisted of Stolt (vocals, electric guitar, bass, and keyboards), Jaime Salazar (drums), and Hasse Fröberg (vocals). They later added Michael Stolt on bass and Tomas Bodin on keyboards for the supporting tour. Michael Stolt was replaced by Jonas Reingold in 2000, and Jaime Salazar by Zoltan Csörsz in 2002. Daniel Gildenlöw of Pain of Salvation joined the band the same year as a multi-instrumentalist and vocalist.
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.
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.
Coordinates: 34°14′20″N 83°10′23″W / 34.23900°N 83.17293°W / 34.23900; -83.17293
Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/ TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “Beginner's Eyes” Lyrics: Hold on - We are all here for good reasons You got to slow down sometimes and pick up the pieces You've got to hold on No time to roll on recklessly Now that you're homebound Looking for hometown synergy Roll on - wheels of a different melody You got to slow dow...
NEW FLOWER KINGS LIVE CD out May 17th 2024. - Promo for the new LIVE album. - Celebrating 30 years as a live performing act ! Here you will find The Flower Kings recorded live in The Netherlands - October 2023. The band captured at the end of a lengthy European tour - playing their classic material and showing their strength as a melodic, tight and incredibly dynamic unit - leaving plenty of space for each member to shine. Despite coming from just a one night routine tracking from the PA board, by chance, this recording and mix shines as the finest recording document of TFK live ever - as well as the power of mixing detail to perfection. Warm up your HiFi set - The Kings never sounded better. Garden Of Dreams Medley 12:21 Big Puzzle 17:44 The Dream 7:31 Day For Peace 3:11 Wha...
THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
Provided to YouTube by InsideOutMusic The Flower King · Roine Stolt The Flower King ℗ 1994 InsideOutMusic Released on: 2010-07-16 Producer: Not Documented Auto-generated by YouTube.
THE FLOWER KINGS - Revolution (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Essentials Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Essentials Playlist: https//open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc si=eH1XC3i5RBSXD4hUjiLcNA
Meet the Flower Kings is the second live album by the progressive rock artists The Flower Kings.. It was released in 2003 as a double-CD, and also as a two-disc DVD concert video.. The show was recorded at the Stadsteater, Uppsala, Sweden on 10 February 2003. 1. ""The Truth Will Set You Free"" (Stolt) I. "Lonely Road" II. "Primal Instincts" III. "From The Source" IV. "Uphill" V. "The Sun The Stars The Moon") 2. ""Garden Of Dreams" Part 1" (Bodin, Stolt) I. "Dawn" II. "Simple Song" III. "Business Vamp" IV. "All You Can Save" V. "Mr. Hope Goes To Wall Street" VI. "Attack of the Monster Briefcase" VII. "Did I Tell You") 3. ""Garden Of Dreams" Part 2" (Bodin, Stolt) VIII. "Garden of Dreams" IX. "Don't Let The D'Evil In" X. "L...
Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “The Dream” Lyrics: This dream - it won't go away It will lift your heart - a big smile Sometimes it hurts - sometimes you break It's another big ending that you cannot fake The light goes off but you still do shine They may try to break you But you're back in line In the fields of darknes...
Lady Chatterley's Lover is the last novel by English author D. H. Lawrence, which was first published privately in 1928, in Italy, and in 1929, in France. An unexpurgated edition was not published openly in the United Kingdom until 1960, when it was the subject of a watershed obscenity trial against the publisher Penguin Books, which won the case and quickly sold three million copies. The book was also banned for obscenity in the United States, Canada, Australia, India and Japan. The book soon became notorious for its story of the physical (and emotional) relationship between a working-class man and an upper-class woman, its explicit descriptions of sex and its use of then-unprintable profane words. It entered the public domain in the United States in 2024. Plot The story concerns a young...
13 December 2019
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...
Professional 3D animation, accurately reconstructed to match the event. From http://www.scenesystems.com
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: [email protected] #hudsonriver #eastcoast #rivers
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
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
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.
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.
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"
The Flower Kings are a Swedish progressive rock group. Formed on August 1994 by veteran guitarist Roine Stolt, as a touring band to support his solo album The Flower King, the band stayed together after the tour and have gone on to become one of the most prolific studio recording units in rock music of their era. In thirteen years they released nearly 18 hours of music spread over 11 albums. Their music is similar to early symphonic progressive rock groups such as Yes, marked by sharp dynamic changes, polyrhythmics, heavy bass, vocal harmonies, abstract and occasionally nonsensical lyrics, and extended song lengths.
The Flower Kings have been through frequent personnel changes. The original line-up for Stolt's solo album consisted of Stolt (vocals, electric guitar, bass, and keyboards), Jaime Salazar (drums), and Hasse Fröberg (vocals). They later added Michael Stolt on bass and Tomas Bodin on keyboards for the supporting tour. Michael Stolt was replaced by Jonas Reingold in 2000, and Jaime Salazar by Zoltan Csörsz in 2002. Daniel Gildenlöw of Pain of Salvation joined the band the same year as a multi-instrumentalist and vocalist.
Images of twilight becomes real
Help me spell it out now what we feel
Fear the silence, calling out the wild
That's the order in the kingdom of the child
There are ways you'll come out laughing for a while
There are moments when you break down like a child
There are times when you just want to scream out loud
Dancing with the ghost of the red cloud
Speak to me of the future days to come
Play for me, go beat your battle drum
Ghosts of Brimstone hiding in the lake
Pray them ball and chain won't ever break
There are ways you'll come out laughing for a while
There are moments when you break down like a child
There are times when you just want to scream out loud