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

Sexual assault

Sexual assault is any involuntary sexual act in which a person is coerced or physically forced to engage against their will, or any non-consensual sexual touching of a person. Sexual assault is a form of sexual violence, and it includes rape (such as forced vaginal, anal or oral penetration or drug facilitated sexual assault), groping, forced kissing, child sexual abuse, or the torture of the person in a sexual manner.

In legal terms, sexual assault is a statutory offense in various jurisdictions, including the United States, Canada, England and Wales, Ireland, and Scotland. The legal definition of the crime of sexual assault is determined by each jurisdiction. Specific legal jurisdictions and research often use highly technical or detailed definitions of the term. In some places, such as New South Wales, the crime of sexual assault has replaced the traditional crime of rape, and is being defined as non-consensual penetrative sex. By contrast, in other jurisdictions, the crime deals with non-penetrative sexual contact.

Sexual Assault (band)

Sexual Assault was a misogynist Canadian punk band from St. Catharines, Ontario. Their songs tend to be about drinking, doing drugs, and social satire. They formed in early 2008, a four piece band. After a few months, they added another member, female vocalist, "H-Ivey".

History

Controversy

the band was developing notoriety due to a campaign, led by the Niagara Sexual Assault Center, and Feminine Action Collective trying to get the band to change its name. Opposing groups say the band is violating human rights and turning Sexual Assault into a casual issue. The band denies such claims, saying that their name and music are open to interpretation.

Music

