- published: 19 Oct 2008
- views: 4463890
'+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; })); }); -->
William Martin "Billy" Joel (born May 9, 1949) is an American pianist, singer-songwriter, and composer. Since releasing his first hit song, "Piano Man", in 1973, Joel has become the sixth-best-selling recording artist and the third-best-selling solo artist in the United States. His compilation album Greatest Hits Vol. 1 & 2 is one of the best-selling albums in the US.
Joel had Top 40 hits in the 1970s, 1980s, and 1990s, achieving 33 Top 40 hits in the US, all of which he wrote himself. He is also a six-time Grammy Award winner who has been nominated for 23 Grammy Awards. He has sold more than 150 million records worldwide, making him one of the best-selling artists of all time.
Joel was inducted into the Songwriters Hall of Fame (1992), the Rock and Roll Hall of Fame (1999), and the Long Island Music Hall of Fame (2006). In 2001, Joel received the Johnny Mercer Award from the Songwriters Hall of Fame. In 2013, Joel received the Kennedy Center Honors, the nation's highest honor for influencing American culture through the arts. With the exception of the 2007 songs "All My Life" and "Christmas in Fallujah", Joel stopped writing and releasing pop/rock material after 1993's River of Dreams. However, he continues to tour, and he plays songs from all eras of his solo career in his concerts.
The Outsider or The Stranger (French: L’Étranger) is a novel by Albert Camus published in 1942. Its theme and outlook are often cited as exemplars of Camus's philosophy of the absurd and existentialism, though Camus personally rejected the latter label.
The title character is Meursault, an indifferent French Algerian ("a citizen of France domiciled in North Africa, a man of the Mediterranean, an homme du midi yet one who hardly partakes of the traditional Mediterranean culture"), who, after attending his mother's funeral, apathetically kills an Arab man whom he recognises in French Algiers. The story is divided into two parts, presenting Meursault's first-person narrative view before and after the murder, respectively.
In January 1955, Camus wrote: "I summarized The Stranger a long time ago, with a remark I admit was highly paradoxical: 'In our society any man who does not weep at his mother's funeral runs the risk of being sentenced to death.' I only meant that the hero of my book is condemned because he does not play the game."
The Stranger is a collection of science fiction stories by Gordon R. Dickson. It was first published by Tor Books in 1987. Most of the stories originally appeared in the magazines Fantasy and Science Fiction, Satellite, Imagination, Astounding, Saturn, Analog Science Fiction and Fact, Fantastic, Science Fiction Stories, Future and If.
The Stranger is a 1918 American silent comedy film featuring Oliver Hardy. Prints of this film survive in private collections and it has been released on dvd.
Like many American films of the time, The Stranger was subject to cuts by city and state film censorship boards. For example, the Chicago Board of Censors cut, in Reel 2, the intertitle "The Hall of Joy where wine, women and song hold forth temptations to strangers".
Billy Joel the Stranger Billy Joel Greatest Hits I and II
In 1977, Billy Joel released his album titled The Stranger. Listen to Billy Joel perform the title track off the album, 'The Stranger'. http://smarturl.it/BJ_MOTS_YT?IQid=ytd.bj.stanga Listen to music from The Stranger iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.stanga Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.stanga Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.stanga Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.stanga Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.stanga Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.stanga Subscribe: http://smarturl.it/BJ_YD_YT?IQid=ytd.bj.stanga Lyrics: Well we all have a face That we hide away forever And we take them out and show ourselves When everyone has gone Some are satin some are steel Some are s...
from Billy Joel "In Concert" Tokyo Dome, Japan in Nov-30-06. 2006年11月30日ビリー・ジョエルの「イン・コンサート2006」東京ドーム・ライブより(lyrics和訳歌詞付き)
Billy Joel “The Stranger" Live from Long Island Listen to Billy Joel: https://billyjoel.lnk.to/playlist!strngr Follow Billy Joel: Facebook: https://billyjoel.lnk.to/playlistFI!strngr Instagram: https://billyjoel.lnk.to/playlistII!strngr Twitter: https://billyjoel.lnk.to/playlistTI!strngr Website: https://billyjoel.lnk.to/playlistWI!strngr Subscribe to Billy Joel: https://bit.ly/2E5stAm #BillyJoel #PianoMan #Vienna Lyrics: Well, we all have a face That we hide away forever And we take them out And show ourselves when everyone has gone Some are satin, some are steel Some are silk and some are leather They're the faces of a stranger But we'd love to try them on Well, we all fall in love But we disregard the danger Though we share so many secrets There are some we never tell Why were you s...
Lyrics: Well we all have a face That we hide away forever And we take them out and Show ourselves When everyone has gone Some are satin some are steel Some are silk and some are leather They're the faces of the stranger But we love to try them on Well we all fall in love But we disregard the danger Though we share so many secrets There are some we never tell Why were you so surprised That you never saw the stranger Did you ever let your lover see The stranger in yourself? Don't be afraid to try again Everyone goes south Every now and then You've done it, why can't Someone else? You should know by now You've been there yourself Once I used to believe I was such a great romancer Then I came home to a woman That I could not recognize When I pressed her for a ...
Billy Joel - The Stranger (Uncut Gems Trailer Song) Listen To "The Stranger" by Billy Joel as featured in the Official Trailer for Uncut Gems: Trailer 2 To watch the trailer for Uncut Gems: Trailer 2 follow this link https://youtu.be/OkB1VchIlGY 🎼 The Stranger, by Billy Joel 📺 TRAILER: https://youtu.be/OkB1VchIlGY 🔥 LOVE Music? Make sure you're listening on the BEST Ear/Headphones out now! 👉Apple AirPods Pro: https://geni.us/I5Zjvmm 👉Powerbeats Pro Total Wireless Earphones: https://geni.us/zPJtq8U 👉Jabra Elite 75t Earbuds: https://geni.us/fPZzOxW 👉Sennheiser Momentum True Wireless Bluetooth In-Ear Headphones: https://geni.us/QXhdB 🔴 Help this channel out by SUBSCRIBING 😁 https://www.youtube.com/c/TrailerVault?sub_confirmation=1 🔵 If you enjoy the content don't forget to LIKE and SHAR...
The two instrumental pieces from The Stranger, together at last.
In 1977, Billy Joel released his legendary album titled The Stranger. Listen to Billy Joel perform 'Vienna'. Listen to Billy Joel: https://billyjoel.lnk.to/listenYD Subscribe to the Billy Joel YouTube Channel: https://billyjoel.lnk.to/subscribe Follow Billy Joel: Facebook: https://billyjoel.lnk.to/followFI Instagram: https://billyjoel.lnk.to/followII Twitter: https://billyjoel.lnk.to/followTI Website: https://billyjoel.lnk.to/followWI Spotify: https://billyjoel.lnk.to/followSI YouTube: https://billyjoel.lnk.to/subscribe Lyrics: Where's the fire, what's the hurry about? You better cool it off before you burn it out You got so much to do and only So many hours in a day (Ay) But you know that when the truth is told That you can get what you want Or you can just get old You're gonna kick o...
Coincidentally, the same week that the title track of one of the year's biggest sellers and most acclaimed albums - 'Bat Out of Hell', was released as a single, so too Billy Joel's title track to his turning point LP 'The Stranger' was also released in Australia. The former managed to get to #26, while the latter only managed #59. 'The Stranger' album was a work of art from start to finish. The hit single 'Just the way you are' is a classic, whilst tracks such as 'Only the good die young'. 'Moving Out' 'She's always a woman' and 'Scenes from an Italian Restaurant' helped make this album one of the best selling of the year, and indeed one of the best loved of the decade. I especially admire the Phil Ramone production on the album and this track, is filled with quintessential Billy Joel e...
夕暮れは時は、すっかり秋風・・・・少しセンチメンタルに仕上げました。^^
Ranked by Rolling Stone at number 70 on the list of the 500 Greatest Albums of All Time, Billy Joel's 1977 'The Stranger' has acheived legendary status as one of the most influential albums of all time. Listen to Billy Joel perform his hit song 'Movin' Out (Anthony's Song).' http://smarturl.it/BJ_MOTS_YT?IQid=ytd.bj.moasa Listen to more tracks from The Stranger http://smarturl.it/BJ_DSTFMR_YT?IQid=ytd.bj.moasa Listen to more of Billy Joel's top tracks. Music video by Billy Joel performing Stiletto. (C) 2011 Sony Music Entertainment iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.moasa Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.moasa Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.moasa Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.moasa Facebook: http:...
William Martin "Billy" Joel (born May 9, 1949) is an American pianist, singer-songwriter, and composer. Since releasing his first hit song, "Piano Man", in 1973, Joel has become the sixth-best-selling recording artist and the third-best-selling solo artist in the United States. His compilation album Greatest Hits Vol. 1 & 2 is one of the best-selling albums in the US.
Joel had Top 40 hits in the 1970s, 1980s, and 1990s, achieving 33 Top 40 hits in the US, all of which he wrote himself. He is also a six-time Grammy Award winner who has been nominated for 23 Grammy Awards. He has sold more than 150 million records worldwide, making him one of the best-selling artists of all time.
Joel was inducted into the Songwriters Hall of Fame (1992), the Rock and Roll Hall of Fame (1999), and the Long Island Music Hall of Fame (2006). In 2001, Joel received the Johnny Mercer Award from the Songwriters Hall of Fame. In 2013, Joel received the Kennedy Center Honors, the nation's highest honor for influencing American culture through the arts. With the exception of the 2007 songs "All My Life" and "Christmas in Fallujah", Joel stopped writing and releasing pop/rock material after 1993's River of Dreams. However, he continues to tour, and he plays songs from all eras of his solo career in his concerts.
Well, we all have a face that we hide away forever
And we take them out and show ourselves when everyone has gone.
Some are satin, some are steel,
Some are silk and some are leather.
They're the faces of a stranger,
But we'd love to try them on.
Well, we all fall in love,
But we disregard the danger,
Though we share so many secrets,
There are some we never tell.
Why were you so surprised that you never saw the stranger?
Did you ever let your lover see the stranger in yourself?
Don't be afraid to try again.
Everyone goes south every now and then.
You've done it.
Why can't someone else?
You should know by now.
You've been there yourself.
Once I used to believe I was such a great romancer.
Then I came home to a woman that I could not recognize.
When I pressed her for a reason,
She refused to even answer.
It was then I felt the stranger kick me right between the eyes.
Well, we all fall in love
But we disregard the danger
Though we share so many secrets
There are some we never tell
Why were you so surprised that you never saw the stranger
Did you ever let your lover see the stranger in yourself.
Don't be afraid to try again.
Everyone goes south every now and then.
You've done it.
Why can't someone else?
You should know by now.
You've been there yourself.
You may never understand how the stranger is inspired.
But he isn't always evil and he is not always wrong.
Though you drown in good intentions,
You will never quench the fire.