- published: 17 Mar 2024
- views: 6895
'+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; })); }); -->
Karen Blanche Black (née Ziegler; July 1, 1939 – August 8, 2013) was an American actress, screenwriter, singer and songwriter. A native of Illinois, Black studied acting in New York City and performed on Broadway before making her major film debut in Francis Ford Coppola's You're a Big Boy Now (1966).
She followed this with roles in Easy Rider (1969), Five Easy Pieces (1970), and The Great Gatsby (1974), the latter two of which she won Golden Globe awards for Best Supporting Actress; her performance in Five Easy Pieces also garnered her an Academy Award nomination for Best Supporting Actress. In 1975, she appeared in Dan Curtis's cult horror films Trilogy of Terror and Burnt Offerings; Robert Altman's Nashville, and The Day of the Locust, which earned her a third Golden Globe nomination. Other roles include Airport 1975 (1974), Alfred Hitchcock's Family Plot (1976), Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982), and Tobe Hooper's Invaders from Mars (1986).
In the 1990s, Black starred in a variety of arthouse and horror films, as well as writing her own screenplays before appearing in Rob Zombie's House of 1000 Corpses (2003), which cemented her status as a cult horror icon. Black continued to star in low-profile films throughout the early 2000s, as well as working as a playwright before being diagnosed with ampullary cancer in 2010. She died of the disease in Los Angeles, California, in August 2013. Black's career spanned over fifty years, and includes nearly two hundred film credits.
"My Sister" is a song written by Amy Dalley, Bonnie Baker and Roxie Dean, and recorded by American country music artist Reba McEntire. It was released in March 2005 as the fourth single from the album Room to Breathe. The song reached #16 on the Billboard Hot Country Singles & Tracks chart.
Become What You Are is the debut album by The Juliana Hatfield Three, released in 1993.
All songs by Juliana Hatfield unless otherwise stated.
The Juliana Hatfield Three
Additional personnel
Karen Black: an icon wrapped in mystery, revered and yet, not fully known. Behind the camera's adoring gaze and beneath the layers of acclaimed performances, lay secrets untold and facets unseen. Black's journey through Hollywood was far from ordinary—marked by dizzying heights and shadowed corners most fans never glimpsed. But what if the stories you've heard only skim the surface? What if her life was a complex puzzle, each piece a tale of triumph, struggle, and the relentless quest for artistic authenticity? Join our channel: https://www.youtube.com/channel/UCtbjP9FtA6pg-MdsiGyqk5A/join Hope you enjoy this video, and help us by subscribing to our channel: ➡️ https://bit.ly/VintageArchives 🎞 See our other videos here: https://www.youtube.com/playlist?list=PLbgaI8lQ30v6MCX_nS2q-sQfoCI...
When Karen Black is on screen, it's impossible to look away. Regardless of whether you know her from her Oscar-nominated performance in Five Easy Pieces or her Chainsaw Award-winning role in House of 1000 Corpses (or any of her nearly 200 other films), you can tell that she is a force to be reckoned with. So we were excited when Karen invited us to her home in LA for tea and a nice long chat about the art of acting, why she regrets starring in horror films, and her recent musical collaborations with Cass McCombs. Plus, she does a great Raymond Pettibon impression. Check out more VICE interviews here: http://bit.ly/VICE-Interviews Subscribe to VICE here! http://bit.ly/Subscribe-to-VICE Check out our full video catalog: http://bit.ly/VICE-Videos Videos, daily editorial and more: http://vic...
Subscribe to SaturdayNightLive: http://j.mp/1bjU39d Monologues: http://j.mp/16NdBBC SEASON 6: http://j.mp/1dVARMV Karen Black loves applause and will do anything to get it. Aired 01/17/81 Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
Now Playing. Many moviegoers got their first striking glimpse of Karen Black in Dennis Hopper’s 1969 Easy Rider, playing an employee of a New Orleans brothel who goes on a wild LSD trip with “Captain America” and Billy. This breakout role would mark the beginning of an extraordinary run of collaborations with the most innovative directors of so-called New Hollywood, including Robert Altman, Bob Rafelson, and Ivan Passer. Whether playing a Bakersfield hash-slinger, a glamorous Nashville diva, or a transwoman returning to her Texas hometown, Black was a potent, piquant, and unforgettable presence in most every film she appeared in, earning her an ardent cult following who will have reason to rejoice with our selection of some of Black’s finest roles. https://metrograph.com/category/karenbl...
Sharing with you all another favorite song of mine called Law Yar Ta Gay by Saw Black hope you all like it This are are other song lyrics I created: Shee Sho Tar Eh by Shane https://www.youtube.com/watch?v=tPEeH... Combe back by saw Black https://www.youtube.com/watch?v=k_b3Y... Ya Mae Pe Hu by David Htoo https://www.youtube.com/watch?v=Kv1X-... Thay Not kay ner tar er law by Mee Mee Khel https://www.youtube.com/watch?v=8WB_Z... Kaung Kaung (Ya Eh Bah Nar) https://www.youtube.com/watch?v=hjM91PTgcxE If you like, please like, comment, and subscribe for more song
This video details the death of actress Karen Black!
Elliot Mintz interviews famed actress and friend Karen Black. This would be her final interview, recorded 3 weeks prior to her passing.
"Martyr's first love" Karen country song with lyrics by. Saw Black
It all comes together in the bunker where they’re protecting Robert Singer after Victoria is outed as a Supe. MM (Laz Alonso), Hughie, Shifter Annie, and Kimiko (Karen Fukuhara) are called to the bunker to try to protect Robert Singer. Frenchie (Tomer Capone) stays behind to make the virus viable to take out Victoria. In the bunker, Hughie realizes that Shifter Annie is the assassin after it slips up, but it’s nearly too late. The funniest part of the episode, clearly, is Hughie and MM trying to keep a straight face when they know Annie is not Annie. It’s not long, but it’s wonderful before all hell breaks loose, which keeps happening in this show. Shifter Annie makes quick work of the secret service agents and military personnel. The only one who slows it down is Kimiko, who is “killed” w...
Read Ken Anderson's review of the screen adaptation of Philip Roth's "Portnoy's Complaint" here: https://lecinemadreams.blogspot.com/2018/08/portnoys-complaint-1972.html There's never been, and never will be, another actor like Karen Black. She's the best. Richard Benjamin & Karen Black star in the film version of Philip Roth's controversial comic bestseller examining male compulsive sexuality through the prism of Jewish Guilt. The directing debut of screenwriter Ernest Lehman (Who’s Afraid of Virginia Woolf?, North by Northwest, The Sound of Music). The film co-stars Lee Grant, Jill Clayburgh, and Jeannie Berlin. No Copyright Ownership Implied.
[email protected] - 배우지원 ※연기 영상을 꼭 첨부해주세요※ #웹드라마 #스케치코미디
Big brother of three adorable sisters my sisters kdrama my sisters korean drama my sisters siblings siblings love brother sister love brother sister sister brother sister brother love drama castle shorts drama castle edits drama castle short videos cute cute brother sister cute girl cute sisters kdrama cute couple kdrama cute moments kdrama cute scenes #kdrama #koreandrama #shorts #kdramashorts #kdramaedit #kdramas #koreandramas #mysisters #sisters #brothersister #youtubeshorts #ytshorts #siblingsgoals #dramacastle #youtube kdrama k drama kdrama shorts kdrama edits k drama shorts k drama edits korean drama korean drama shorts korean drama edits new kdrama new korean drama new k drama cdrama c drama c drama shorts c drama edit ...
#웹드라마 #여동사친 #몰아보기
Isn’t Yoyo a wonderful sister? Let’s see how much JJ and the family love Yoyo! Subscribe for new videos every week: https://www.youtube.com/c/cocomelon?sub_confirmation=1 My big sister makes me laugh She’s funnier than anyone My big sister makes me laugh She’s the best, she’s number one My little sister plays with me We play games out in the sun My little sister plays with me She’s the best, she’s number one My big sister teaches me Brand new things, it’s lots of fun My big sister teaches me She’s the best, she’s number one My little sister helps me out She helps make sure the job gets done My little sister helps me out She’s the best, she’s number one I’m so glad there’s three of us To laugh and play and run When we do things together It’s always much more fun Watch our playlists: ...
While we were visiting the Share the Love Beach House, my sister went swimming and got STUNG by an OCTOPUS in the bay! Will Grace Sharer be okay?? Or will we have to rush her to the hospital? Find out in the latest vlog by clicking the button below!
Become a Supporting Member (Join us with Paypal or Credit Card) Learn More here ► http://academyofideas.com/members/ **Gain access to our growing library of Membership videos and courses!** ======== PayPal: https://www.paypal.me/academyofideas Amazon Affiliate Link: http://amzn.to/2kI9BuL ============================================ In this video we shed light on what it means to “become who you are”, and in the process, explore some of Nietzsche’s fascinating psychological insights. ============================================ Sign up for our mailing list: http://academyofideas.com/newsletter/ Get the transcript: http://academyofideas.com/2017/02/nietzsche-psychology-become-who-you-are/
from 2012's 'Children of Desire' (Katorga Works)
New Pursuit of Wonder book is available here: https://www.amazon.com/dp/B0B6XPPNJY Thank you to the book summary app Blinkist for sponsoring this video. The first 100 people to go to https://www.blinkist.com/pursuitofwonder will receive free unlimited access for 1 week and 25% off if you decide to get the full membership. In this video, we take a look into the life and philosophy of one modern history's most influential philosophers, Friedrich Nietzsche, exploring the early collapse of western faith, nihilism, and ways Nietzsche believed we can and should adapt to find meaning in an increasingly meaningless, subjective world. If you are interested in supporting the channel, you can shop Pursuit of Wonder merch here: https://www.pursuitofwonder.com/store Or contribute to our Patreon h...
This talk was given at a local TEDx event, produced independently of the TED Conferences. Following a near death-like experience this popular physician and medical journalist realized that her past conditioning was causing her to live an inauthentic life that created depression and anxiety. She dug deep into her shadow to overcome low self-esteem, learn to love herself and transform her entire life. In this inspiring talk at TEDxIUM, Dr. Andrea Pennington shows how we can learn who we really are - or who we were meant to be - by examining our biology, our personality and temperament and ultimately discovering our unique 'Soulprint' to break free from social conditioning that creates self-loathing and self-rejection. Dr. Andrea Pennington is the Founder and President of Pennington Empowerm...
Original songs composed by Fearless Motivation Instrumentals -Matter of Time -Luck Shmuck https://itunes.apple.com/mt/album/sounds-of-power-9-epic-background-music/1459003485 Picture: https://wallhere.com/en/wallpaper/1252829 All rights go to their respective owners.
Who are you? Where are you? Michael Bryant, a former Attorney General, answers these questions with brutal honesty: how a rapid climb up the ladder of success and equally rapid fall forced him to uncover, discover and discard his false self and become the person he was supposed to be. Michael Bryant, Lawyer and Executive Director of the Canadian Civil Liberties Association (CCLA) Michael Bryant became the youngest Attorney General in Ontario, spending a decade in the Ontario Legislative Assembly, and six years as a Cabinet Minister. Michael’s life changed forever after a tragic fatal accident, for which Michael was arrested with charges that were eventually withdrawn. The former politician ended up an unlikely regular at a homeless drop-in named Sanctuary, then a public defender in bail ...
To what extent our core beliefs and our intention create the reality we experience? How can we learn to deal with fear and to reconnect with our true self? "The more deeply we experience our true nature, the more present, light, and vibrantly alive we become. Our passion for touching the mystery of existence continually opens doors to the miraculous and magical, and creates anew." Anamika's website: http://www.anamika.com With many thanks to kristin kersten for the German subtitles: (Contact: [email protected]) https://www.anthonychene.com https://www.tiktok.com/@anthonychene https://www.instagram.com/anthonychene
Karen Blanche Black (née Ziegler; July 1, 1939 – August 8, 2013) was an American actress, screenwriter, singer and songwriter. A native of Illinois, Black studied acting in New York City and performed on Broadway before making her major film debut in Francis Ford Coppola's You're a Big Boy Now (1966).
She followed this with roles in Easy Rider (1969), Five Easy Pieces (1970), and The Great Gatsby (1974), the latter two of which she won Golden Globe awards for Best Supporting Actress; her performance in Five Easy Pieces also garnered her an Academy Award nomination for Best Supporting Actress. In 1975, she appeared in Dan Curtis's cult horror films Trilogy of Terror and Burnt Offerings; Robert Altman's Nashville, and The Day of the Locust, which earned her a third Golden Globe nomination. Other roles include Airport 1975 (1974), Alfred Hitchcock's Family Plot (1976), Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982), and Tobe Hooper's Invaders from Mars (1986).
In the 1990s, Black starred in a variety of arthouse and horror films, as well as writing her own screenplays before appearing in Rob Zombie's House of 1000 Corpses (2003), which cemented her status as a cult horror icon. Black continued to star in low-profile films throughout the early 2000s, as well as working as a playwright before being diagnosed with ampullary cancer in 2010. She died of the disease in Los Angeles, California, in August 2013. Black's career spanned over fifty years, and includes nearly two hundred film credits.
What if all my enemies were dead
and i could forget everything they said
could I be then who I really am?
What if I sold everything I own
And ran away from everyone I know
could I make another place my home?
And if I let go all of my ghosts
who would I dump over the months?
What if everyone is right?
Should've taken their advice
But I can't change my mind
And if I let go all of my ghosts
who would I dump over the months?
(What if everybody else is right?
should've taken more of their advice)