- published: 11 Nov 2015
- views: 3712
'+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; })); }); -->
Lost in Space is an American science fiction television series, following the adventures of a family of pioneering space colonists whose ship goes off course. It was created and produced by Irwin Allen, filmed by 20th Century Fox Television, and broadcast on CBS. The show ran for three seasons, with 83 episodes airing between 1965 to 1968 The first television season was filmed in black and white, with the second and third seasons filmed in color.
Though the original television series concept centered on the Robinson family, many later story lines focused primarily on Dr. Zachary Smith, played by Jonathan Harris. Smith, along with the Robot, was absent from the pilot as the addition of their characters was decided once the series had been commissioned for production. Originally written as an utterly evil but careless saboteur, Smith gradually becomes the troublesome, self-centered, incompetent foil who provides the comic relief for the show and causes most of the episodic conflict and misadventures. In the unaired pilot, what causes the group to become lost in space is a chance encounter with a meteor storm, but in the first aired episode, it is Smith's sabotage and unplanned presence on the ship that sets the ship off course into the meteor field. Smith is thus the key to the story.
Lost in Space is a 1998 American science fiction adventure film directed by Stephen Hopkins and starring William Hurt, Matt LeBlanc, and Gary Oldman. The film was shot in London and Shepperton, and produced by New Line Cinema. The plot is adapted from the 1965–1968 CBS television series Lost in Space. The film focuses on the Robinson family, who undertake a voyage to a nearby star system to begin large-scale emigration from a soon-to-be uninhabitable Earth, but are thrown off course by a saboteur and must try to find their way home.
Several of the actors from the original TV series had cameos in the film.
In the year 2058, Earth will soon be uninhabitable due to irreversible effects of pollution. The United Global Space Force prepares the first launch for the colonization of a distant planet much like our own. Meanwhile, a terrorist group, the Global Sedition, wants to interrupt the colonization to be able to take over the same planet themselves. Professor John Robinson, lead scientist of the Jupiter Mission, prepares to take his wife Maureen, daughters Judy and Penny and son Will on a 10-year mission in suspended animation to the nearby planet Alpha Prime, where they will build a companion "hypergate" to the one orbiting Earth. The project is accelerated after Global Sedition terrorists attack Earth's hypergate, but are stopped by fighter pilots, one of whom is Major Don West. When the pilot for the Jupiter Mission is murdered, West is assigned as his replacement.
OuterSpace is an underground hip hop duo from North Philadelphia. Originally a trio consisting of three Puerto Rican friends that then took the artist names Planetary, Jedeye and Crypt the Warchild. The founding member Mario Collazo (Planetary) was then attending 10th grade, while the other two, Richard Cruz (Jedeye) and Marcus Albaladejo (Crypt the Warchild), were in 8th grade.
Today the group consists only of two members, now known as Planetary and Crypt The Warchild, who are also part of the hip hop collective Army of the Pharaohs.
The group originally started with three high school friends; Marcus Albaladejo, Mario Collazo and Richard Cruz. The trio later went on to from the group OuterSpace. The group originally started to form in the early 90's and eventually led to an alliance with fellow Philladelphians Jedi Mind Tricks and their label Superegular Recordings. In 1998, Superegular released their debut single "We Lyve". OuterSpace appeareded on several Jedi Mind Trick tracks and in 1999 the Illegaliens EP was released in on the Wordsound label. Soon thereafter, OuterSpace hooked up with DJ SAT ONE and began recording with Jazzy Jeff's production company A Touch of Jazz. This collaboration proved useful with the release of the SAT ONE produced Danger Zone 12" on Soulspazm Records.
Alaska! is an indie rock trio from the United States. The band was formed in San Francisco by Russell Pollard (formerly of Sebadoh and later of the Folk Implosion), Imaad Wasif (also later of Folk Implosion), with Lesley Ishino (formerly of the Red Aunts) later joining as drummer.
The band released their debut album, Emotions, in 2003, and a second, Rescue Through Tomahawk in 2005.
Alaska is a 1944 American crime adventure film directed by George Archainbaud. It stars Kent Taylor, Margaret Lindsay, and John Carradine.
Gary Corbett kills a pair of claim jumpers who did likewise to his father. He is charged with murder, but cannot be taken to Juneau to stand trial until the weather permits. Marshal John Masters keeps him in town until the prisoner can be moved.
Roxie Reagan, who sings at Tom LaRue's saloon, falls in love with Corbett, but she is trapped in a loveless marriage to John Reagan, an alcoholic has-been actor. LaRue also is in love with Roxie, and he and a local judge are suspected by Corbett of being in cahoots with the claim jumpers.
LaRue tries to frame Corbett for another murder, then sets the jail on fire. John Reagan courageously comes to Corbett's rescue, losing his own life in the process. The marshal deals with LaRue, but suddenly reveals that he is the one who has been backing the murderous claim jumpers all along. Corbett manages to get the better of Masters, then sets sail for San Francisco with his bride-to-be, Roxie.
Alaska is a periodical devoted to news and discussion of issues and features of and from Alaska. Most of its readership consists of persons outside of Alaska who are interested in the Alaskan way of life.
Alaska magazine was founded in 1935 in Ketchikan, Alaska, by Emery Fridolf Tobin (1895-1977) and J. Ray Roady (1907-1997). Tobin established himself as an opponent of Alaska statehood, although this may have been contradictory, given his ties to the Democratic party and the fact that he and Roady served as State Representatives in 1959.
Alaska magazine was originally titled the Alaska Sportsman Magazine, a name it retained until 1969. It operated much then as it does today, being sold through newsstand sales and subscriptions. The major difference in its early days was the fact that paper stock to print the magazine arrived via steamship, posing the threat of delays, and it operated out of a small basement. Another major difference is that the editorial and sales offices have moved to Alaska's economic center, the city of Anchorage.
Release: Alaska - Lost In Alaska Label: Fnac Music Dance Division Released: 1993 Genre: Electronic Style: Trance, Techno, Ambient, Chill Out
classic trance 1993
hugging trees
chill-trance 1992
My instrumental cover of Avantasia's "Lost in Space". Still not final. Need to rearrange some parts and to optimize some sound settings. Still not happy with the guitar sound... just doesn't fit to the rest. Hope you still enjoy it as a small preview. Visit me @ http://obli.net
https://itunes.apple.com/no/album/lost-at-sea/1304557542?i=1304557556&l=nb Connect with 7 Days In Alaska: Visit: www.7daysinalaska.com Facebook: http://bit.ly/7DIAfacebook Twitter: http://bit.ly/7DIAtwitter Instagram: http://bit.ly/7DIAinstagram Follow 7 Days In Alaska on Spotify: http://bit.ly/7DIAspotify ▶from: 7 Days In Alaska - Lost at Sea (Single) (2017) ▶genre: Alt. Rock ▶Join Spaceuntravel on Facebook : https://www.facebook.com/Spaceuntravel?ref=hl
Mystery Creatures of the Alaskan Wilderness : Documentary on Unexplained Creatures in Alaska. 2014 Education is a fundamental and importan part of today's society and is becoming increasingly more accessible and convenient online. The availability of information which is also entertaining helps us grow as people both individually and as a whole. Documentaries are the resource of choice of the new generation of students around the world. The documentary here along with the other documentaries on this channel relate to important times and people in history, his...
DIGITAL: http://smarturl.it/oaahikari MERCHNOW (US): http://smarturl.it/hikarius FIREBRAND (EU): http://smarturl.it/hikarieu Taken from Oceans Ate Alaska's album 'Hikari'. Stay connected: http://oceansatealaska.co.uk http://facebook.com/oceansatealaska http://twitter.com/oceansatealaska http://instagram.com/oceansatealaska Produced, engineered, mixed, and mastered by Nick Sampson and Chris Turner Video by: Jeb Hardwick http://www.jebhardwick.com/ LYRICS: Incarcerated between these worlds Reality seems to loose its hold We hide away and try to fill the space between these thoughts Detached from everything that lives and breathes Emotions just words on a screen So fabricated is the life we lead So fabricated is the life we lead Side by side You’ll watch the whole world pass you by ...
Lost in Space is an American science fiction television series, following the adventures of a family of pioneering space colonists whose ship goes off course. It was created and produced by Irwin Allen, filmed by 20th Century Fox Television, and broadcast on CBS. The show ran for three seasons, with 83 episodes airing between 1965 to 1968 The first television season was filmed in black and white, with the second and third seasons filmed in color.
Though the original television series concept centered on the Robinson family, many later story lines focused primarily on Dr. Zachary Smith, played by Jonathan Harris. Smith, along with the Robot, was absent from the pilot as the addition of their characters was decided once the series had been commissioned for production. Originally written as an utterly evil but careless saboteur, Smith gradually becomes the troublesome, self-centered, incompetent foil who provides the comic relief for the show and causes most of the episodic conflict and misadventures. In the unaired pilot, what causes the group to become lost in space is a chance encounter with a meteor storm, but in the first aired episode, it is Smith's sabotage and unplanned presence on the ship that sets the ship off course into the meteor field. Smith is thus the key to the story.
I knew right away that you were out of the world
When I first saw your face
My head spun like a tilt a whirl
As I tired not to puke all over the place
You seem so down to earth
But things aren't what they seem
But now it's too late
You've got my heart in your tractor beam
I can tell by the blank expression on your face
You're fucking lost in space
Your mind just up and left without a trace
You're fucking lost in space
Don't wanna thing about it too much baby
Cause if I do
I might get lost in space with you
I try to make contact but it seems
That my transmissions aren't getting through
And that's when I finally realized
There might be no hope in saving you
Our attempts are futile baby
Seems our cause is lost
This search is going nowhere
But I just can't seem to call it off
I can tell by the blank expression on your face
You're fucking lost in space
Your mind just up and left without a trace
You're fucking lost in space
Don't wanna thing about it too much baby
Cause if I do
I might get lost in space with you [x3]