- published: 01 May 2020
- views: 78002
'+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; })); }); -->
Betty Friedan (February 4, 1921 – February 4, 2006) was an American writer, activist, and feminist. A leading figure in the women's movement in the United States, her 1963 book The Feminine Mystique is often credited with sparking the second wave of American feminism in the 20th century. In 1966, Friedan co-founded and was elected the first president of the National Organization for Women (NOW), which aimed to bring women "into the mainstream of American society now [in] fully equal partnership with men."
In 1970, after stepping down as NOW's first president, Friedan organized the nationwide Women's Strike for Equality on August 26, the 50th anniversary of the Nineteenth Amendment to the United States Constitution granting women the right to vote. The national strike was successful beyond expectations in broadening the feminist movement; the march led by Friedan in New York City alone attracted over 50,000 women and men. In 1971, Friedan joined other leading feminists to establish the National Women's Political Caucus. Friedan was also a strong supporter of the proposed Equal Rights Amendment to the United States Constitution that passed the United States House of Representatives (by a vote of 354–24) and Senate (84–8) following intense pressure by women's groups led by NOW in the early 1970s. Following Congressional passage of the amendment, Friedan advocated for ratification of the amendment in the states and supported other women's rights reforms: she founded the National Association for the Repeal of Abortion Laws but was later critical of the abortion-centered positions of many liberal feminists.
Women's rights are the rights and entitlements claimed for women and girls of many societies worldwide, and formed the basis to the women's rights movement in the nineteenth century and feminist movement during the 20th century. In some countries, these rights are institutionalized or supported by law, local custom, and behavior, whereas in others they may be ignored or suppressed. They differ from broader notions of human rights through claims of an inherent historical and traditional bias against the exercise of rights by women and girls, in favour of men and boys.
Issues commonly associated with notions of women's rights include, though are not limited to, the right: to bodily integrity and autonomy; to vote; to hold public office; to work; to birth control; to have an abortion; to be free from rape; to fair wages or equal pay; to own property; to education; to serve in the military or be conscripted; to enter into legal contracts; and to have marital or parental rights.
Feminist Betty Friedan's best-selling book, "The Feminine Mystique," sparked a debate on women's roles in society and challenged women to strive for greater social and political opportunities.
Phyllis Schlafly and Betty Friedan debate the Equal Rights Amendment and the women's liberation movement on Good Morning America. Aired January 28, 1976.
In this clip from 1964, feminist Betty Friedan explains how men have benefited from women's liberation. Friedan was a leading figure in the women's movement in the U.S., with her 1963 book The Feminine Mystique often credited with sparking a new wave of feminism. For more classic clips, go to http://www.cbc.ca/archives Subscribe: http://bit.ly/CBCSubscribe Watch CBC: http://bit.ly/CBCFullShows About CBC: Welcome to the official YouTube channel for CBC, Canada’s public broadcaster. CBC is dedicated to creating content with original voices that inspire and entertain. Watch sneak peeks and trailers, behind the scenes footage, original web series, digital-exclusives and more. Connect with CBC Online: Twitter: http://bit.ly/CBCTwitter Facebook: http://bit.ly/CBCFacebook Instagram: http://bit....
This video analyzes Betty Friedan's 1963 book, The Feminine Mystique. A core document for the Second Wave of Feminism. All APUSH Simplified videos organized by time period: https://docs.google.com/document/d/1w5YowGMbHBlf7xPp58TG1P7lvbMWv-2yLQSqT57T2v8/edit?usp=sharing
Episode of Public Affairs Roundtable discussion program hosted by Larry Lough and produced by John Rouse for WIPB-TV. Episode includes an interview with feminist leader and founder of the National Organization for Women Betty Friedan. Friedan discusses the content of lectures given during public speaking engagements, the state of the feminist movement and in the United States and the challenges it faces, the legacy of the notion of the feminist mystique in the contexts of women in the family and in the workplace, advancements gained by women in the media, and legal challenges to the advancement of the feminist movement. To access this video in the Ball State University Digital Media Repository: http://libx.bsu.edu/cdm/singleitem/collection/RsJhnNwsCol/id/207/rec/112 To access other items...
American writer, activist, and feminist speaks to Mary Parkinson about her early writing career. First shown in 28/06/1977 If you would like to license a clip from this interview please e mail: [email protected] Quote: VT 17209
Betty Friedan's milestone book "The Feminine Mystique" was published on February 19, 1963. Her work and writings helped to galvanize the Women's Rights Movement.
🔴 Conviértete en miembro para ayudar al canal: https://www.youtube.com/channel/UCIuAQ4mwqWsUU-18qx7wypg/join 🔴 Para suscribirte al canal pincha en este enlace (ES GRATIS): https://www.youtube.com/c/RECETASPOWERLIFE?sub_confirmation=1 ___________ En este video, analizamos 10 claves del comportamiento destructivo de las feministas radicales y cómo afectan al movimiento feminista y a la sociedad en general. Desde la intolerancia a opiniones diferentes hasta la victimización constante, descubre cómo estos comportamientos crean divisiones y dificultan el avance hacia la igualdad. ¡Suscríbete para más contenido sobre feminismo y relaciones sociales! #feministas #feministasradicales #feminismoradical manifestación de feministas,marcha feminista,feminismo,feminismo radical,femi...
Summary Of The Feminine Mystique By Betty Friedan. - Betty Friedan, “Beyond The Feminine Mystique” Summary Of The Feminine Mystique By Betty Friedan. - the feminine mystique by betty friedan. "the feminine mystique" by betty friedan is a landmark book that helped launch the modern feminist movement in the united states. the feminine mystique by betty friedan: summary and five takeaways #feminism #discrimination #rights. the feminine mystique by betty friedan: introduction#feminism #discrimination #rights #youtubeshorts. The feminine mystique by betty friedan: summary and five takeaways #feminism #discrimination #rights. The feminine mystique by betty friedan | book discourse. "the feminine mystique" by betty friedan. "the feminine mystique" by betty friedan is a landmark book ...
How much progress have we achieved in the global struggle for equal rights, and how much work remains? From worldwide suffrage campaigns to the rise of #MeToo and digital activism, we have marched slowly forward. But today, the fight for gender equality is far from over. Discover the noteworthy women, grassroots movements and historic milestones that have changed the world for women and girls. Join UN Women’s #GenerationEquality campaign to accelerate gender equality actions and mark the 25th anniversary of the Beijing Declaration and Platform for Action, the most visionary agenda for women’s rights and empowerment everywhere: https://www.unwomen.org/en/get-involved/beijing-plus-25 Subscribe to UN Women here: https://bit.ly/2AV6WZ8 For more about UN Women’s work, visit: http://www.un...
PEOPLE looks at the women suffrage movement throughout the years. Subscribe to People ►► http://bit.ly/SubscribetoPeople #WomensHistoryMonth #WomensHistory #PEOPLE Catch up on the latest celebrity news, top stories and more: https://www.youtube.com/watch?v=6wQfUfqL8Ms&list=PLzS8B57pacxwyLPuFYvWxzqvoRrBc4GqA PEOPLE goes behind-the-scenes with our cover stars for exclusive stories and in-depth interviews: https://www.youtube.com/watch?v=OQKl_X701vU&list=PLzS8B57pacxyRV5X1C-ourUW676yKNYsU PEOPLE goes in-depth with your favorite stars and celebrities to bring you exclusive stories and features: https://www.youtube.com/watch?v=_9H8u-Cso1s&list=PLzS8B57pacxxEqaaiRWm83-sdyKw5tXUS Go inside the homes of your favorite celebrities with exclusive house tours: https://www.youtube.com/watch?...
In 1920, women in the U.S. gained the right to vote - but only after a struggle that lasted more than 70 years! Learn how suffragists fought for the 19th amendment. #HistoryChannel Subscribe for more from HISTORY: http://histv.co/SubscribeHistoryYT Read More: po.st/19th_Amendment Find out more about this and other specials on our site: http://po.st/HistoryWeb Check out exclusive HISTORY content: History Newsletter: http://po.st/HistoryNewsletter Website - http://po.st/HistoryWeb Facebook - http://po.st/HistoryFacebook Twitter - http://po.st/HistoryTwitter HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winning original series and specials that connect viewers with history in an informative, immersive, and entertaining manner across all platforms....
Ahead of International Women's Day, here's a look at some of the most inspirational and iconic speeches on women's rights from the Reuters archive. Subscribe: http://smarturl.it/reuterssubscribe Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled. Get the latest news on: http://reuters.com/ Follow Reuters on Facebook: https://www.facebook.com/Reuters Follow Reuters on Twitter: https://twitter.com/Reuters Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
In which John Green teaches you about American women in the Progressive Era and, well, the progress they made. So the big deal is, of course, the right to vote women gained when the 19th amendment was passed and ratified. But women made a lot of other gains in the 30 years between 1890 and 1920. More women joined the workforce, they acquired lots of other legal rights related to property, and they also became key consumers in the industrial economy. Women also continued to play a vital role in reform movements. Sadly, they got Prohibition enacted in the US, but they did a lot of good stuff, too. The field of social work emerged as women like Jane Addams created settlement houses to assist immigrants in their integration into the United States. Women also began to work to make birth control...
In which John Green finally gets around to talking about some women's history. In the 19th Century, the United States was changing rapidly, as we noted in the recent Market Revolution and Reform Movements episodes. Things were also in a state of flux for women. The reform movements, which were in large part driven by women, gave these self-same women the idea that they could work on their own behalf, and radically improve the state of their own lives. So, while these women were working on prison reform, education reform, and abolition, they also started talking about equal rights, universal suffrage, temperance, and fair pay. Women like Susan B. Anthony, Carry Nation, Elizabeth Cady Stanton, the Grimkés, and Lucretia Mott strove tirelessly to improve the lot of American women, and it worke...
Until the 1870s, women were considered the property of their husbands. Because of this, women weren't allowed to own property - and this even went to custody of their children. Women desired to be more fully part of the nation - to be considered full citizens and to earn the right to vote. From pioneering activists of all races like indigenous politician Gertrude Bonnin to black Progressive Era leaders like Nellie Griswold Francis, the vote was seen as a mark of fuller citizenship and tool of change for concerns like healthcare, children, and women’s rights. Celebrate these suffragists on the 100th anniversary of the 19th Amendment with "Citizen". 0:00:00 A pre-women's vote ballot box 0:00:58 "The most fundamental right you can have in a democracy" 0:02:20 The importance of the women's v...
Q endures the wrath of a roomful of feminists as he disagrees with experts on a women's issues panel. Subscribe: http://bit.ly/truTVSubscribe Watch full episodes for Free: http://bit.ly/ImpracticalJokersTruTV If laughter is contagious, these guys should be quarantined! Q, Sal, Joe and Murr have entertained each other for years with the most hilarious practical jokes they could imagine. Now these real-life best friends are challenging each other to the most outrageous dares and uproarious stunts ever to be caught on hidden camera. Follow Impractical Jokers on Twitter: http://full.sc/1ubWgY7 Like Impractical Jokers on Facebook: http://full.sc/1CrLTDU truTV Official Site: http://www.trutv.com/ Like truTV on Facebook: https://www.facebook.com/truTV Follow truTV on Twitter: https://twitte...
Learn about the movement for women's equality that precipitated the Seneca Falls Convention in 1848, and what its attendees - including Elizabeth Cady Stanton and Lucretia Mott - hoped to achieve. Subscribe for more HISTORY: http://histv.co/SubscribeHistoryYT Newsletter: https://www.history.com/newsletter Website - http://www.history.com /posts Facebook - https://www.facebook.com/History Twitter - https://twitter.com/history HISTORY Topical Video Season 1 Episode 1 Whether you're looking for more on American Revolution battles, WWII generals, architectural wonders, secrets of the ancient world, U.S. presidents, Civil War leaders, famous explorers or the stories behind your favorite holidays. HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winnin...
Betty Friedan (February 4, 1921 – February 4, 2006) was an American writer, activist, and feminist. A leading figure in the women's movement in the United States, her 1963 book The Feminine Mystique is often credited with sparking the second wave of American feminism in the 20th century. In 1966, Friedan co-founded and was elected the first president of the National Organization for Women (NOW), which aimed to bring women "into the mainstream of American society now [in] fully equal partnership with men."
In 1970, after stepping down as NOW's first president, Friedan organized the nationwide Women's Strike for Equality on August 26, the 50th anniversary of the Nineteenth Amendment to the United States Constitution granting women the right to vote. The national strike was successful beyond expectations in broadening the feminist movement; the march led by Friedan in New York City alone attracted over 50,000 women and men. In 1971, Friedan joined other leading feminists to establish the National Women's Political Caucus. Friedan was also a strong supporter of the proposed Equal Rights Amendment to the United States Constitution that passed the United States House of Representatives (by a vote of 354–24) and Senate (84–8) following intense pressure by women's groups led by NOW in the early 1970s. Following Congressional passage of the amendment, Friedan advocated for ratification of the amendment in the states and supported other women's rights reforms: she founded the National Association for the Repeal of Abortion Laws but was later critical of the abortion-centered positions of many liberal feminists.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I got a reason for breathin,
goodbye Hollywood and hello Cleveland.
I didn't tell my girl I was leavin,
packed my bags, jumped in the Lincoln.
Suicide doors more to the meaning,
Four on the floor, three on the tree and,
I'm doin' speed on the 405 freeway,
Officer give a white boy some leeway.
Downtown with the he-say she-say,
Dont mean nothin cause the he-she's cliche.
Downtown where your dreams just decay,
$40 for a ? $20 for a BJ
But uptown they play my CD's
Girls wanna fuck me, boys wanna be me.
Who's Mickey, she said, and smiled in a special way.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna keep on creepin'
Latchkey kids gettin' high all weekend.
Lookin past the hood of my Fleetwood,
Jesus on the dash and the king on the speaker.
You can find me in the back of the theater like
Pee Wee Herman, holdin my weiner.
I ain't seen her since the milk went bad
and I didn't mean to beat her is what I told her dad..
Round town it's a stone cold fact,
Avalon got a gun in his lap.
Round town you can hear the clap,
when I take the stage, and shake my ass.
Out of town you can feel the heat,
when my bus pulls up and steals your freaks.
Out of town you can feel the noise,
come on girls, rock your boys!
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave...
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna speak on freedom,
do what you like fuck other people.
They tell you what you're supposed to do,
how about your girl do me, and you do you.
Now kick rocks before you get shot,
in the back of the head all you heard was POP
Goes to weasel cause the weasel smoke rock,
Hypodermic needle paramedic on the block.
Chop your body up, drop it off the dock,
why you gotta go and call the mothafuckin cops?
It's too late babe it could've been great,
but you had to go and stab me in the back with a steak knife.
Late night, waste away,
Chain smokin' til the drapes turn grey.
Cocaine helps me face the day,
and then the pills wash the pain away.
I won't be blamed for your mistakes,
burned at the stake,
for God's sake.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....