'+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; })); }); -->

Fraternities and sororities

Fraternities and sororities are social organizations at colleges and universities. A form of the social fraternity, they are prominent in the United States, Canada, and the Philippines, with smaller numbers existing in France, the United Kingdom, and elsewhere. Similar organizations exist in other countries as well, including the Studentenverbindungen of German-speaking countries.

Similar, but much less common, organizations also exist for secondary school students. In modern usage, the term "Greek letter organization" ("GLO") is often synonymous with the terms "fraternity" and "sorority." Two additional types of fraternities, professional fraternities and honor societies, incorporate some limited elements of traditional fraternity organization but are generally considered a different type of association. Traditional fraternities of the type described in this article are often called "social fraternities."

Generally, membership in a fraternity or sorority is obtained while an undergraduate student but continues, thereafter, for life. Some of these organizations can accept graduate students as well as undergraduates, per constitutional provisions.

Podcasts:

  • Why colleges tolerate fraternities

    Frats are... fratty. Why do colleges keep them around? Follow Overrated on Facebook Watch: https://www.facebook.com/OverratedTheShow/ In this episode of Overrated, Vox’s Phil Edwards explores the history of frats. The history of fraternities has a lot of ups and downs — and stretches all the way back to America’s founding fathers. Beyond the hazing and beer chugging, there’s a story that includes changes in higher education and even national politics. So why do colleges keep fraternities on campus? The reason is a web of incentives that make fraternities allies to administrators — despite the negatives they sometimes present. Overrated is a series that takes a look at the things we all know — the books, the trends, and the ideas that have become iconic — and answers the question: “W...

    published: 24 Sep 2018
  • If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)

    College is going to be one of the biggest investments of your life, so why not spend a little extra buying a bunch of friends by joining a frat or sorority? CAST: Roger: Jack Horton Guy: Michael Strauss Girl: Britt Migs Director: Michael Strauss Director of Photography: Rob Menzer Producer: Michael Strauss Writer: Nathan Bennett Editor: Gabrielle Williott Colorist: Rob Menzer Sound: James Azzaretti Camera Assistant: Rachel Mossberg Production Assistant: Jesse Eisemann SOURCES: https://www.nytimes.com/2019/02/12/us/yale-fraternities.html https://jezebel.com/batshit-sorority-pledge-email-cannot-stress-how-importa-1679804927 https://www.insider.com/why-young-men-connected-to-fraternities-keep-dying-2019-11 https://www.nytimes.com/2019/07/17/us/lsu-fraternity-hazing-death.html https://web....

    published: 15 Oct 2023
  • Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternities

    Use code ISABELLA55 to get 55% off your first month at Drift.co https://drft.info/3NE5pfn Hello Angels, In today's video, we are talking about if greek life one big cult? The Dark Secrets of sororities and fraternities! A reminder that I DON'T THINK EVERY PERSON IN GREEK LIFE IS BAD!! I am so so happy you have had a good and safe experience if you did. I wanted to talk about this topic and show the problematic and scary issues of greek life. Something to bring more awareness, share the dark issues, and explain why this may not be for you! I also want people to not feel alone if they have been a victim of greek life. Thank you all so much for watching and don't forget to subscribe. 00:00 Intro 02:33 What is Greek Life 04:29 Where Greek Life Started 08:32 The toxic behaviors of fraternitie...

    published: 30 Jun 2023
  • The Toxicity of Greek Life

    Hazing, sexual abuse, racism. These people are speaking out against what they've experienced in a college sorority. 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 #brut #brutamerica #bamarush #alabama Discover More Brut: ▶︎ https://brut.media/us ▶︎ FB: https://facebook.com/brutamerica ▶︎ IG: https://instagram.com/brutamerica ▶︎ TW: https://twitter.com/brutamerica

    published: 18 Aug 2022
  • History of Fraternities and Sororities

    published: 02 Jun 2017
  • The history of Black sororities and fraternities

    Black Greek letter organizations date back to the early 1900s.

    published: 04 Feb 2021
  • Grieving Parents Share Sons’ Fraternity Hazing Stories

    Seven families share a common bond of their loved ones being killed or harmed by fraternity hazing rituals. According to published reports, there have been close to 80 college students who died in hazing incidents connected to Greek life in the past 15 years. Danny Santulli suffered cardiac arrest from alcohol poisoning after being pressured to drink the equivalent of 20 shots. Now, Santulli is confined to a wheelchair and has permanent brain damage.

    published: 26 Oct 2022
  • Ask An American: University Sororities & Fraternities

    What goes on in sororities and fraternities in American universities? Are they a big thing? How do you join? And how about me?!! Was I part of one? Don't forget to subscribe for more videos, every Sunday and the new mid-week Ask an American series! More fun stuff here: Hang out with me on Facebook: https://www.facebook.com/WantedAdventure Chill with me on Twitter: https://twitter.com/WantedAdventure Wave to me on Google+ as you drive by: https://plus.google.com/+WantedAdventure

    published: 04 May 2016
  • Prayers For Sororities & Fraternities-Restoration & Redemption | Courage To Leave

    published: 15 Aug 2024
  • The story of 9 historically Black fraternities and sororities l GMA

    Plus, Howard University students who are members of the groups within the National Pan-Hellenic Council, also known as The Divine Nine, perform a Unity Step. SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Twitter: https://twitter.com/gma WATCH: https://abc.go.com/shows/good-morning-america https://hulu.tv/3WXqiTV #gma #hbcu #greeklife #howarduniversity #divinenine #steps

    published: 28 Feb 2023