Most of their music revolved around binge drinking, consuming large amounts of marijuana, and touches lightly from time to time on societal issues. They were very passionate and open about their distaste for the Emo genre. Some song titles include:

  • "Das Boot"
  • "Carrol Is a Feminist"
  • "Beer Patriot"
  • "Emo Sucks"
  • "Taking Back the South"
  • Podcasts:

    • What Is Sexual Assault?

      What is Sexual Assault? Talking about sexual consent can be uncomfortable but it's important to understand what behaviors are categorized as Sexual Assault. Check out our new video to learn more. #metoo Please like, share and subscribe to AMAZE! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeOrg http://amaze.org/ ------------ Translation Credits: HERA North Macedonia: Macedonian [AMZ-041]

      published: 13 Sep 2019
    • Sexual assault suspect leads LAPD on hour-long chase

      A sexual assault suspect out of the Boston area was taken into custody Thursday after a lengthy chase through Los Angeles. #shortsvideo #shortsfeed #shortsfeed #shortsviral #shorts

      published: 09 Aug 2024
    • Teenagers and Sexual Abuse

      For teens with new independence can come the unexpected--sometimes the unexpected is sexual abuse. Our characters share stories to start the conversation about preventing sexual abuse.

      published: 12 May 2020
    • Dealing With Past Sexual Abuse

      Dealing with the aftermath of sexual abuse can be tough. Many people experience a wide range of emotions. It's important to know that you are not alone. Here at AMAZE, we hear you, we see you, and we are here to help you! For more info, RAINN provides several important tools: ● National Sexual Assault Hotline (available 24/7): 800-656-HOPE (4673) ● National Sexual Assault Online Hotline (live chat) ● Visit RAINN.org for additional resources tailored for several groups, including Asian, Native Hawaiian, and Pacific Islander survivors; Black survivors; Indigenous survivors; Latinx survivors; LGBTQ survivors; immigrant survivors; male survivors; survivors with disabilities, and more. ----------------- AMAZE takes the awkward out of sex ed. Real info in fun, animated videos that give yo...

      published: 28 Apr 2022
    • Sexual Abuse in the Family

      Emilia likes the attention and the gifts but sexual abuse can come from a relative or family member. We can see what that relationship might look like, how it might feel, and how to see your way out of it.

      published: 23 Apr 2020
    • How do you heal after the trauma of a sexual assault? | BBC Sounds

      Sex and relationship educator Esther de la Ford, dominatrix Miss Marilyn, doctor Cerys Barratt and Brenna Jessie of Rape Crisis Scotland discuss life after sexual assault. What does that life look like, how do you regain control of what’s happened to you and how do you reconnect with your body and feel sexual again? Details of organisations offering information and support on sexual abuse and violence are available at: https://www.bbc.co.uk/actionline ------------------------------------------------------------------------------------------------------------------------- Subscribe and 🔔 to BBC Sounds YouTube 👉 https://www.youtube.com/c/bbcsounds?sub_confirmation=1 Listen to the full episode here 👉 https://www.bbc.co.uk/sounds/play/p09hg47n Find more episodes of @bbcradio4's Tricky her...

      published: 02 Jun 2021
    • Former PCSD sergeant on trial for alleged sexual assault

      Former PCSD sergeant on trial for alleged sexual assault

      published: 03 Dec 2024
    • Sexual Assault of Men Played for Laughs - Part 1 Male Perpetrators

      Help me make more videos! https://www.patreon.com/popdetective WATCH PART 2: https://youtu.be/9nheskbsU5g It’s hard to overstate just how common jokes about men being sexually assaulted or sexually harassed are in entertainment media. Comedic situations are typically designed to demean, humiliate, or emasculate a male character for being the victim, or potential victim, of sexual violence. This is the 1st of two video essays on this topic. Part 1 focuses on humor involving men sexually assaulting or harassing other men. Part 2 examines media in which women are depicted as the perpetrators. PATREON Support this project on Patreon: https://www.patreon.com/popdetective PAYPAL Make a one-time donation via PayPal: https://www.paypal.me/popdetective WISHLIST Send research materials for vi...

      published: 11 Feb 2019
    • Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentaries

      Immigrant detention is expanding under the Trump administration, increasing the risk of sexual assault in a system where abuse is not uncommon. Two women told us their stories of being sexually abused by guards while under the custody of ICE. Subscribe: http://bit.ly/U8Ys7n More from The New York Times Video: http://nytimes.com/video ---------- Whether it's reporting on conflicts abroad and political divisions at home, or covering the latest style trends and scientific developments, New York Times video journalists provide a revealing and unforgettable view of the world. It's all the news that's fit to watch.

      published: 17 Jul 2018
    • Sexual Abuse Can Happen to Anyone

      If you or someone you know was touched in a way that was not okay or if you were forced to touch someone else in a way that makes you uncomfortable, don’t keep it a secret. Even if the person who did this is an adult or an older kid who told you not to tell anyone, you should tell someone. Tell someone you trust—like a parent, family member, teacher, friend’s parent or neighbor. If the first person you tell doesn’t do anything, tell someone else you trust. Keep telling adults you trust until you get help. ------ Please like, share and subscribe to AMAZE! Review us on CommonSense too! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeOrg http://amaze.org/ https://www.commonsensemedia.org/website-reviews/amaze #sexualabuse #sexualassault ...

      published: 12 Sep 2019
    What Is Sexual Assault?
    2:48

    What Is Sexual Assault?

    • Order:
    • Duration: 2:48
    • Uploaded Date: 13 Sep 2019
    • views: 288036
    What is Sexual Assault? Talking about sexual consent can be uncomfortable but it's important to understand what behaviors are categorized as Sexual Assault. Check out our new video to learn more. #metoo Please like, share and subscribe to AMAZE! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeOrg http://amaze.org/ ------------ Translation Credits: HERA North Macedonia: Macedonian [AMZ-041]
    https://wn.com/What_Is_Sexual_Assault
    Sexual assault suspect leads LAPD on hour-long chase
    0:58

    Sexual assault suspect leads LAPD on hour-long chase

    • Order:
    • Duration: 0:58
    • Uploaded Date: 09 Aug 2024
    • views: 125252
    A sexual assault suspect out of the Boston area was taken into custody Thursday after a lengthy chase through Los Angeles. #shortsvideo #shortsfeed #shortsfeed #shortsviral #shorts
    https://wn.com/Sexual_Assault_Suspect_Leads_Lapd_On_Hour_Long_Chase
    Teenagers and Sexual Abuse
    3:53

    Teenagers and Sexual Abuse

    • Order:
    • Duration: 3:53
    • Uploaded Date: 12 May 2020
    • views: 1317574
    For teens with new independence can come the unexpected--sometimes the unexpected is sexual abuse. Our characters share stories to start the conversation about preventing sexual abuse.
    https://wn.com/Teenagers_And_Sexual_Abuse
    Dealing With Past Sexual Abuse
    4:48

    Dealing With Past Sexual Abuse

    • Order:
    • Duration: 4:48
    • Uploaded Date: 28 Apr 2022
    • views: 653637
    Dealing with the aftermath of sexual abuse can be tough. Many people experience a wide range of emotions. It's important to know that you are not alone. Here at AMAZE, we hear you, we see you, and we are here to help you! For more info, RAINN provides several important tools: ● National Sexual Assault Hotline (available 24/7): 800-656-HOPE (4673) ● National Sexual Assault Online Hotline (live chat) ● Visit RAINN.org for additional resources tailored for several groups, including Asian, Native Hawaiian, and Pacific Islander survivors; Black survivors; Indigenous survivors; Latinx survivors; LGBTQ survivors; immigrant survivors; male survivors; survivors with disabilities, and more. ----------------- AMAZE takes the awkward out of sex ed. Real info in fun, animated videos that give you all the answers you actually want to know about sex, your body and relationships. Please like, share and subscribe to AMAZE! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeParents TikTok: AmazeOrg http://amaze.org/ ----------------- Translation Credits: HERA North Macedonia: Macedonian [AMZ-132]
    https://wn.com/Dealing_With_Past_Sexual_Abuse
    Sexual Abuse in the Family
    4:46

    Sexual Abuse in the Family

    • Order:
    • Duration: 4:46
    • Uploaded Date: 23 Apr 2020
    • views: 8424034
    Emilia likes the attention and the gifts but sexual abuse can come from a relative or family member. We can see what that relationship might look like, how it might feel, and how to see your way out of it.
    https://wn.com/Sexual_Abuse_In_The_Family
    How do you heal after the trauma of a sexual assault? | BBC Sounds
    3:48

    How do you heal after the trauma of a sexual assault? | BBC Sounds

    • Order:
    • Duration: 3:48
    • Uploaded Date: 02 Jun 2021
    • views: 10888
    Sex and relationship educator Esther de la Ford, dominatrix Miss Marilyn, doctor Cerys Barratt and Brenna Jessie of Rape Crisis Scotland discuss life after sexual assault. What does that life look like, how do you regain control of what’s happened to you and how do you reconnect with your body and feel sexual again? Details of organisations offering information and support on sexual abuse and violence are available at: https://www.bbc.co.uk/actionline ------------------------------------------------------------------------------------------------------------------------- Subscribe and 🔔 to BBC Sounds YouTube 👉 https://www.youtube.com/c/bbcsounds?sub_confirmation=1 Listen to the full episode here 👉 https://www.bbc.co.uk/sounds/play/p09hg47n Find more episodes of @bbcradio4's Tricky here 👉 https://www.bbc.co.uk/sounds/brand/p08qr8qh Tricky playlist 👉 https://www.youtube.com/playlist?list=PL4Z-TOtZ0iIMA-E3Qh8uUX6CkGlpd0N4H BBC Radio 4 Podcasts playlist 👉 https://www.youtube.com/playlist?list=PL4Z-TOtZ0iINHz4oQx7bKGHs8tsJIPtoc ------------------------------------------------------------------------------------------------------------------------- #SexualAssault #SexualViolence #BBCSounds How do you heal after the trauma of a sexual assault? | BBC Sounds We are BBC Sounds. The home of binge-worthy podcasts, music curated by music lovers and live radio.
    https://wn.com/How_Do_You_Heal_After_The_Trauma_Of_A_Sexual_Assault_|_BBC_Sounds
    Former PCSD sergeant on trial for alleged sexual assault
    1:47

    Former PCSD sergeant on trial for alleged sexual assault

    • Order:
    • Duration: 1:47
    • Uploaded Date: 03 Dec 2024
    • views: 55
    Former PCSD sergeant on trial for alleged sexual assault
    https://wn.com/Former_Pcsd_Sergeant_On_Trial_For_Alleged_Sexual_Assault
    Sexual Assault of Men Played for Laughs - Part 1 Male Perpetrators
    28:53

    Sexual Assault of Men Played for Laughs - Part 1 Male Perpetrators

    • Order:
    • Duration: 28:53
    • Uploaded Date: 11 Feb 2019
    • views: 5852363
    Help me make more videos! https://www.patreon.com/popdetective WATCH PART 2: https://youtu.be/9nheskbsU5g It’s hard to overstate just how common jokes about men being sexually assaulted or sexually harassed are in entertainment media. Comedic situations are typically designed to demean, humiliate, or emasculate a male character for being the victim, or potential victim, of sexual violence. This is the 1st of two video essays on this topic. Part 1 focuses on humor involving men sexually assaulting or harassing other men. Part 2 examines media in which women are depicted as the perpetrators. PATREON Support this project on Patreon: https://www.patreon.com/popdetective PAYPAL Make a one-time donation via PayPal: https://www.paypal.me/popdetective WISHLIST Send research materials for video essays: https://www.amazon.com/hz/wishlist/ls/VPZW4GU512ON?ref_=wl_share RESOURCES • How to support male survivors: https://www.rainn.org/articles/sexual-assault-men-and-boys • Black & Pink: http://www.blackandpink.org • Just Detention International: https://justdetention.org • Statistics and facts about sexual violence: https://www.rainn.org/statistics/victims-sexual-violence REFERENCES • Cameron Esposito's "Rape Jokes" standup special: https://www.cameronesposito.com • Terry Crews speaking to the US Congress: https://goo.gl/9BEF4h - The Rape Jokes We Still Laugh At | New York TImes https://www.youtube.com/watch?v=ikqPnAhRo-c • List of movies including jokes about men being abused: https://goo.gl/kdhYbA • List of TV shows including jokes about men being abused: https://goo.gl/BLe2Wf TEXT TRANSCRIPT http://popculturedetective.agency/2019/sexual-assault-of-men-played-for-comedy#more-7010 COMMENTS All YouTube comments are held for approval due to harassment of this channel. If you'd like to participate in constructive online conversations about this video, please share it on your social media networks. FAIR USE All multimedia clips included in this video constitute a 'fair use' of any copyrighted material as provided for in Section 107 of U.S. Copyright law, which allows for criticism, comment and scholarship. Learn more about fair use with this awesome app by New Media Rights! http://newmediarights.org/fairuse CREDITS Writer/Producer: Jonathan McIntosh Motion Graphics: Jonathan McIntosh Logo Design: Justin McIntosh Outro music: Jonathan Mann Help us caption & translate this video! https://amara.org/v/n9bo/
    https://wn.com/Sexual_Assault_Of_Men_Played_For_Laughs_Part_1_Male_Perpetrators
    Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentaries
    9:31

    Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentaries

    • Order:
    • Duration: 9:31
    • Uploaded Date: 17 Jul 2018
    • views: 108831
    Immigrant detention is expanding under the Trump administration, increasing the risk of sexual assault in a system where abuse is not uncommon. Two women told us their stories of being sexually abused by guards while under the custody of ICE. Subscribe: http://bit.ly/U8Ys7n More from The New York Times Video: http://nytimes.com/video ---------- Whether it's reporting on conflicts abroad and political divisions at home, or covering the latest style trends and scientific developments, New York Times video journalists provide a revealing and unforgettable view of the world. It's all the news that's fit to watch.
    https://wn.com/Sexual_Assault_Inside_Ice_Detention_2_Survivors_Tell_Their_Stories_|_Times_Documentaries
    Sexual Abuse Can Happen to Anyone
    3:11

    Sexual Abuse Can Happen to Anyone

    • Order:
    • Duration: 3:11
    • Uploaded Date: 12 Sep 2019
    • views: 311330
    If you or someone you know was touched in a way that was not okay or if you were forced to touch someone else in a way that makes you uncomfortable, don’t keep it a secret. Even if the person who did this is an adult or an older kid who told you not to tell anyone, you should tell someone. Tell someone you trust—like a parent, family member, teacher, friend’s parent or neighbor. If the first person you tell doesn’t do anything, tell someone else you trust. Keep telling adults you trust until you get help. ------ Please like, share and subscribe to AMAZE! Review us on CommonSense too! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeOrg http://amaze.org/ https://www.commonsensemedia.org/website-reviews/amaze #sexualabuse #sexualassault -------------- Translation Credits: Action for Youth: Vietnamese PILCON: Japanese [AMZ-091]
    https://wn.com/Sexual_Abuse_Can_Happen_To_Anyone
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • What Is Sexual Assault?
      2:48
      What Is Sexual Assault?remove from playlist
    • Sexual assault suspect leads LAPD on hour-long chase
      0:58
      Sexual assault suspect leads LAPD on hour-long chaseremove from playlist
    • Teenagers and Sexual Abuse
      3:53
      Teenagers and Sexual Abuseremove from playlist
    • Dealing With Past Sexual Abuse
      4:48
      Dealing With Past Sexual Abuseremove from playlist
    • Sexual Abuse in the Family
      4:46
      Sexual Abuse in the Familyremove from playlist
    • How do you heal after the trauma of a sexual assault? | BBC Sounds
      3:48
      How do you heal after the trauma of a sexual assault? | BBC Soundsremove from playlist
    • Sexual Assault of Men Played for Laughs - Part 1 Male Perpetrators
      28:53
      Sexual Assault of Men Played for Laughs - Part 1 Male Perpetratorsremove from playlist
    • Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentaries
      9:31
      Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentariesremove from playlist
    • Sexual Abuse Can Happen to Anyone
      3:11
      Sexual Abuse Can Happen to Anyoneremove from playlist
    PLAYLIST TIME:

    What Is Sexual Assault?

    What is Sexual Assault? Talking about sexual consent can be uncomfortable but it's important to understand what behaviors are categorized as Sexual Assault. Check out our new video to learn more. #metoo Please like, share and subscribe to AMAZE! Follow us on Snap and Insta for more info about puberty and growing up. Snap: AmazeOrg Insta: AmazeOrg http://amaze.org/ ------------ Translation Credits: HERA North Macedonia: Macedonian [AMZ-041]
    2:48
    What Is Sexual Assault?
    What is Sexual Assault? Talking about sexual consent can be uncomfortable but it's importa...
    published: 13 Sep 2019
    Play in Full Screen
    0:58
    Sexual assault suspect leads LAPD on hour-long chase
    A sexual assault suspect out of the Boston area was taken into custody Thursday after a le...
    published: 09 Aug 2024
    Play in Full Screen
    3:53
    Teenagers and Sexual Abuse
    For teens with new independence can come the unexpected--sometimes the unexpected is sexua...
    published: 12 May 2020
    Play in Full Screen
    4:48
    Dealing With Past Sexual Abuse
    Dealing with the aftermath of sexual abuse can be tough. Many people experience a wide ran...
    published: 28 Apr 2022
    Play in Full Screen
    4:46
    Sexual Abuse in the Family
    Emilia likes the attention and the gifts but sexual abuse can come from a relative or fami...
    published: 23 Apr 2020
    Play in Full Screen
    3:48
    How do you heal after the trauma of a sexual assault? | BBC Sounds
    Sex and relationship educator Esther de la Ford, dominatrix Miss Marilyn, doctor Cerys Bar...
    published: 02 Jun 2021
    Play in Full Screen
    1:47
    Former PCSD sergeant on trial for alleged sexual assault
    Former PCSD sergeant on trial for alleged sexual assault
    published: 03 Dec 2024
    Play in Full Screen
    28:53
    Sexual Assault of Men Played for Laughs - Part 1 Male Perpetrators
    Help me make more videos! https://www.patreon.com/popdetective WATCH PART 2: https://yo...
    published: 11 Feb 2019
    Play in Full Screen
    9:31
    Sexual Assault Inside ICE Detention: 2 Survivors Tell Their Stories | Times Documentaries
    Immigrant detention is expanding under the Trump administration, increasing the risk of se...
    published: 17 Jul 2018
    Play in Full Screen
    3:11
    Sexual Abuse Can Happen to Anyone
    If you or someone you know was touched in a way that was not okay or if you were forced to...
    published: 12 Sep 2019
    Play in Full Screen

    Sexual assault

    Sexual assault is any involuntary sexual act in which a person is coerced or physically forced to engage against their will, or any non-consensual sexual touching of a person. Sexual assault is a form of sexual violence, and it includes rape (such as forced vaginal, anal or oral penetration or drug facilitated sexual assault), groping, forced kissing, child sexual abuse, or the torture of the person in a sexual manner.

    In legal terms, sexual assault is a statutory offense in various jurisdictions, including the United States, Canada, England and Wales, Ireland, and Scotland. The legal definition of the crime of sexual assault is determined by each jurisdiction. Specific legal jurisdictions and research often use highly technical or detailed definitions of the term. In some places, such as New South Wales, the crime of sexual assault has replaced the traditional crime of rape, and is being defined as non-consensual penetrative sex. By contrast, in other jurisdictions, the crime deals with non-penetrative sexual contact.

    '); } 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: sexual assault

    Edit

    Woman sexually assaulted while cleaning Fort Lauderdale Airbnb files lawsuit

    Sun Sentinel 03 Apr 2025
    A woman who was sexually assaulted last August while cleaning an Airbnb in Fort Lauderdale has filed a lawsuit against the company and the property owner — and is still waiting to see the unidentified perpetrator arrested seven months later.
    Edit

    Kenyan diplomat leaves India with son accused of sexual assault

    Hindustan Times 03 Apr 2025
    Delhi Police registered an FIR on September 19, 2023, under Section 10 (aggravated sexual assault) of the Pocso Act and Section 75(2) (sexual harassment) of the Bharatiya Nyaya Sanhita ... sexual assault.
    Edit

    Sexual assault charges added to domestic violence case

    Rutland Herald 03 Apr 2025
    A Shrewsbury man has had sexual assault charges added to the domestic assault charges that landed him in jail earlier this year ....
    Edit

    Julia Roberts Is Caught in a Sexual Assault Scandal in First Look at Luca Guadagnino’s ...

    The Wrap 03 Apr 2025
    ... Garfield’s character assaulted her ... The post Julia Roberts Is Caught in a Sexual Assault Scandal in First Look at Luca Guadagnino’s ‘After the Hunt’ appeared first on TheWrap.
    Edit

    Wildwood man accused of sexually assaulting minor

    Atlantic City 03 Apr 2025
    A Wildwood man was arrested Tuesday after he allegedly sexually assaulted a child on several occasions, the Cape May County Prosecutor's Office said ... .
    Edit

    Businessman accused of sexual assault loses 'unacceptable' bail relaxation bid

    Australian Broadcasting Corporation 03 Apr 2025
    An Adelaide businessman accused of sexually assaulting nine women over two decades has been ordered to stand trial, and lost a request to have his home detention bail conditions relaxed ... .
    Edit

    Sexual assault survivors in Denver spread message through art

    CBS News 03 Apr 2025
    The Blue Bench annual survivor art show is all about believing survivors of sexual assault ....
    Edit

    Sean 'Diddy' Combs accused of drugging and 'sexually maiming' man in new lawsuit

    The Star - Shelby 03 Apr 2025
    A month before he's set to go to trial, Sean "Diddy" Combs has been accused of taking part in the drugging and sexual assault of a man as part of an "organized criminal enterprise.".
    Edit

    ‘Disconcerting, unnerving’: Anger at German backpacker’s alleged gang rapists getting bail

    NewstalkZB 03 Apr 2025
    A sexual assault victims’ advocate and a retired university law professor have voiced strong concerns about three men accused of gang raping a German tourist in central Auckland being granted bail.
    Edit

    Commentary: Sexual assault is not 'someone else's problem'

    The Post and Courier 03 Apr 2025
    We are raised to believe that rape is a horrifying but rare occurrence. A crime that happens in dark alleys. A crime committed by terrifying strangers. A crime that the victim could probably have prevented if she weren’t out at ... .
    Edit

    'Australia doesn't care about me': women international students suffering alarming rates of sexual violence

    Beijing News 03 Apr 2025
    It referred to "unwanted sexual experiences" rather than talking about "sexual assault", to try to reduce participant discomfort ... since starting university, and one in 20 had been sexually assaulted.
    Edit

    Gary Busey legal troubles continue over claims from the 2022 Monster-Mania in Cherry Hill

    Burlington County Times 03 Apr 2025
    It contends the actor “also sexually assaulted additional individuals” at the show in August 2022 ... Among other claims, the suit asserts the women were “targeted, coerced and sexually assaulted as a result of being female.”.
    Edit

    ‘Grotesque violation’: ‘Depraved’ predator secretly filmed 22 women and girls using spy cameras

    NewstalkZB 03 Apr 2025
    If you’ve ever experienced sexual assault or abuse and need to talk to someone, contact&nbsp;Safe to Talk confidentially, any time 24/7. ... If you have been sexually assaulted, remember it’s not your fault.
    Edit

    Jean-Claude Van Damme accused in human trafficking case; accepted 'five Romanian women as a gift' during Cannes event

    The Times of India 03 Apr 2025
    ... been filed against the actor for allegedly engaging in sexual relations with trafficked women ... Since his arrest, several other victims came forward to state instances of sexual assault by the singer.
    ×