- published: 22 Sep 2021
- views: 3315093
'+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; })); }); -->
Joseph Hill "Joss" Whedon (born June 23, 1964) is an American screenwriter, film and television director, film and television producer, comic book author, and composer. He is the founder of Mutant Enemy Productions and co-founder of Bellwether Pictures, and is best known as the creator of the television series Buffy the Vampire Slayer (1997–2003), Angel (1999–2004), Firefly (2002), Dollhouse (2009–10) and Agents of S.H.I.E.L.D. (2013–present).
Whedon co-wrote the Pixar film Toy Story (1995), wrote and directed the Firefly film continuation Serenity (2005), co-wrote and directed the Internet mini-series Dr. Horrible's Sing-Along Blog (2008), co-wrote and produced the horror comedy The Cabin in the Woods (2012), and wrote and directed the Marvel Cinematic Universe superhero films The Avengers (2012) and its sequel Avengers: Age of Ultron (2015).
Born in New York City on June 23, 1964 as Joseph Hill Whedon, and being a third-generation TV writer, he is the son of Tom Whedon, a screenwriter for Alice in the 1970s and The Golden Girls in the 1980s, and the grandson of John Whedon, who worked on The Donna Reed Show in the 1950s and The Dick Van Dyke Show in the 1960s. His mother, Ann Lee (née Jeffries) Stearns, originally from Kentucky, was a teacher at Riverdale Country School as Lee Whedon, and an aspiring novelist. His parents had both acted, and appeared in a play together at the Harvard Radcliffe Dramatic Club. Whedon is the younger sibling of Samuel and Matthew Whedon and older sibling of writers Jed and Zack Whedon. At a young age, he showed great interest in British television with shows like Masterpiece and Monty Python.
"Where Do We Go" is a song by British recording artist, Jay Sean, taken from his mixtape album,The Mistress and is the mixtape's lead single. The song was produced by OFM production team J-Remy and Bobby Bass.
Jay Sean asks "Where Do We Go" on the first release from his mixtape The Mistress featuring acoustic renditions of original songs and his spin on some beloved classics. The Cash Money crooner tries to put back the pieces of a broken relationship on the stripped-down ballad, which is also accompanied by a video of him in the studio, cruising in his Bentley, and walking on the Miami streets. His 4th studio album, Neon (originally titled as Freeze Time) is due later this year in 2012.
Jason Newman of the MTV Buzzworthy, said: "Where Do We Go," the singer's latest single, we get to hear Jay Sean's smoothed-out, soulful side. Anchored by finger snaps and an acoustic guitar, "Where Do We Go" finds the protagonist at a crossroads in his relationship. "Love is not a fairy tale," Jay Sean sings. "But it ain't supposed to be this hard. And now the visions of our love fade away." Bummer, man. If "Down" saw the singer telling his girl to "lose control" and just "let it go," "Where Do We Go" is the postscript—the time when the clubbing ends and threats of changing locks and packed suitcases are exchanged. The track's tone—poignant with shades of optimism—recalls classic Michael Jackson ballads like "Ben" and "I'll Be There," and showcases Jay Sean's more mature side.
HIDDEN ERROR: Usage of "spouse" is not recognizedHIDDEN ERROR: Usage of "religion" is not recognized
Jay Sean (born Kamaljit Singh Jhooti; 26 March 1979) is a British singer and songwriter. He debuted in the UK's Asian Underground scene as a member of the Rishi Rich Project with "Dance with You", which reached No. 12 on the UK Singles Chart in 2003. This led to him being signed to Virgin Records and having two UK top 10 hits as a solo artist in 2004: "Eyes On You" at No. 6 and "Stolen" at #4. They were included in his critically acclaimed debut album Me Against Myself which, though only moderately successful in the UK, sold more than two million copies across Asia and remains his most successful album to date. Alongside the Rishi Rich Project, Sean was a pioneer of Bhangra-R&B fusion, which his debut album helped popularize among the worldwide South Asian diaspora.
He eventually left Virgin in 2006 and founded his own independent label, Jayded Records. After a gap of nearly four years, he returned in 2008 with "Ride It", which reached No. 11 in the UK and topped the charts in several Eastern European countries, including Romania where it was one of the best-selling singles of the year. It was followed by hits such as "Maybe", which reached No. 7 on the Japan Hot 100, and "Tonight". They were included in his second album, My Own Way, which became his most successful album on the UK Albums Chart, reaching No. 6, and topped the UK R&B Chart. At around this time, he began increasingly incorporating electropop sounds into his R&B music.
James Marsters gives his first-hand account of what it was like working with the controversial director Joss Whedon on the set of Buffy the Vampire Slayer and Angel. - - - - - - - - - - - - - - - - - - Making a return this week, James Marsters (Buffy, Angel) joins us for a discussion on the darker side of his method acting of the fan beloved character Spike, and exactly how it affected his relationships with others on set. James opens up more this time on the hostile working conditions on the set of Buffy the Vampire Slayer and what it was like to work with creator Joss Whedon. We talk about secret crushes on set, playing dark characters, and the possibility of a Buffy reunion. - - - - - - - - - - - - - - - - - - Was JAMES MARSTERS Aware of the JOSS WHEDON Toxic Workplace on BUFFY?!...
Once upon a time being a nerd was looked at as a negative, with depictions of them being scrawny losers with glasses and high pitched voices who loved comic books and wouldn’t know how to throw a baseball unless Captain America taught them how. But something happened, geek culture became mainstream culture and the people who brought it to us were the ones who once felt so alienated by their seemingly uncool passions. Enter Joss Whedon who used his childhood isolations to craft some of the biggest cult hit TV shows (including Buffy The Vampire Slayer, Angel and Firefly) and penned many groundbreaking screenplays - everything from sci-fi to horror to action adventure to animation to Shakespeare and some of the biggest superhero flicks ever. But behind closed doors there seemed to be a differ...
🎉 Subscribe to the new Smallville Rewatch Podcast 👉 https://bit.ly/talkville - - - - - - - - - - - - - - - - - - Nathan Fillion talks about the likelihood of a Firefly reboot and the controversies of different characters being involved in it coming back... - - - - - - - - - - - - - - - - - - Nathan Fillion (Castle, The Rookie) returns to the show this week to reflect back on tenured success across multiple serieses like Castle and The Rookie, along with cult adoration in Firefly and Serenity, leading us to discuss what’s next and what the escape plan is once his run in Hollywood is done. Nathan shares his secret for positivity in life and his freedom of being in a position to say no rather than taking roles out of need. We also talk about how adversity brings out one’s true colors, r...
😄 Patreon: https://www.patreon.com/insideofyou 📺 Full Episodes: https://www.youtube.com/c/InsideofYouwithMichaelRosenbaum 🍎 Listen on Apple: https://apple.co/insideofyou 🔊 Listen on Spotify: https://open.spotify.com/show/6Q5Cn2tO2yeCdJt4Bq88zS 📸 Inside Of You Instagram: https://instagram.com/insideofyoupodcast/ 🐦 Inside Of You Twitter: https://twitter.com/insideofyoupod 👕 Inside Of You Merch: https://store.insideofyoupodcast.com/ Dermot Mulroney (My Best Friend's Wedding, The Wedding Date) joins us this week to share remarkable stories (on and off set) throughout his career and how he uses them as mental health check ins for gratitude in everything he’s been able to accomplis. Dermot also talks about his experience as a cellist, being able to work scores in both the Star Trek and Star Wa...
Batman Recruits Flash Comparison Zack Synder vs Joss Whedon Cut Justice League 2021 vs 2017 #ZackSynderJusticeLeague #ZackSynder #BatmanRecuitsFlash
The world's biggest celebrities explain why it's Important that you vote in November. Register and find your polling place at Save The Day: http://www.savetheday.vote Starring Robert Downey Jr., Scarlett Johansson, Keegan-Michael Key, Matt McGorry, Mark Ruffalo, James Franco, Cobie Smulders, Julianne Moore, Yvette Nicole Brown, David Harbour, Veronica Osorio, Clea Duvall, Bradley Whitford, Tavi Gevinson, Ashley Johnson, Stanley Tucci, Leslie Odom Jr., Nathan Fillion, Rosie Perez, Tom Lenk, Taran Killam, Cathy Porras, Joel Landson, Randall Park, Clark Gregg, Don Cheadle, Neil Patrick Harris, Jesse Williams, and Martin Sheen Written and Directed by Joss Whedon
#josswhedon #jossticeleague #batmanvsuperman
🚀 Fandom Focus: The Rise and Fall of Joss Whedon and His Fanbase 🚀 Welcome to Fandom Focus, where we delve into the passionate communities surrounding your favorite shows and movies. In this episode, we take an in-depth look at the journey of Joss Whedon's fandom—from its meteoric rise to its controversial fall. 📺 What You'll Learn in This Episode: Early Fandom Origins: Discover how Buffy the Vampire Slayer, Angel, and Firefly sparked the initial fanbase. Mainstream Success: Learn how Marvel projects like The Avengers and Agents of S.H.I.E.L.D. expanded Whedon's influence. Controversies and Decline: Explore the allegations against Whedon, from his ex-wife's revelations to accusations by actors like Ray Fisher and Charisma Carpenter. Current State of the Fandom: Understand how f...
A side-by-side comparison of the Justice League's Metropolis fight against Superman in Justice League (2017) and Zack Snyder’s Justice League (2021).
REMASTERED IN HD! Official Music Video for Down performed by Jay Sean. Watch more remastered videos! https://www.youtube.com/watch?v=hTWKbfoikeg&list=PLDNtAuXIhbEPLcw6HLBLkVJl_MUd0DFW2&index=2 Follow Jay Sean: Instagram: https://www.instagram.com/jaysean Facebook: https://www.facebook.com/jaysean Tik Tok: https://www.tiktok.com/@jaysean Twitter: https://twitter.com/jaysean (C) 2009 Cash Money Records Inc. #JaySean #LilWayne #Remastered
Best of JaySean: https://goo.gl/N8gtzk Subscribe here: https://goo.gl/ekdDa9 Music video by Jay Sean performing Do You Remember. (C) 2009 Cash Money Records Inc.
Taken from the Jay Sean album 'My Own Way' available on all streaming platforms including iTunes: https://itunes.apple.com/gb/album/ride-it/581504256?i=581504260
Official music video by Jay Sean ft. Gucci Mane, Asian Doll performing “With You” ►Listen to ‘With You” here: https://JaySean.lnk.to/WithYouYD ►Follow Jay Sean Online Instagram: https://www.instagram.com/jaysean Facebook: https://www.facebook.com/jaysean Twitter: https://twitter.com/jaysean Shazam: https://www.shazam.com/artist/20153154/jay-sean Subscribe to YouTube Music: https://JaySean.lnk.to/WithYouYD/youtubemusic “With You” Lyrics: [Intro: Gucci Mane] Jay Sean, yeah Gucci [Chorus: Jay Sean] Even though you know I like it, you ain't nothin' new Even though you know I love it, I'm in love with you I ain't tryna say I like it, girl, you know the truth You know that I fuckin' love it, fucking 'round with you [Verse 1: Gucci Mane] That's my ride or die, I can't even lie Shawty ...
Jay Sean - Stay
Best of JaySean: https://goo.gl/N8gtzk Subscribe here: https://goo.gl/ekdDa9 Music video by Jay Sean performing 2012 (It Ain't The End). (C) 2010 Cash Money Records Inc. #JaySean #2012 #Vevo
Buy Now! iTunes: http://smarturl.it/imallyours Music video by Jay Sean performing I'm All Yours. (C) 2012 Cash Money Records Inc.
Best of JaySean: https://goo.gl/N8gtzk Subscribe here: https://goo.gl/ekdDa9 Music video by Jay Sean performing Eyes On You.
If you like my content then hit the subscribe button ♡︎✿︎
🎧 Do You Remember - Jay Sean ft. Sean Paul, Lil Jon ❤️ Every like and subscribes is appreciated with love! 🔔 Turn on notifications to stay updated with new music videos! 🎤 Do You Remember Lyrics: Hey! Jay Sean Sean Paul, yeah! Lil' Jon This one right here is for all the ladies Ladies who want to take it back Holler at them Jay I've been thinking about you And how we used to be then Back when it didn't have to live we could start again There's nothing left to say Don't waste another day Just you and me tonight Everything will be okay If it's alright with you, then it's alright with me Baby let's take this time let's make new memories Do you remember, do you remember, do you remember All of the times we had Do you remember, do you remember, do you remember All of the times we had Let's ...
Joseph Hill "Joss" Whedon (born June 23, 1964) is an American screenwriter, film and television director, film and television producer, comic book author, and composer. He is the founder of Mutant Enemy Productions and co-founder of Bellwether Pictures, and is best known as the creator of the television series Buffy the Vampire Slayer (1997–2003), Angel (1999–2004), Firefly (2002), Dollhouse (2009–10) and Agents of S.H.I.E.L.D. (2013–present).
Whedon co-wrote the Pixar film Toy Story (1995), wrote and directed the Firefly film continuation Serenity (2005), co-wrote and directed the Internet mini-series Dr. Horrible's Sing-Along Blog (2008), co-wrote and produced the horror comedy The Cabin in the Woods (2012), and wrote and directed the Marvel Cinematic Universe superhero films The Avengers (2012) and its sequel Avengers: Age of Ultron (2015).
Born in New York City on June 23, 1964 as Joseph Hill Whedon, and being a third-generation TV writer, he is the son of Tom Whedon, a screenwriter for Alice in the 1970s and The Golden Girls in the 1980s, and the grandson of John Whedon, who worked on The Donna Reed Show in the 1950s and The Dick Van Dyke Show in the 1960s. His mother, Ann Lee (née Jeffries) Stearns, originally from Kentucky, was a teacher at Riverdale Country School as Lee Whedon, and an aspiring novelist. His parents had both acted, and appeared in a play together at the Harvard Radcliffe Dramatic Club. Whedon is the younger sibling of Samuel and Matthew Whedon and older sibling of writers Jed and Zack Whedon. At a young age, he showed great interest in British television with shows like Masterpiece and Monty Python.
Life can be strange
Some things we forget or
Rearrange in time
Lose the past
Tell me the truth
Tell me how can I know
That this new love of ours
That it's gonna last
I need your strength
And I feel your warmth
With you I fell protected from all harm
Chorus:
Where do we go from here it's clear
You erase the fear in me that keeps me alone
Where do we go from here I know
No matter what the road
Your love will lead me home
What's in a name
Is life just a game we color
Then erase when we lose faith
How many lives
Tell me how many tries
Before we get it right
The truth is in sight
I need your strength
And I feel your warmth
With you I fell protected from all harm
Chorus
When I felt weak, so weak
Too scared to speak
When I felt alone, so lone
You took care of me
You were there for me