developed with YouTube
Why colleges tolerate fraternities
7:05

Why colleges tolerate fraternities

  • Order:
  • Duration: 7:05
  • Uploaded Date: 24 Sep 2018
  • views: 4351823
Frats are... fratty. Why do colleges keep them around? Follow Overrated on Facebook Watch: https://www.facebook.com/OverratedTheShow/ In this episode of Overrated, Vox’s Phil Edwards explores the history of frats. The history of fraternities has a lot of ups and downs — and stretches all the way back to America’s founding fathers. Beyond the hazing and beer chugging, there’s a story that includes changes in higher education and even national politics. So why do colleges keep fraternities on campus? The reason is a web of incentives that make fraternities allies to administrators — despite the negatives they sometimes present. Overrated is a series that takes a look at the things we all know — the books, the trends, and the ideas that have become iconic — and answers the question: “Why is this so famous"? Watch the previous episode of Overrated: https://www.youtube.com/watch?v=-eO92ABfq2I Watch Season 1 of Overrated here: https://www.youtube.com/watch?v=YSVlSmZWzm0&list=PLJ8cMiYb3G5elLvDjph8cAd91weWxBfyN Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com. Subscribe to our channel! http://goo.gl/0bsAjO Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on Facebook: http://goo.gl/U2g06o Or Twitter: http://goo.gl/XFrZ5H
https://wn.com/Why_Colleges_Tolerate_Fraternities
If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)
6:59

If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)

  • Order:
  • Duration: 6:59
  • Uploaded Date: 15 Oct 2023
  • views: 223044
College is going to be one of the biggest investments of your life, so why not spend a little extra buying a bunch of friends by joining a frat or sorority? CAST: Roger: Jack Horton Guy: Michael Strauss Girl: Britt Migs Director: Michael Strauss Director of Photography: Rob Menzer Producer: Michael Strauss Writer: Nathan Bennett Editor: Gabrielle Williott Colorist: Rob Menzer Sound: James Azzaretti Camera Assistant: Rachel Mossberg Production Assistant: Jesse Eisemann SOURCES: https://www.nytimes.com/2019/02/12/us/yale-fraternities.html https://jezebel.com/batshit-sorority-pledge-email-cannot-stress-how-importa-1679804927 https://www.insider.com/why-young-men-connected-to-fraternities-keep-dying-2019-11 https://www.nytimes.com/2019/07/17/us/lsu-fraternity-hazing-death.html https://web.archive.org/web/20171109013012/http:/www.d.umn.edu/cla/faculty/jhamlin/3925/4925HomeComputer/Rape%20myths/Prospective%20Analysis.pdf https://www.washingtonpost.com/news/act-four/wp/2015/03/11/the-long-fraught-racial-history-of-american-fraternities/ https://www.vox.com/22384053/abolish-greek-life-fraternities-sororities https://msumadvocate.com/2014/10/21/sorority-on-probation-for-bullying/ SUBSCRIBE HERE: http://goo.gl/ITTCPW CLICK HERE for our NEWEST SERIES: https://www.youtube.com/playlist?list=PL_saLI-LH-VqZ17oMi5SrH3n09ZIizB8s CLICK HERE for YOUR BRAIN ON CRACKED: https://tinylink.net/z3BAv CLICK HERE for WE'RE NOT ALONE - http://goo.gl/cC9L5o CLICK HERE for ROM.COM: The Series - https://goo.gl/5mabAx CLICK HERE for AFTER HOURS: http://goo.gl/Nrg6Jh CLICK HERE for CRACKED ANIMATIONS: https://goo.gl/bSD2Sf CLICK HERE for TODAY'S TOPICS: https://goo.gl/1jxB44 CLICK HERE for ESCORT MISSION: https://goo.gl/19YnL7 See more http://www.cracked.com LIKE us on: http://www.facebook.com/cracked FOLLOW us on: http://www.twitter.com/cracked FOLLOW us on: http://cracked.tumblr.com
https://wn.com/If_Frats_And_Sororities_Were_Honest_Honest_Ads_(College_Greek_Life_Parody)
Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternities
23:48

Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternities

  • Order:
  • Duration: 23:48
  • Uploaded Date: 30 Jun 2023
  • views: 97184
