- published: 02 Jan 2022
- views: 27669
'+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; })); }); -->
Harvey Bernard Milk (May 22, 1930 – November 27, 1978) was an American politician who became the first openly gay person to be elected to public office in California, when he won a seat on the San Francisco Board of Supervisors. Politics and gay activism were not his early interests; he was not open about his homosexuality and did not participate in civic matters until around the age of 40, after his experiences in the counterculture of the 1960s.
Milk moved from New York City to settle in San Francisco in 1972 amid a migration of gay men to the Castro District. He took advantage of the growing political and economic power of the neighborhood to promote his interests, and ran unsuccessfully for political office three times. His theatrical campaigns earned him increasing popularity, and Milk won a seat as a city supervisor in 1977.
Milk served almost 11 months in office and was responsible for passing a stringent gay rights ordinance for the city. On November 27, 1978, Milk and Mayor George Moscone were assassinated by Dan White, another city supervisor who had recently resigned but wanted his job back. Milk's election was made possible by and was a key component of a shift in San Francisco politics.
Harvey Milk is an opera in three acts composed by Stewart Wallace to a libretto by Michael Korie. A joint commission by Houston Grand Opera, New York City Opera, and San Francisco Opera, it was premiered on January 21, 1995 by Houston Grand Opera. The opera is based on the life and death of the gay activist and politician Harvey Milk who was assassinated along with San Francisco's mayor George Moscone on November 27, 1978.
The controversial director John Dew originally suggested the idea for a stage work based on the life of Harvey Milk to David Gockley, at the time General Director of Houston Grand Opera. Gockley then approached the composer Stewart Wallace and his librettist Michael Korie who were looking for new opera subject, having previously collaborated on the dance opera Kabbalah and the two-act opera Where's Dick which had its world premiere at Houston Grand Opera in 1989. According to Gockley, Dew's original conception to stage the work as a musical was "very, very weird, with strange dreamlike drag ballets and the like. He had a distorted idea of the subject." Gockley's relationship with Dew subsequently deteriorated in 1992 when Dew went to Houston to direct the premiere of Robert Moran's opera, Desert of Roses. When both the opera company and Wallace found Dew's concept unacceptable, Harvey Milk took form as an opera instead. The production, jointly commissioned by Houston Grand Opera, New York City Opera, and San Francisco Opera, premiered on January 21, 1995 in Houston. It was directed by Christopher Alden with set designs by Paul Steinberg and choreography by Ross Petty.
Harvey Milk (1930–1978) was an American politician and LGBT rights activist assassinated in 1978.
Harvey Milk may also refer to:
Unfair: The End (アンフェア the end) is a 2015 Japanese police drama thriller film based on the Japanese television drama series Unfair. It follows two other films based on the series, Unfair: The Movie (2007) and Unfair 2: The Answer (2011). The film is directed by Shimako Satō, who also directed the previous film, with Ryoko Shinohara reprising her role from the series and films. It was released on September 5, 2015.
The film was number-one at the Japanese box office on its opening weekend by number of admissions, with 214,000, and was second place by gross renevue, with ¥295 million. On its second weekend it earned ¥191 million and again placed second by gross revenue. By September 29, it had earned ¥1.79 billion.
KHTB (101.9 FM) is a Salt Lake City, Utah-based radio station. The station's studios are located in South Salt Lake (behind the I-15/I-80 interchange) and its transmitter site is located southwest of the city on Farnsworth Peak in the Oquirrh Mountains.
In 1995, KKAT licensed "Young Country" from Alliance Broadcasting. It was the first country station to intentionally go after young listeners. Also that year, Kid Cassidy (John Potter) of KWNR replaced Gary and Scotty in the mornings, with Insane Rick Shane remaining as producer. Other local hosts were T.J. Evans, "Gentleman Jim" Mickleson, Bob Wells and Tracy Chapman, while Blair Garner did the overnight shift. KKAT took over the number one position among five country stations from KSOP-FM, the only station in the group to lose listeners. Gary and Scotty had been hired to replace Ken Simmons after Simmons' arrest for lewd behavior, and the station and the morning hosts could not overcome the stigma of that incident. But hiring Cassidy and a strong promotional effort worked. KKAT would be replaced by KPQP, a Top 40 station, in 2004. KPQP would last until KENZ's move to the frequency in late 2005.
The End... is the fourth studio album by Nico. It was released in November 1974, through record label Island.
The End... is her fifth collaboration with John Cale and second with him as producer. It carries the same harmonium-based sound heard on The Marble Index (1969) and Desertshore (1970), with the addition of Brian Eno's synthesizers and electronic instruments.
The song "You Forget to Answer" tells of the misery felt by Nico when she failed to reach ex-lover Jim Morrison by phone only to find out later that he had died. All but two of the songs on the album were written by Nico: the cover of The Doors' "The End" and a version of the German national anthem "Das Lied der Deutschen". Brian Eno performs synthesizer on "It Has Not Taken Long", "You Forgot to Answer" and "Innocent and Vain".
The front and back covers feature stills from the Philippe Garrel film Les hautes solitudes (1974) in which Nico appears.
All songs written and composed by Nico, except as noted.
Harvey Milk is an American experimental rock/noise rock band that formed in Athens, Georgia in the early 1990s. While Harvey Milk invariably draws comparisons to the Melvins, due to their penchant for slow, heavy riffs, the band has touched upon such artists as ZZ Top, Led Zeppelin, Leonard Cohen, and Kiss as influences in their music. They even went so far as to perform a live show consisting of nothing but Hank Williams covers. One April Fool's Day gig at the 40 Watt in Athens, they performed R.E.M.'s Reckoning album from beginning to end, while Michael Stipe was in attendance.
Harvey Milk formed in 1992, naming themselves after Harvey Milk, the first openly gay politician elected in a major U.S. city. Originally a trio of Creston Spiers, Stephen Tanner, and Paul Trudeau, the band released one album, My Love Is Higher Than Your Assessment of What My Love Could Be, before Trudeau left in 1996. They disbanded in 1998 but reformed in 2006.
On June 3, 2008, Harvey Milk released Life... The Best Game in Town. The band toured the eastern and southern US as well as Germany, England, Belgium, France and Scotland during the Summer of 2008. Life... The Best Game in Town was voted as the best album of 2008 in Rock-A-Rolla magazine writer's poll, although guitarist/vocalist Creston Spiers sees it as the band's worst album.
Harvey Milk and George Moscone were progressive icons in San Francisco, both in 1978 and the present day. Harvey Milk is known throughout the LGBT community as one of the first openly-gay officials to serve in public office, and as an outspoken leader of the gay rights movement. George Moscone led San Francisco into a progressive era that resembled the style of government that San Francisco is infamous for today. Harvey Milk and George Moscone died at the hands of Dan White, a member of the board of supervisors along with Harvey Milk. Dianne Feinstein also weaves her way into this story. It was she who found the body of Harvey Milk after Milk was murdered in cold blood. Feinstein would go on to become mayor of San Francisco and Senator from California, a role she serves in to this day. C...
In these 1978 news reports, NBC News covers the assassination of openly gay San Francisco Supervisor Harvey Milk, along with San Francisco Mayor George Moscone. » Subscribe to NBC News: http://nbcnews.to/SubscribeToNBC » Watch more NBC video: http://bit.ly/MoreNBCNews NBC News is a leading source of global news and information. Here you will find clips from NBC Nightly News, Meet The Press, and original digital videos. Subscribe to our channel for news stories, technology, politics, health, entertainment, science, business, and exclusive NBC investigations. Connect with NBC News Online! Visit NBCNews.Com: http://nbcnews.to/ReadNBC Find NBC News on Facebook: http://nbcnews.to/LikeNBC Follow NBC News on Twitter: http://nbcnews.to/FollowNBC Follow NBC News on Google+: http://nbcnews.to/Plus...
In 1977 Harvey Milk became the first openly-gay man elected to public office in the U.S., when he won a seat on San Francisco's Board of Supervisors. The following year, he and Mayor George Moscone were killed by a fellow official. In this November 30, 2008 "Sunday Morning" report by correspondent John Blackstone, Senator Diane Feinstein, who was on the city's Board of Supervisors in 1978, talked about the horror she witnessed the day of Milk and Muscone's murders. (Feinstein died on Sept. 28, 2023, at age 90.) "CBS Sunday Morning" features stories on the arts, music, nature, entertainment, sports, history, science and Americana, and highlights unique human accomplishments and achievements. Check local listings for CBS Sunday Morning broadcast times. Subscribe to the "CBS Sunday Morning...
"There is no law that two human beings cannot love each other." The LGBTQ community lost a hero 42 years ago. This is the story of gay rights activist Harvey Milk. Subscribe to Brut America: https://bit.ly/BrutAmericaYT 📲Watch the newest Brut videos on our mobile apps: ▶︎https://apps.apple.com/us/app/brut/id1401241655 ▶︎https://play.google.com/store/apps/details?id=media.brut.brut Discover More Brut: ▶︎ https://brut.media/us ▶︎ FB: https://facebook.com/brutamerica ▶︎ IG: https://instagram.com/brutamerica ▶︎ TW: https://twitter.com/brutamerica
The first 100 people to go to http://blinkist.com/biographics are going to get unlimited access for one week to try it out. You’ll also get 25% off if you want the full membership. → Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 This video is #sponsored by Blinkist. TopTenz Properties Our companion website for more: http://biographics.org Our sister channel TopTenz: https://www.youtube.com/channel/UCQ-hpFPF4nOKoKPEAZM_THw/ Our Newest Channel about Interesting Places: https://studio.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Credits: Host - Simon Whistler Author - Morris M. Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to [email protected] Other Biographics Videos: Hugo Chavez: V...
In this 1978 news report, NBC News introduces viewers to newly elected — and openly gay — San Francisco official Harvey Milk. » Subscribe to NBC News: http://nbcnews.to/SubscribeToNBC » Watch more NBC video: http://bit.ly/MoreNBCNews NBC News is a leading source of global news and information. Here you will find clips from NBC Nightly News, Meet The Press, and original digital videos. Subscribe to our channel for news stories, technology, politics, health, entertainment, science, business, and exclusive NBC investigations. Connect with NBC News Online! Visit NBCNews.Com: http://nbcnews.to/ReadNBC Find NBC News on Facebook: http://nbcnews.to/LikeNBC Follow NBC News on Twitter: http://nbcnews.to/FollowNBC Follow NBC News on Google+: http://nbcnews.to/PlusNBC Follow NBC News on Instagram: h...
"Je suis né de parents hétérosexuels dans une société furieusement hétérosexuelle, une société qui met à terre l’homosexualité." — Harvey Milk Harvey Milk, figure du mouvement gay aux États-Unis, élu conseiller municipale en 1977 puis assassiné en 1978.
On November 27, 1978 San Francisco Mayor George Moscone and Supervisor Harvey Milk were killed by their colleague, Supervisor Dan White. The murder tore San Francisco's political scene apart and made people question whether junk food, Twinkies, could drive someone to murder. Full story here: https://abc7ne.ws/3pGlHHO #harveymilk #georgemoscone #sfcityhall MORE ABC7 NEWS ------------------------------------------------------------------------ DOWNLOAD: The ABC7 News app is the best way to stay up to date on Bay Area breaking news, weather, events, traffic, politics, crime, life and more. You can customize your push notifications so you get just the alerts you want. Download it for free and check out the rest of our apps here: www.abc7news.com/apps Website: www.abc7news.com -- Get all...
Ms. Linda reads a moving and empowering true story for young readers that traces the life of the Gay Pride Flag, from its beginnings in 1978 with social activist Harvey Milk and designer Gilbert Baker to its spanning of the globe and its role in today’s world. Get the book here: http://bit.ly/2Xq4z9z Download an educators guide and activities to accompany the book: https://images.randomhouse.com/promo_image/9780399555312_5035.pdf For more children's book recommendations and tips for raising kids who love to read, visit Brightly: http://bit.ly/299HQX0 Follow Brightly: Facebook: https://www.facebook.com/ReadBrightly/ Instagram: https://www.instagram.com/readbrightly/ Twitter: https://twitter.com/ReadBrightly Pinterest: https://www.pinterest.com/readbrightly/ Narration by Lynn Craig. Mus...
Harvey Milk, America’s first openly gay elected official, was assassinated in 1978. His pioneering campaign for LGBTQ+ rights paved the way for more members of the community to serve in government. Untold is a free collection of short, compelling, history videos and animations designed to engage new audiences in a new conversation and shine a light on the stories that don’t always make it into the classroom and question what we think we know about those that do. Untold is here to fill in the gaps and bring new stories to life. Check out untoldhistory.org Follow Untold on Instagram: https://www.instagram.com/untoldedu/ Facebook: https://www.facebook.com/UntoldEdu Twitter: https://twitter.com/UntoldEdu
Harvey Bernard Milk (May 22, 1930 – November 27, 1978) was an American politician who became the first openly gay person to be elected to public office in California, when he won a seat on the San Francisco Board of Supervisors. Politics and gay activism were not his early interests; he was not open about his homosexuality and did not participate in civic matters until around the age of 40, after his experiences in the counterculture of the 1960s.
Milk moved from New York City to settle in San Francisco in 1972 amid a migration of gay men to the Castro District. He took advantage of the growing political and economic power of the neighborhood to promote his interests, and ran unsuccessfully for political office three times. His theatrical campaigns earned him increasing popularity, and Milk won a seat as a city supervisor in 1977.
Milk served almost 11 months in office and was responsible for passing a stringent gay rights ordinance for the city. On November 27, 1978, Milk and Mayor George Moscone were assassinated by Dan White, another city supervisor who had recently resigned but wanted his job back. Milk's election was made possible by and was a key component of a shift in San Francisco politics.
Anyone who's shaken dust
Knows that it should fall back
Harmless
It's over now
Things have changed
Everything is different And rearranged
We never got the way that we should go
Tears and heartache, nothing more
I had to play grownup in our game
That wasn't fair, that was the worst thing
And if I didn't say this was the end
You would still be here now
We wanted to be out of our heads
In all that we could do
Daddy didn't but you a diamond ring
And mummy's still waiting for better things
Baby's on his own now he's qualified
Remember I was there on his down days
You'll do good and you know that too
If I can give them I will do
Mummy's gonna buy you a brand new life
Mummy's gonna buy you a brand new life
And if I didn't say this was the end
You would still be here now
We wanted to be out of our heads
In all that we could do
Born leaders, no, no we are not
Born leaders, no, no never growing up
Born leaders, no
My hands be still should my eyes be bright
And if I didn't say this was the end
You would still be here now
We wanted to be out of our heads
In all that we could do
And if I didn't say this was the end
You would still be here now