Apparently Sam Smith Is Not a Man

1 year ago 130 ViewsGo Pro for $9.99


Pop culture news outlet PopCrave recently tweeted that “no men” were nominated for best music video at the VMAs, despite Sam Smith being in the very picture of nominees that they posted along with it. Plus a Norwegian student identifies as a woman to take advantage of his university’s diversity quotas, the Library of Congress apologizes for using someone’s wrong pronouns, and are Gen Z young women confused about whether they want to be pursued by men? Let’s get into it.

Get my weekly email update!
https://www.prageru.com/series/unapologetic?utm_medium=post&utm_source=youtube_amala&utm_campaign

Join the Unapologetic Discord Server: https://discord.gg/unapologetic

Watch or Listen on Spotify: https://open.spotify.com/show/3Zq6iX6bOQtNkcX9zlTa4G?si=536db43b1988481e
Apple Podcasts: https://podcasts.apple.com/us/podcast/unapologetic-with-amala/id1519347166

Follow Me on Social Media:
Instagram: https://www.instagram.com/theamalaekpunobi
TikTok: https://www.tiktok.com/@amalaekpunobi
Twitter: https://twitter.com/amalaekpunobi

0:00 – Sam Smith Is Not a Man?
18:02 – Norwegian Student Exploits Gender Loophole
25:51 – Do White People Have Culture?
34:46 – Gen Z Girl’s Viral Breakup Take
40:20 – Victoria’s Secret’s Viral Throwback Campaign
44:03 – Superchats!

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
document.addEventListener('click', function (event) { const isMemberToggle = event.target.matches('#toggleMembers'); const isPostToggle = event.target.matches('#togglePosts'); if (isMemberToggle) { membersSection.classList.remove('d-none'); postsSection.classList.add('d-none'); toggleMembers.classList.add('active'); togglePosts.classList.remove('active'); // Hide pagination links const paginationLinks = document.querySelector('.nav-links'); if (paginationLinks) { paginationLinks.style.display = 'none'; } } if (isPostToggle) { postsSection.classList.remove('d-none'); membersSection.classList.add('d-none'); togglePosts.classList.add('active'); toggleMembers.classList.remove('active'); // Show pagination links const paginationLinks = document.querySelector('.nav-links'); if (paginationLinks) { paginationLinks.style.display = 'block'; } } }); document.addEventListener('DOMContentLoaded', function() { // Toggle posts const togglePostsButton = document.querySelector('.toggle-posts'); const recentPostsContainer = document.getElementById('recent-posts-container'); if (togglePostsButton) { togglePostsButton.addEventListener('click', function() { if (recentPostsContainer.style.display === 'none' || recentPostsContainer.style.display === '') { recentPostsContainer.style.display = 'block'; // Show posts togglePostsButton.textContent = 'Hide Posts'; // Change button text } else { recentPostsContainer.style.display = 'none'; // Hide posts togglePostsButton.textContent = 'Recent Posts'; // Change button text } }); } // Toggle current post description const toggleDescriptionButton = document.querySelector('.toggle-description'); const currentPostDescription = document.querySelector('.current-post-description'); if (toggleDescriptionButton) { toggleDescriptionButton.addEventListener('click', function() { if (currentPostDescription.style.display === 'none' || currentPostDescription.style.display === '') { currentPostDescription.style.display = 'block'; // Show description toggleDescriptionButton.textContent = 'Hide Description'; // Change button text } else { currentPostDescription.style.display = 'none'; // Hide description toggleDescriptionButton.textContent = 'Description'; // Change button text } }); } }); document.addEventListener('DOMContentLoaded', function() { var toggleButton = document.getElementById('sidebar-toggle'); var sidebar = document.getElementById('sticky-sidebar'); // Set initial sidebar state (open by default) function setInitialState() { if (localStorage.getItem('sidebarState') === 'inactive') { sidebar.classList.add('active', 'sidebar-active'); // Open if previously inactive } else { sidebar.classList.remove('active', 'sidebar-active'); // Start closed } } setInitialState(); // Toggle sidebar on button click toggleButton.addEventListener('click', function() { sidebar.classList.toggle('active'); // Toggle the active class sidebar.classList.toggle('sidebar-active'); // Toggle the sidebar-active class // Update localStorage with current state localStorage.setItem('sidebarState', sidebar.classList.contains('active') ? 'inactive' : 'active'); }); // Function to check window size function checkWindowSize() { // If window is between 1500px and 1600px if (window.innerWidth >= 1500 && window.innerWidth < 1600) { // Close the sidebar if it's currently open (inactive) if (!sidebar.classList.contains('active')) { sidebar.classList.add('active', 'sidebar-active'); // Close sidebar localStorage.setItem('sidebarState', 'inactive'); } } else if (window.innerWidth >= 1600) { // If the window is resized back above 1600px, open the sidebar if it was previously inactive if (localStorage.getItem('sidebarState') === 'inactive') { sidebar.classList.remove('active', 'sidebar-active'); // Open sidebar } } } // Add resize event listener window.addEventListener('resize', checkWindowSize); }); function removeNotification(notificationId) { fetch(ajax_object.ajax_url, { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest' }, body: JSON.stringify({ action: 'remove_notification', id: notificationId }) }) .then(response => response.json()) .then(data => { if (data.success) { // Permanently remove the notification from the DOM const notificationItem = document.querySelector(`[data-notification-id="${notificationId}"]`); if (notificationItem) { notificationItem.remove(); } } }) .catch(error => console.error('Error:', error)); }