Use code ISABELLA55 to get 55% off your first month at Drift.co https://drft.info/3NE5pfn Hello Angels, In today's video, we are talking about if greek life one big cult? The Dark Secrets of sororities and fraternities! A reminder that I DON'T THINK EVERY PERSON IN GREEK LIFE IS BAD!! I am so so happy you have had a good and safe experience if you did. I wanted to talk about this topic and show the problematic and scary issues of greek life. Something to bring more awareness, share the dark issues, and explain why this may not be for you! I also want people to not feel alone if they have been a victim of greek life. Thank you all so much for watching and don't forget to subscribe. 00:00 Intro 02:33 What is Greek Life 04:29 Where Greek Life Started 08:32 The toxic behaviors of fraternities and sororities 13:10 The Horror stories 19:09 Personal Experience 21:33 Is Greek Life A Cult?! 22:03 Final Thoughts https://en.wikipedia.org/wiki/Fraternities_and_sororities#:~:text=Sororities%2C%20originally%20called%20women%27s%20fraternities,Kappa%20Kappa%20Gamma%20in%201870. https://www.buzzfeed.com/hannahdobro/traumatic-experiences-with-fratshttps://www.highlandernews.org/36455/the-dark-side-of-greek-life-shedding-light-on-the-humiliations-that-await-prospective-pledges/ https://janjalalich.com/help/characteristics-associated-with-cults/ MY LINKS: • INSTAGRAM: https://www.instagram.com/isabellalanter/ • LISTEN TO MY PODCAST "ANGEL TALK: https://open.spotify.com/show/7qOYJbjiwXVjcogtdygvFj?si=e00f4ed0eac6448e • VLOG/LIFESTYLE CHANNEL: https://youtube.com/channel/UCwkiRhcFSOM7281lFcIDapA • MY AMAZON STOREFRONT *affiliate*: https://www.amazon.com/shop/isabellalanter • MY MERCH: https://my-store-11234800.creator-spring.com Business Inquiries Email: isabella.lanter@thestation.io SCAM/CONTENT SUBMISSIONS: Isabellamichellelanter@gmail.com PO BOX: ISABELLA LANTER PO BOX 374 MANHATTAN, KS 66502 ------------------------------------------------------------------------------------------------------------ Thank you so so much for your love and support! See you next video! DISCLAIMERS + DISCLOSURES All footage and clips shown are protected under the Fair Use Act under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, commentary, news reporting, teaching, scholarship, education and research. All content on this channel is meant for entertainment purposes, as well as, at times, educational purposes. All opinions are my own and do not reflect the opinions of my channel sponsors. Inferences are made in these videos according to what I read, research, etc. I am willing to be corrected if I fall incorrect on a statement. This content is not intended to incite hate towards any individual or entity. sorority,greek life,fraternity,sorority rush,sorority girls,sorority recruitment,bama rush,alabama rush,bama rush documentary,bama rush tiktok,alabama rush tiktok,greek life pros and cons,sorority recruitment video,sorority explained,sorority life,fraternity life,hazing,college life,college,bama rush explained,rush week vlog,sorority rush week,the truth about greek life,fraternities,rush
https://wn.com/Inside_Greek_Life_The_Cult_Like_Secrets_Of_Sororities_Fraternities
The Toxicity of Greek Life
5:03

The Toxicity of Greek Life

  • Order:
  • Duration: 5:03
  • Uploaded Date: 18 Aug 2022
  • views: 44222
Hazing, sexual abuse, racism. These people are speaking out against what they've experienced in a college sorority. 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 #brut #brutamerica #bamarush #alabama Discover More Brut: ▶︎ https://brut.media/us ▶︎ FB: https://facebook.com/brutamerica ▶︎ IG: https://instagram.com/brutamerica ▶︎ TW: https://twitter.com/brutamerica
https://wn.com/The_Toxicity_Of_Greek_Life
History of Fraternities and Sororities
3:00

History of Fraternities and Sororities

  • Order:
  • Duration: 3:00
  • Uploaded Date: 02 Jun 2017
  • views: 32285
https://wn.com/History_Of_Fraternities_And_Sororities
The history of Black sororities and fraternities
3:13

The history of Black sororities and fraternities

  • Order:
  • Duration: 3:13
  • Uploaded Date: 04 Feb 2021
  • views: 81114
Black Greek letter organizations date back to the early 1900s.
https://wn.com/The_History_Of_Black_Sororities_And_Fraternities
Grieving Parents Share Sons’ Fraternity Hazing Stories
7:56

Grieving Parents Share Sons’ Fraternity Hazing Stories

  • Order:
  • Duration: 7:56
  • Uploaded Date: 26 Oct 2022
  • views: 571942
Seven families share a common bond of their loved ones being killed or harmed by fraternity hazing rituals. According to published reports, there have been close to 80 college students who died in hazing incidents connected to Greek life in the past 15 years. Danny Santulli suffered cardiac arrest from alcohol poisoning after being pressured to drink the equivalent of 20 shots. Now, Santulli is confined to a wheelchair and has permanent brain damage.
https://wn.com/Grieving_Parents_Share_Sons’_Fraternity_Hazing_Stories
Ask An American: University Sororities & Fraternities
10:32

Ask An American: University Sororities & Fraternities

  • Order:
  • Duration: 10:32
  • Uploaded Date: 04 May 2016
  • views: 100587
What goes on in sororities and fraternities in American universities? Are they a big thing? How do you join? And how about me?!! Was I part of one? Don't forget to subscribe for more videos, every Sunday and the new mid-week Ask an American series! More fun stuff here: Hang out with me on Facebook: https://www.facebook.com/WantedAdventure Chill with me on Twitter: https://twitter.com/WantedAdventure Wave to me on Google+ as you drive by: https://plus.google.com/+WantedAdventure
https://wn.com/Ask_An_American_University_Sororities_Fraternities
Prayers For Sororities & Fraternities-Restoration & Redemption | Courage To Leave
28:30

Prayers For Sororities & Fraternities-Restoration & Redemption | Courage To Leave

  • Order:
  • Duration: 28:30
  • Uploaded Date: 15 Aug 2024
  • views: 6
https://wn.com/Prayers_For_Sororities_Fraternities_Restoration_Redemption_|_Courage_To_Leave
The story of 9 historically Black fraternities and sororities l GMA
8:18

The story of 9 historically Black fraternities and sororities l GMA

  • Order:
  • Duration: 8:18
  • Uploaded Date: 28 Feb 2023
  • views: 102168
Plus, Howard University students who are members of the groups within the National Pan-Hellenic Council, also known as The Divine Nine, perform a Unity Step. SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Twitter: https://twitter.com/gma WATCH: https://abc.go.com/shows/good-morning-america https://hulu.tv/3WXqiTV #gma #hbcu #greeklife #howarduniversity #divinenine #steps
https://wn.com/The_Story_Of_9_Historically_Black_Fraternities_And_Sororities_L_Gma
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Why colleges tolerate fraternities
    7:05
    Why colleges tolerate fraternitiesremove from playlist
  • If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)
    6:59
    If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)remove from playlist
  • Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternities
    23:48
    Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternitiesremove from playlist
  • The Toxicity of Greek Life
    5:03
    The Toxicity of Greek Liferemove from playlist
  • Grieving Parents Share Sons’ Fraternity Hazing Stories
    7:56
    Grieving Parents Share Sons’ Fraternity Hazing Storiesremove from playlist
  • Ask An American: University Sororities & Fraternities
    10:32
    Ask An American: University Sororities & Fraternitiesremove from playlist
  • The story of 9 historically Black fraternities and sororities l GMA
    8:18
    The story of 9 historically Black fraternities and sororities l GMAremove from playlist
developed with YouTube
PLAYLIST TIME:

Why colleges tolerate fraternities

Frats are... fratty. Why do colleges keep them around? Follow Overrated on Facebook Watch: https://www.facebook.com/OverratedTheShow/ In this episode of Overrated, Vox’s Phil Edwards explores the history of frats. The history of fraternities has a lot of ups and downs — and stretches all the way back to America’s founding fathers. Beyond the hazing and beer chugging, there’s a story that includes changes in higher education and even national politics. So why do colleges keep fraternities on campus? The reason is a web of incentives that make fraternities allies to administrators — despite the negatives they sometimes present. Overrated is a series that takes a look at the things we all know — the books, the trends, and the ideas that have become iconic — and answers the question: “Why is this so famous"? Watch the previous episode of Overrated: https://www.youtube.com/watch?v=-eO92ABfq2I Watch Season 1 of Overrated here: https://www.youtube.com/watch?v=YSVlSmZWzm0&list=PLJ8cMiYb3G5elLvDjph8cAd91weWxBfyN Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com. Subscribe to our channel! http://goo.gl/0bsAjO Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on Facebook: http://goo.gl/U2g06o Or Twitter: http://goo.gl/XFrZ5H
7:05
Why colleges tolerate fraternities
Frats are... fratty. Why do colleges keep them around? Follow Overrated on Facebook Watch...
published: 24 Sep 2018
Play in Full Screen
6:59
If Frats and Sororities Were Honest - Honest Ads (College Greek Life Parody)
College is going to be one of the biggest investments of your life, so why not spend a lit...
published: 15 Oct 2023
Play in Full Screen
23:48
Inside Greek Life: The Cult-Like Secrets of Sororities & Fraternities
Use code ISABELLA55 to get 55% off your first month at Drift.co https://drft.info/3NE5pfn ...
published: 30 Jun 2023
Play in Full Screen
5:03
The Toxicity of Greek Life
Hazing, sexual abuse, racism. These people are speaking out against what they've experienc...
published: 18 Aug 2022
Play in Full Screen
3:00
History of Fraternities and Sororities
published: 02 Jun 2017
Play in Full Screen
3:13
The history of Black sororities and fraternities
Black Greek letter organizations date back to the early 1900s.
published: 04 Feb 2021
Play in Full Screen
7:56
Grieving Parents Share Sons’ Fraternity Hazing Stories
Seven families share a common bond of their loved ones being killed or harmed by fraternit...
published: 26 Oct 2022
Play in Full Screen
10:32
Ask An American: University Sororities & Fraternities
What goes on in sororities and fraternities in American universities? Are they a big thing...
published: 04 May 2016
Play in Full Screen
28:30
Prayers For Sororities & Fraternities-Restoration & Redemption | Courage To Leave
published: 15 Aug 2024
Play in Full Screen
8:18
The story of 9 historically Black fraternities and sororities l GMA
Plus, Howard University students who are members of the groups within the National Pan-Hel...
published: 28 Feb 2023
Play in Full Screen

Fraternities and sororities

Fraternities and sororities are social organizations at colleges and universities. A form of the social fraternity, they are prominent in the United States, Canada, and the Philippines, with smaller numbers existing in France, the United Kingdom, and elsewhere. Similar organizations exist in other countries as well, including the Studentenverbindungen of German-speaking countries.

Similar, but much less common, organizations also exist for secondary school students. In modern usage, the term "Greek letter organization" ("GLO") is often synonymous with the terms "fraternity" and "sorority." Two additional types of fraternities, professional fraternities and honor societies, incorporate some limited elements of traditional fraternity organization but are generally considered a different type of association. Traditional fraternities of the type described in this article are often called "social fraternities."

Generally, membership in a fraternity or sorority is obtained while an undergraduate student but continues, thereafter, for life. Some of these organizations can accept graduate students as well as undergraduates, per constitutional provisions.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: sororities

Edit

Killeen sorority announces annual prayer breakfast

Killeen Daily Herald 14 Jan 2025
The Killeen Alumnae Chapter of Delta, Sigma Theta Sorority, Inc. invites the public to “Unify our Community” at a free prayer breakfast on Saturday ....
Edit

Sigma Gamma Rho Sorority, Inc. hosts successful coat initiative

The Valdosta Daily Times 14 Jan 2025
Submitted photo. Submitted photo. VALDOSTA — The success of the coat drive would not have been possible without monetary donations and coat donations from friends, family, and local businesses ... — Ace Electric. Email newsletter signup ... .
Edit

Killeen sorority chapter holds R.E.D. Volution Throwback event Sunday

Killeen Daily Herald 13 Jan 2025
In a sea of red — red shirts, red hats, red shoes — members and friends of the Killeen Alumnae Chapter of Delta Sigma Theta Sorority, Inc. enjoyed a 90s R.E.D. Volution Throwback event at the Killeen Civic and Conference ....
Edit

It's Time for Congress to Ban Fraternities—Sororities, Too | Opinion

Newsweek 10 Jan 2025
If gangs were visiting this kind of damage upon our kids, we would call in the National Guard. When frats do it, we go to the movies ....
Edit

Seven months after ruling, future of Wyoming transgender-sorority suit remains uncertain

Victoria Advocate 09 Jan 2025
CHEYENNE — For nearly seven months, the high-profile lawsuit challenging a University of Wyoming sorority for admitting a transgender woman has sat pending in federal court, but not for lack of a ruling ....
Edit

Legislators to Celebrate Delta Sigma Theta Sorority, Inc.’s 112 Years of Service on Founders Day with House Resolution (Georgia General Assembly)

Public Technologies 09 Jan 2025
To commemorate the milestone, these legislators will introduce a House Resolution, LC 112 2652, on the first day of the 2025-2026 Session, recognizing January 13, 2025, as Delta Sigma Theta Sorority's Founders Day ... Delta Sigma Theta Sorority Inc.
Edit

Legislators to Celebrate Delta Sigma Theta Sorority, Inc.’s 112 Years of Service on Founders Day with House Resolution (Georgia House of Representatives)

Public Technologies 09 Jan 2025
To commemorate the milestone, these legislators will introduce a House Resolution, LC 112 2652, on the first day of the 2025-2026 Session, recognizing January 13, 2025, as Delta Sigma Theta Sorority's Founders Day ... Delta Sigma Theta Sorority Inc.
Edit

Druin elected VP of Standards at UK sorority

The Pioneer News 09 Jan 2025
“I am truly honored to represent my sorority at this summit, and am eager to make new connections, gain valuable insights, and contribute to the exchange of ideas that will help strengthen our chapter and our national sisterhood,” said Druin.
Edit

Beta Sigma Phi sorority celebrates the season

The Panola Watchman 07 Jan 2025
Preceptor Epsilon Tau members of Beta Sigma Phi celebrated their December meeting with a delicious meal provided by hostesses Wynell Steptoe, Judy Holder and Sandy Griffin ....
Edit

Cebu frats, sororities pledge support for peaceful Sinulog 2025 parade

Sun Star 06 Jan 2025
FRATERNITIES and sororities in Cebu City signed a pledge with the Cebu City Police Office to assist in maintaining peace and order during the Sinulog Grand Parade on January 19, 2025.
Edit

Duplin County Alumnae Chapter Delta Sigma Theta Sorority donates to local dialysis patients

Reflector 04 Jan 2025
The Duplin County Alumnae Chapter of Delta Sigma Theta Sorority, Inc., continues to impact the lives of the citizens in Duplin and northern Pender Counties. The members realize some of the needs that confront this population, and it is their ... .
Edit

Ohio court transfers second transgender-sorority case to Wyoming

Billings Gazette 23 Dec 2024
An Ohio court transferred a lawsuit Thursday to Wyoming’s U.S. District Court because of its similarity to a high-profile case involving Kappa Kappa Gamma at the University of Wyoming and its admission of a transgender woman ... .

Most Viewed

×