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

Psychology

Psychology is the study of mind and behavior. It is an academic discipline and an applied science which seeks to understand individuals and groups by establishing general principles and researching specific cases. In this field, a professional practitioner or researcher is called a psychologist and can be classified as a social, behavioral, or cognitive scientist. Psychologists attempt to understand the role of mental functions in individual and social behavior, while also exploring the physiological and biological processes that underlie cognitive functions and behaviors.

Psychologists explore concepts such as perception, cognition, attention, emotion, intelligence, phenomenology, motivation, brain functioning, personality, behavior, and interpersonal relationships, including psychological resilience, family resilience, and other areas. Psychologists of diverse orientations also consider the unconscious mind. Psychologists employ empirical methods to infer causal and correlational relationships between psychosocial variables. In addition, or in opposition, to employing empirical and deductive methods, some—especially clinical and counseling psychologists—at times rely upon symbolic interpretation and other inductive techniques. Psychology has been described as a "hub science", with psychological findings linking to research and perspectives from the social sciences, natural sciences, medicine, humanities, and philosophy.

Scientific Research Publishing

Scientific Research Publishing (SCIRP) is an academic publisher of peer-reviewed open-access electronic journals, conference proceedings, and scientific anthologies.As of December 2014, it offers 244English language open access journals in the areas of science, technology, business, economy, and medicine. Its principal place of business is in Wuhan, China.

The company has been accused of being a predatory open access publisher and of using email spam to solicit papers for submission. In 2014 there was a mass resignation of the editorial board of one of the company's journals, with the outgoing Editor-in-Chief saying of the publisher "For them it was only about making money. We were simply their 'front'."

Open access type

According to its website, SCIRP publishes fee-based open-access journals (Gold OA). Payments are incurred per article published. Authors are permitted to archive their work (Green OA). Preprint, postprint, and the publisher's PDF version may be used. According to the society's website, journals published are fully open access, with reuse rights based on CC-BY or CC BY-NC. All of its journals are archived by PORTICO.

Psychology (album)

Psychology (2005) is the first album by Discover America (Chris Staples) on Tooth & Nail Records. It was performed, produced, and fully recorded/engineered by Chris Staples.

Track listing

(all songs written by Chris Staples except where noted)

  • "Call It in the Air" – 3:28
  • "1986" (Staples / Gio Lugo) – 3:49
  • "From the 100th Floor" – 3:14
  • "Stark Honesty" – 3:31
  • "Green Eyes" – 3:54
  • "Tight Rope Walker" – 4:10
  • "Phantom Treasure" – 3:27
  • "Shiny Teeth" – 4:31
  • "The Halves That Make Us Whole" – 4:41
  • "Everything Changes" (Staples / Adrien Hulet) – 3:48

  • Podcasts:

    • Intro to Psychology: Crash Course Psychology #1

      What does Psychology mean? Where does it come from? Hank gives you a 10-minute intro to one of the more tricky sciences and talks about some of the big names in the development of the field. Welcome to Crash Course Psychology!!! Want more videos about psychology? Check out our sister channel SciShow Psych at https://www.youtube.com/scishowpsych! -- Chapters: Introduction: What is Psychology? 00:00 Early Thinkers in Psychology 0:46 Big Questions in Psychology 1:31 Sigmund Freud 2:21 Disciplines of Psychology 3:02 Structuralism 3:29 Functionalism 4:28 Psychoanalysis 4:58 Freud's Death & Legacy 7:01 Behaviorism 7:51 Psychodynamic Theories 8:21 Other Disciplines in Psychology 8:37 Credits 10:09 Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com...

      published: 04 Feb 2014
    • ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology

      ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology #DerekDaily #Drphyopaing #Marketing #Digital Marketing #MarketingMyanmar #Motivation

      published: 27 Mar 2023
    • The Psychology of Pretty Privilege

      What is pretty privilege? "Pretty privilege" refers to the societal advantage or preferential treatment that individuals perceived as physically attractive may receive based on their appearance. In this insightful discussion, we explore the concept of pretty privilege and its impact on society. We will uncover the truth about this often misunderstood phenomenon and delve into the psychology behind it. Discover what pretty privilege is, why it exists, and the effects it has on individuals and relationships. We aim to shed light on the complexities of beauty standards and the privileges they afford. Whether you've personally experienced pretty privilege or want to gain a deeper understanding of its influence, this video is for you. Would you like us to make more "The Psychology Behind....

      published: 19 Jul 2023
    • 5 Psychology Facts About Quiet People

      Are you introverted or quiet? Or are you intrigued by the inner workings of quiet people and their fascinating psychological traits? This video is for you! In this video, we uncover Psychology Facts About Quiet People that will leave you with a deeper understanding and appreciation for the quiet individuals around you. Our aim is to foster understanding and empathy between introverts and extroverts, bridging the gap in communication and appreciation. Whether you're a quiet person seeking validation or an extrovert looking to better understand the quiet people in your life, this video will provide valuable insights and actionable tips. Are you used to being quiet but not sure why? We made an in-depth video about that too: https://youtu.be/RM3HeXYaN8c Writer: Dylan Swanepoel Editor: Mic...

      published: 01 Jun 2023
    • The Psychology of The Fool

      The fool is one of the most relatable, intriguing and recurring figures in the world. There have been fools who have caused surprise and laughter since time immemorial. We worship folly by seeing it in people and in the world and by willingly displaying it in ourselves. It is one of the timeless archetypes, which we all inherit at birth. Many of us suffer from the absence of the fool in our lives. Frenetic and upright, we take ourselves too seriously. As William Shakespeare said, “All the world’s a stage, and all the men and women merely players.” Forgetting that playfulness is a basic human need, we wonder why we so easily become bored and exhausted, losing all capacity for spontaneity, authenticity, and passion. The antidote to this would be to give the fool archetype some space in our ...

      published: 25 May 2023
    • The psychology of narcissism - W. Keith Campbell

      View full lesson: http://ed.ted.com/lessons/the-psychology-of-narcissism-w-keith-campbell Narcissism isn’t just a personality type that shows up in advice columns; it’s actually a set of traits classified and studied by psychologists. But what causes it? And can narcissists improve on their negative traits? W. Keith Campbell describes the psychology behind the elevated and sometimes detrimental self-involvement of narcissists. Lesson by W. Keith Campbell, animation by TOGETHER.

      published: 23 Feb 2016
    • The Psychology of Psychopaths - Predators who Walk Among Us

      Become a Supporting Member! ► http://academyofideas.com/members/ Access the transcript and art used in the video: https://academyofideas.com/2023/07/the-psychology-of-psychopaths-predators-who-walk-among-us/ Substack - https://theacademyofideas.substack.com/ Spotify - https://open.spotify.com/show/2dio7KUNuDHErlMumZtNt6 iTunes - https://podcasts.apple.com/ca/podcast/academy-of-ideas/id1364706343 Twitter - https://twitter.com/academyofideas Instagram - https://www.instagram.com/academyofideas/ Rumble - https://rumble.com/c/academyofideas Odysee - https://odysee.com/@academyofideas:3 Prefer to Support us with a One-Time Donation? Paypal ► https://www.paypal.me/academyofideas Bitcoin: 1P6ntukFENP1nvEf4bJNj3tsDEuiSyUFW6 Visit academyofideas.com for more content.

      published: 11 Jul 2023
    • 💜Psychology say :) #psychology #facts #tips #aesthetic #girl #boy #shorts 。(⁠✷⁠‿⁠✷⁠)。 🌷

      psychology say #psychology #cute #style #tips 🌷🌷🌷

      published: 24 May 2023
    • The Psychology of The Devil

      The Devil goes by many names: Satan, Lucifer, The Great Beast, Beelzebub, The Prince of Darkness. He is the adversary, the accuser, the tempter, the deceiver, and the one who divides from God. The Devil is incredibly wicked and evil, but also intelligent and witty – he is the father of all tricksters – that is what makes him so dangerous. The English word “devil” derives from the Greek diábolos (“the one who divides”). Diabolic is the term in contemporary English. The Greek verb dia-bollein literally means to tear apart. These divisions occur in almost every facet of our lives: race, sex, religion, politics, and economics. The demonic is an inversion of order. Temptation is the ordinary activity of the devil. It is a real thing for us in each and every day. It begins with deception, buyi...

      published: 24 Jun 2023
    • What Psychologists Know About Your Clutter That You Don't 👀

      Ever wondered why clutter seems to take over? Psychologists have revealed some insights about our links to possessions. Let's delve into the world of biases, distortions, and influence to understand what psychologists know (that you don't). ▷ Want my free resource library? Click here! https://miadanielle.lpages.co/free-resource-library ▷ Learn to create an amazing haven in an hour! ⇉ Holistic Clutter-Free Formula: https://bit.ly/towatchwrkshp ▷ Get started with minimalism in a quick kit ⇉ The Clutter-Free Starter Kit | https://miadanielle.lpages.co/starter-kit/ ▷ What's in my home? ⇉ https://www.amazon.com/shop/miadanielle ▷ Let's connect! ⇉ Website | https://miadanielle.com ⇉ Instagram | https://www.instagram.com/itsmiadanielle/ ⇉ Podcast: The Mind Your Home Podcast | http://a...

      published: 13 Jun 2023
    Intro to Psychology: Crash Course Psychology #1
    10:54

    Intro to Psychology: Crash Course Psychology #1

    • Order:
    • Duration: 10:54
    • Uploaded Date: 04 Feb 2014
    • views: 15860562
    What does Psychology mean? Where does it come from? Hank gives you a 10-minute intro to one of the more tricky sciences and talks about some of the big names in the development of the field. Welcome to Crash Course Psychology!!! Want more videos about psychology? Check out our sister channel SciShow Psych at https://www.youtube.com/scishowpsych! -- Chapters: Introduction: What is Psychology? 00:00 Early Thinkers in Psychology 0:46 Big Questions in Psychology 1:31 Sigmund Freud 2:21 Disciplines of Psychology 3:02 Structuralism 3:29 Functionalism 4:28 Psychoanalysis 4:58 Freud's Death & Legacy 7:01 Behaviorism 7:51 Psychodynamic Theories 8:21 Other Disciplines in Psychology 8:37 Credits 10:09 Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids
    https://wn.com/Intro_To_Psychology_Crash_Course_Psychology_1
    ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology
    18:32

    ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology

    • Order:
    • Duration: 18:32
    • Uploaded Date: 27 Mar 2023
    • views: 39395
    ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology #DerekDaily #Drphyopaing #Marketing #Digital Marketing #MarketingMyanmar #Motivation
    https://wn.com/ဒါတွေ_သိမထားရင်_တိုင်ပတ်လိမ့်မယ်_Dark_Psychology
    The Psychology of Pretty Privilege
    5:42

    The Psychology of Pretty Privilege

    • Order:
    • Duration: 5:42
    • Uploaded Date: 19 Jul 2023
    • views: 417086
    What is pretty privilege? "Pretty privilege" refers to the societal advantage or preferential treatment that individuals perceived as physically attractive may receive based on their appearance. In this insightful discussion, we explore the concept of pretty privilege and its impact on society. We will uncover the truth about this often misunderstood phenomenon and delve into the psychology behind it. Discover what pretty privilege is, why it exists, and the effects it has on individuals and relationships. We aim to shed light on the complexities of beauty standards and the privileges they afford. Whether you've personally experienced pretty privilege or want to gain a deeper understanding of its influence, this video is for you. Would you like us to make more "The Psychology Behind.." videos? Please let us know in the comments. We also made a video on "The Psychology Behind Why We Love Horror": https://youtu.be/Q52KLEuRmC0 #prettyprivilege #psychology Researcher/Writer: Morgan Swift Editor: Caitlin McColl Voice Over: Amanda Silvera (http://www.youtube.com/amandasilvera ) Script Manager: Kelly Soong Animator: Lesly YouTube Manager: Cindy Cheong Grab PSI plushy here: https://psych2go.shop/products/psych2go-plushie Discount code: "Loyalty" to get 15% off. Only first 50 people. Official Discord: https://discord.gg/EsWEvrJ Provide Feedback for this video: https://forms.gle/B1JAxZKn9XvJpXUQ7 References Ciurczak, E. (2018). Do you know the No. 1 factor in your child's academic success?. Hattiesburg American.www.hattiesburgamerican.com/story/news/education/2018/03/16/do-you-know-no-1-factor-your-childs-academic-success/416626002/ Harris, M. (2021). The Surprising Qualities That Make Someone Well-Liked. Psychology Today. www.psychologytoday.com/us/blog/letters-your-therapist/202110/the-surprising-qualities-make-someone-well-liked Hogg, V. Vaughan, G. (2022). Social Psychology (9th ed.). Pearson. www.pearson.com/en-gb/subject-catalog/p/social-psychology/P200000004473/9781292409061 Huddleston, T. (2022). Top psychologist: IQ is the No. 1 predictor of work success—especially combined with these 5 traits. CNBC. www.cnbc.com/2022/07/11/does-iq-determine-success-a-psychologist-weighs-in.html RHODES, G. (2006). The evolutionary psychology of facial beauty. Annual Review of Psychology, 57(1), 199–226. doi.org/10.1146/annurev.psych.57.102904.190208 Santos, R. (2022). It’s time to face the science of pretty privilege. VICE. www.vice.com/en/article/epz8pk/psychology-pretty-privilege-attractive-people Simon, O. (2021). Pretty Privilege: Why Bias Is Real and What We Can Do About It. LIFE Intelligence. www.lifeintelligence.io/blog/pretty-privilege-bias-what-we-can-do Zeigler-Hill, V., Welling, L. L. M., & Shackelford, T. K. (2015). Evolutionary Perspectives on Social Psychology (2015th ed.). Springer International Publishing AG. doi.org/10.1007/978-3-319-12697-5
    https://wn.com/The_Psychology_Of_Pretty_Privilege
    5 Psychology Facts About Quiet People
    6:48

    5 Psychology Facts About Quiet People

    • Order:
    • Duration: 6:48
    • Uploaded Date: 01 Jun 2023
    • views: 323960
    Are you introverted or quiet? Or are you intrigued by the inner workings of quiet people and their fascinating psychological traits? This video is for you! In this video, we uncover Psychology Facts About Quiet People that will leave you with a deeper understanding and appreciation for the quiet individuals around you. Our aim is to foster understanding and empathy between introverts and extroverts, bridging the gap in communication and appreciation. Whether you're a quiet person seeking validation or an extrovert looking to better understand the quiet people in your life, this video will provide valuable insights and actionable tips. Are you used to being quiet but not sure why? We made an in-depth video about that too: https://youtu.be/RM3HeXYaN8c Writer: Dylan Swanepoel Editor: Michal Mitchell Thumbnail Artist: Rose Demskov Thumbnail Manager: Michal Mitchell Voice Over: Amanda Silvera (http://www.youtube.com/amandasilvera) Animator: Julie Ma Production Assistant: Thomas Kang YouTube Manager: Cindy Cheong Official Discord: https://discord.gg/EsWEvrJ REFERENCES Myers, S. (2000). Empathic Listening: Reports on the Experience of being Heard. Journal of Humanistic Psychology, 40(2), 148–173. doi.org/10.1177/0022167800402004 Laney, M. O. (2002). The introvert advantage: How quiet people can thrive in an extrovert world. Workman Publishing. Feist, Gregory. (2010). The function of personality in creativity: The nature and nurture of the creative personality. Cambridge handbook of creativity. 113-130. 10.1017/CBO9780511763205.009. Saklofske, D. H., & Kostura, D. D. (1990). Extraversion-introversion and intelligence. Personality and Individual Differences, 11(6), 547-551. Naude, T. (2007) The relationship between personality and creativity: A psychometric study. Dissertation. Aguilar-Alonso, A. (1996). Personality and creativity. Personality and individual differences, 21(6), 959-969. Nobel, C. (2010). Introverts: The best leaders for proactive employees. Harvard Business School Working Knowledge, 4, 1-2. Zelenski, John & Sobocko, Karin & Whelan, Deanna. (2014). Introversion, Solitude, and Subjective Well-Being. 10.1002/9781118427378.ch11. Morin, A., & Everett, J. (1990). Inner speech as a mediator of self-awareness, self-consciousness, and self-knowledge: An hypothesis. New ideas in psychology, 8(3), 337-356. Valerie Manusov, Daniel Stofleth, Jacquelyn A. Harvey & John P. Crowley (2020) Conditions and Consequences of Listening Well for Interpersonal Relationships: Modeling Active-Empathic Listening, Social-Emotional Skills, Trait Mindfulness, and Relational Quality, International Journal of Listening, 34:2, 110-126, DOI: 10.1080/10904018.2018.1507745
    https://wn.com/5_Psychology_Facts_About_Quiet_People
    The Psychology of The Fool
    39:50

    The Psychology of The Fool

    • Order:
    • Duration: 39:50
    • Uploaded Date: 25 May 2023
    • views: 5280298
    The fool is one of the most relatable, intriguing and recurring figures in the world. There have been fools who have caused surprise and laughter since time immemorial. We worship folly by seeing it in people and in the world and by willingly displaying it in ourselves. It is one of the timeless archetypes, which we all inherit at birth. Many of us suffer from the absence of the fool in our lives. Frenetic and upright, we take ourselves too seriously. As William Shakespeare said, “All the world’s a stage, and all the men and women merely players.” Forgetting that playfulness is a basic human need, we wonder why we so easily become bored and exhausted, losing all capacity for spontaneity, authenticity, and passion. The antidote to this would be to give the fool archetype some space in our lives. “The soul demands your folly; not your wisdom.” - Carl Jung 📨 Free newsletter: https://eternalisedofficial.com/subscribe ⭐ Support this work on Patreon: https://www.patreon.com/eternalised 📺 Support this work on YouTube: https://www.youtube.com/channel/UCqos1tl0RntucGGtPXNxkkA/join 🛒 Official Merch: https://eternalised.creator-spring.com 📖 eBooks https://ko-fi.com/eternalised/shop ☕ Donate a Coffee: https://ko-fi.com/eternalised 📘 PayPal: https://www.paypal.com/paypalme/eternalisedofficial 📚 My personal library: https://eternalisedofficial.com/library 📝 Access transcript: https://eternalisedofficial.com/2023/05/25/the-psychology-of-the-fool/ 🎨 Access artwork gallery: https://eternalisedofficial.com/patron-benefits/ ━━━━━━━━━━━━━ 📚 Recommended Reading ▶ In Praise of Folly https://amzn.to/436tosq ▶ King Lear https://amzn.to/3IwNkNg ▶ He: Understanding Masculine Psychology https://amzn.to/3BLnt0g ▶ Don Quixote https://amzn.to/3MKYbp7 ▶ The Idiot https://amzn.to/43d5I5J ▶ Ivan the Fool and Three Shorter Tales for Living Peaceably https://amzn.to/3OpeoBO ▶ Tarot and the Archetypal Journey: The Jungian Path from Darkness to Light https://amzn.to/45jCKms ▶ The Complete Grimms' Fairy Tales https://amzn.to/3MCUHE8 🎧 Prefer Audiobooks? Get a 30-day Audible Plus FREE trial: ▶ https://amzn.to/332zPzN ━━━━━━━━━━━━━ 📺 Odysee ➔ https://odysee.com/@eternalised 📺 Rumble ➔ https://rumble.com/c/Eternalised 🐦 Twitter ➔ https://twitter.com/eternalised1 📷 Instagram ➔ https://www.instagram.com/eternalised_official 📘 Facebook ➔ https://www.facebook.com/eternalised 🎧 Podcast ➔ https://anchor.fm/eternalised ━━━━━━━━━━━━━ 🎶 Music used 1. Skye Cullin - Kevin MacLeod 2. Ambiment - The Ambient - Kevin MacLeod 3. Thatched Villagers - Kevin Macleod 4. Celtic Medieval Music - At the Summertide Feast - Adrian von Ziegler 5. Promising Relationship - Kevin MacLeod 6. Heartbreaking - Kevin MacLeod 7. Adrift Among Infinite Stars - Scott Buckley 8. The Long Dark - Scott Buckley 9. Mysterious Ambient Background Music - The Rake - CO.AG Music 10. Unnatural Situation - Kevin MacLeod 11. Trio for Piano Cello and Clarinet - Kevin MacLeod Support the artists: Adrian von Ziegler https://www.youtube.com/@AdrianvonZiegler Scott Buckley - https://www.scottbuckley.com.au https://www.youtube.com/c/ScottBuckley CO.AG Music https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA Kevin MacLeod - https://incompetech.com https://www.youtube.com/user/kmmusic Licensed under Creative Commons: By Attribution 3.0 http://creativecommons.org/licenses/by/3.0 ━━━━━━━━━━━━━ 📝 Sources - See Recommended Reading List above. - Stewart, E. A. (1999). Jesus the holy fool. Rowman & Littlefield. - Kaiser, Walter (2005). "Wisdom of the Fool." New Dictionary of the History of Ideas. Horowitz, Maryanne Cline, 1945. [New York?]: Charles Scribner's Sons. pp. Vol. 4, 515–520. - Ran, F. (2007). Modern Tragicomedy and the Fool. In Clowns, Fools and Picaros. Brill. - Roudhan, N. (2021). Madness and Sanity: Wisdom of Madmen and the Wise Men Madness in the 19th century. - https://www.youtube.com/watch?v=8IDKTsIvBbE - https://www.youtube.com/watch?v=zQtP3ZHRA3Q - https://www.youtube.com/watch?v=po7QCNVnIzw&t - https://www.youtube.com/watch?v=VwujIYi6POk - https://artistproject.metmuseum.org/perspectives/articles/2023/3/jester ━━━━━━━━━━━━━ ⌛ Timestamps (0:00) Introduction (2:00) In Praise of Folly (3:45) The Wise Fool (5:15) The Fool as Truth-Teller (6:24) Fool, Clown and Trickster (10:24) The Medieval Court Jester (13:54) The Shakespearean Fool (14:38) Parsifal: The Quest for The Holy Grail (17:47) Don Quixote (20:02) Dostoevsky’s The Idiot (22:17) The Fool as Hero (22:54) Ivan The Fool (24:50) The Fool’s Journey (Tarot) (27:57) The Number Zero in The Fool (29:32) Symbolic Transformations of The Fool in Tarot (31:42) The Fool: Precursor to Transformation (34:44) The Dark Side of The Fool (36:04) The Fool and the Child Archetype (36:45) The Fool: The Inferior Function (38:08) The Holy Fool ━━━━━━━━━━━━━ As an Amazon Associate, I earn a small commission from qualifying purchases at no additional cost to you. Thank you. #fool #psychology #carljung
    https://wn.com/The_Psychology_Of_The_Fool
    The psychology of narcissism - W. Keith Campbell
    5:10

    The psychology of narcissism - W. Keith Campbell

    • Order:
    • Duration: 5:10
    • Uploaded Date: 23 Feb 2016
    • views: 14266241
    View full lesson: http://ed.ted.com/lessons/the-psychology-of-narcissism-w-keith-campbell Narcissism isn’t just a personality type that shows up in advice columns; it’s actually a set of traits classified and studied by psychologists. But what causes it? And can narcissists improve on their negative traits? W. Keith Campbell describes the psychology behind the elevated and sometimes detrimental self-involvement of narcissists. Lesson by W. Keith Campbell, animation by TOGETHER.
    https://wn.com/The_Psychology_Of_Narcissism_W._Keith_Campbell
    The Psychology of Psychopaths - Predators who Walk Among Us
    13:44

    The Psychology of Psychopaths - Predators who Walk Among Us

    • Order:
    • Duration: 13:44
    • Uploaded Date: 11 Jul 2023
    • views: 1969043
    Become a Supporting Member! ► http://academyofideas.com/members/ Access the transcript and art used in the video: https://academyofideas.com/2023/07/the-psychology-of-psychopaths-predators-who-walk-among-us/ Substack - https://theacademyofideas.substack.com/ Spotify - https://open.spotify.com/show/2dio7KUNuDHErlMumZtNt6 iTunes - https://podcasts.apple.com/ca/podcast/academy-of-ideas/id1364706343 Twitter - https://twitter.com/academyofideas Instagram - https://www.instagram.com/academyofideas/ Rumble - https://rumble.com/c/academyofideas Odysee - https://odysee.com/@academyofideas:3 Prefer to Support us with a One-Time Donation? Paypal ► https://www.paypal.me/academyofideas Bitcoin: 1P6ntukFENP1nvEf4bJNj3tsDEuiSyUFW6 Visit academyofideas.com for more content.
    https://wn.com/The_Psychology_Of_Psychopaths_Predators_Who_Walk_Among_US
    💜Psychology say :) #psychology #facts #tips #aesthetic #girl #boy #shorts 。(⁠✷⁠‿⁠✷⁠)。 🌷
    0:11

    💜Psychology say :) #psychology #facts #tips #aesthetic #girl #boy #shorts 。(⁠✷⁠‿⁠✷⁠)。 🌷

    • Order:
    • Duration: 0:11
    • Uploaded Date: 24 May 2023
    • views: 53948
    psychology say #psychology #cute #style #tips 🌷🌷🌷
    https://wn.com/💜Psychology_Say_)_Psychology_Facts_Tips_Aesthetic_Girl_Boy_Shorts_。(⁠✷⁠‿⁠✷⁠)。_🌷
    The Psychology of The Devil
    45:00

    The Psychology of The Devil

    • Order:
    • Duration: 45:00
    • Uploaded Date: 24 Jun 2023
    • views: 718200
    The Devil goes by many names: Satan, Lucifer, The Great Beast, Beelzebub, The Prince of Darkness. He is the adversary, the accuser, the tempter, the deceiver, and the one who divides from God. The Devil is incredibly wicked and evil, but also intelligent and witty – he is the father of all tricksters – that is what makes him so dangerous. The English word “devil” derives from the Greek diábolos (“the one who divides”). Diabolic is the term in contemporary English. The Greek verb dia-bollein literally means to tear apart. These divisions occur in almost every facet of our lives: race, sex, religion, politics, and economics. The demonic is an inversion of order. Temptation is the ordinary activity of the devil. It is a real thing for us in each and every day. It begins with deception, buying into the lies of the devil, who promises good, only to deliver evil. The goal of this is to create division or inner conflict in ourselves. In despair, we numb ourselves with pleasure or diversion, which can lead to addiction. Hell is that state of mind which has abandoned itself so completely to a given sin that it cannot act independently of that sin. ⭐ Become a Patron (exclusive content): https://www.patreon.com/eternalised 📺 YouTube Member (exclusive content): https://www.youtube.com/channel/UCqos1tl0RntucGGtPXNxkkA/join 🛒 Official Merch: https://eternalised.creator-spring.com ☕ Donate a Coffee: https://ko-fi.com/eternalised 📘 PayPal: https://www.paypal.com/paypalme/eternalisedofficial 🎦 Subscribe to the official clips channel: https://www.youtube.com/channel/UC3O94sXcoZLpoHRzxH_YcTA 📨 Subscribe with email: https://eternalisedofficial.com/subscribe 📚 My personal library: https://eternalisedofficial.com/library 🎨 Access transcript and artwork gallery: https://eternalisedofficial.com/2023/06/24/the-psychology-of-the-devil/ ━━━━━━━━━━━━━ 📚 Recommended Reading ▶ Holy Bible https://amzn.to/3p3xDGV ▶ Answer to Job - Jung https://amzn.to/3Nfv38P ▶ Love and Will – Rollo May https://amzn.to/3Nen3F4 ▶ Faust - Goethe https://amzn.to/44pDdm3 ▶ Tarot and the Archetypal Journey: The Jungian Path from Darkness to Light - Sallie Nichols https://amzn.to/3qSHXSz ▶ The Divine Comedy: Inferno; Purgatorio; Paradiso - Dante Alighieri https://amzn.to/42XEXBu 🎧 Prefer Audiobooks? Get a 30-day Audible Plus FREE trial: ▶ https://amzn.to/332zPzN ━━━━━━━━━━━━━ 📺 Odysee ➔ https://odysee.com/@eternalised 📺 Rumble ➔ https://rumble.com/c/Eternalised 🐦 Twitter ➔ https://twitter.com/eternalised1 📷 Instagram ➔ https://www.instagram.com/eternalised_official 📘 Facebook ➔ https://www.facebook.com/eternalised 🎧 Podcast ➔ https://anchor.fm/eternalised ━━━━━━━━━━━━━ 🎶 Music used 1. Ambiment - The Ambient - Kevin Macleod 2. Trio for Piano Cello and Clarinet - Kevin Macleod 3. Cryptic Sorrow - Kevin Macleod 4. Silent Turmoil – Myuu 5. Stillstand – Myuu 6. The Long Dark – Scott Buckley 7. I Walk With Ghosts – Scott Buckley 8. Gregorian Chants – Kevin MacLeod Support the artists: Scott Buckley - https://www.scottbuckley.com.au https://www.youtube.com/c/ScottBuckley Myuu https://www.youtube.com/@Myuu Kevin MacLeod - https://incompetech.com https://www.youtube.com/user/kmmusic Licensed under Creative Commons: By Attribution 3.0 http://creativecommons.org/licenses/by/3.0 ━━━━━━━━━━━━━ 📝 Sources - See Recommended Reading List above - Collected Works of C.G. Jung - Avens, R. (1977). The image of the Devil in CG Jung's psychology. Journal of Religion and Health, 16, 196-222. - Sue Mehrtens. Jung on the Devil and the Reality of Evil https://jungiancenter.org/jung-devil-reality-evil/ https://www.youtube.com/watch?v=FuCw8UT5y6c https://www.youtube.com/watch?v=IED3S-vJ5AU https://www.youtube.com/watch?v=mX7L68p9exk https://www.youtube.com/watch?v=xQwnH8th_fs&t ━━━━━━━━━━━━━ ⌛ Timestamps (0:00) Introduction (1:18) Daimon (2:06) Pan: The God of Panic and Pandemonium (3:24) Scapegoating, Projection, God-Complex (5:38) The Devil: The One Who Divides (7:06) The Characteristics of the Diabolic (9:05) Deals with the Devil (13:30) Archetypes, Ego-Inflation, and Delusion (14:35) The Fall from Paradise (Felix Culpa) (16:52) The Devil and Christ as Lucifer (Morning Star) (20:09) Satan (The Adversary) and Job (23:52) The Ultimate Tragic Story (24:29) The Harrowing of Hell (25:16) Satanism: Evil Disguised as Good (27:02) The Psychological Activities of The Demonic (31:08) Carl Jung on the Devil (Shadow) (33:23) The Devil in The Major Arcana (34:13) The One-Sided Western Image of God (36:50) Summum Bonum: The Highest Good (37:22) Privatio Boni: The Absence of Good (37:56) Deus Absconditus: The Hidden Dark Side of God (39:00) The Apocalypse (Revelation) and Enantiodromia (43:00) Conclusion ━━━━━━━━━━━━━ As an Amazon Associate, I earn a small commission from qualifying purchases at no additional cost to you. Thank you for your support. #devil #psychology #lucifer
    https://wn.com/The_Psychology_Of_The_Devil
    What Psychologists Know About Your Clutter That You Don't 👀
    13:58

    What Psychologists Know About Your Clutter That You Don't 👀

    • Order:
    • Duration: 13:58
    • Uploaded Date: 13 Jun 2023
    • views: 419393
    Ever wondered why clutter seems to take over? Psychologists have revealed some insights about our links to possessions. Let's delve into the world of biases, distortions, and influence to understand what psychologists know (that you don't). ▷ Want my free resource library? Click here! https://miadanielle.lpages.co/free-resource-library ▷ Learn to create an amazing haven in an hour! ⇉ Holistic Clutter-Free Formula: https://bit.ly/towatchwrkshp ▷ Get started with minimalism in a quick kit ⇉ The Clutter-Free Starter Kit | https://miadanielle.lpages.co/starter-kit/ ▷ What's in my home? ⇉ https://www.amazon.com/shop/miadanielle ▷ Let's connect! ⇉ Website | https://miadanielle.com ⇉ Instagram | https://www.instagram.com/itsmiadanielle/ ⇉ Podcast: The Mind Your Home Podcast | http://apple.co/3nB0dbN If you want to eliminate the clutter, practice minimalism, or create wildly supportive spaces, welcome! FTC Disclosure: This was not a sponsored post. Everything shared is from my own thoughts. The links above are affiliate links and help my channel to grow!
    https://wn.com/What_Psychologists_Know_About_Your_Clutter_That_You_Don't_👀
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Intro to Psychology: Crash Course Psychology #1
      10:54
      Intro to Psychology: Crash Course Psychology #1remove from playlist
    • ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology
      18:32
      ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychologyremove from playlist
    • The Psychology of Pretty Privilege
      5:42
      The Psychology of Pretty Privilegeremove from playlist
    • 5 Psychology Facts About Quiet People
      6:48
      5 Psychology Facts About Quiet Peopleremove from playlist
    • The Psychology of The Fool
      39:50
      The Psychology of The Foolremove from playlist
    • The psychology of narcissism - W. Keith Campbell
      5:10
      The psychology of narcissism - W. Keith Campbellremove from playlist
    • The Psychology of Psychopaths - Predators who Walk Among Us
      13:44
      The Psychology of Psychopaths - Predators who Walk Among Usremove from playlist
    • The Psychology of The Devil
      45:00
      The Psychology of The Devilremove from playlist
    • What Psychologists Know About Your Clutter That You Don't 👀
      13:58
      What Psychologists Know About Your Clutter That You Don't 👀remove from playlist
    PLAYLIST TIME: 0:00 / 2:39:49

    Intro to Psychology: Crash Course Psychology #1

    What does Psychology mean? Where does it come from? Hank gives you a 10-minute intro to one of the more tricky sciences and talks about some of the big names in the development of the field. Welcome to Crash Course Psychology!!! Want more videos about psychology? Check out our sister channel SciShow Psych at https://www.youtube.com/scishowpsych! -- Chapters: Introduction: What is Psychology? 00:00 Early Thinkers in Psychology 0:46 Big Questions in Psychology 1:31 Sigmund Freud 2:21 Disciplines of Psychology 3:02 Structuralism 3:29 Functionalism 4:28 Psychoanalysis 4:58 Freud's Death & Legacy 7:01 Behaviorism 7:51 Psychodynamic Theories 8:21 Other Disciplines in Psychology 8:37 Credits 10:09 Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids
    10:54
    Intro to Psychology: Crash Course Psychology #1
    What does Psychology mean? Where does it come from? Hank gives you a 10-minute intro to on...
    published: 04 Feb 2014
    Play in Full Screen
    18:32
    ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology
    ဒါတွေ သိမထားရင် တိုင်ပတ်လိမ့်မယ် Dark Psychology #DerekDaily #Drphyopaing #Marketing #Dig...
    published: 27 Mar 2023
    Play in Full Screen
    5:42
    The Psychology of Pretty Privilege
    What is pretty privilege? "Pretty privilege" refers to the societal advantage or preferen...
    published: 19 Jul 2023
    Play in Full Screen
    6:48
    5 Psychology Facts About Quiet People
    Are you introverted or quiet? Or are you intrigued by the inner workings of quiet people a...
    published: 01 Jun 2023
    Play in Full Screen
    39:50
    The Psychology of The Fool
    The fool is one of the most relatable, intriguing and recurring figures in the world. Ther...
    published: 25 May 2023
    Play in Full Screen
    5:10
    The psychology of narcissism - W. Keith Campbell
    View full lesson: http://ed.ted.com/lessons/the-psychology-of-narcissism-w-keith-campbell ...
    published: 23 Feb 2016
    Play in Full Screen
    13:44
    The Psychology of Psychopaths - Predators who Walk Among Us
    Become a Supporting Member! ► http://academyofideas.com/members/ Access the transcript an...
    published: 11 Jul 2023
    Play in Full Screen
    0:11
    💜Psychology say :) #psychology #facts #tips #aesthetic #girl #boy #shorts 。(⁠✷⁠‿⁠✷⁠)。 🌷
    psychology say #psychology #cute #style #tips 🌷🌷🌷
    published: 24 May 2023
    Play in Full Screen
    45:00
    The Psychology of The Devil
    The Devil goes by many names: Satan, Lucifer, The Great Beast, Beelzebub, The Prince of Da...
    published: 24 Jun 2023
    Play in Full Screen
    13:58
    What Psychologists Know About Your Clutter That You Don't 👀
    Ever wondered why clutter seems to take over? Psychologists have revealed some insights ab...
    published: 13 Jun 2023
    Play in Full Screen

    Psychology

    Psychology is the study of mind and behavior. It is an academic discipline and an applied science which seeks to understand individuals and groups by establishing general principles and researching specific cases. In this field, a professional practitioner or researcher is called a psychologist and can be classified as a social, behavioral, or cognitive scientist. Psychologists attempt to understand the role of mental functions in individual and social behavior, while also exploring the physiological and biological processes that underlie cognitive functions and behaviors.

    Psychologists explore concepts such as perception, cognition, attention, emotion, intelligence, phenomenology, motivation, brain functioning, personality, behavior, and interpersonal relationships, including psychological resilience, family resilience, and other areas. Psychologists of diverse orientations also consider the unconscious mind. Psychologists employ empirical methods to infer causal and correlational relationships between psychosocial variables. In addition, or in opposition, to employing empirical and deductive methods, some—especially clinical and counseling psychologists—at times rely upon symbolic interpretation and other inductive techniques. Psychology has been described as a "hub science", with psychological findings linking to research and perspectives from the social sciences, natural sciences, medicine, humanities, and philosophy.

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

    Edit

    Instagram’s new speed feature: Convenience or psychological concern? How will it impact your attention span?

    Live Mint 28 Mar 2025
    Instagram is adding a fast-forward feature for reels, similar to TikTok. While it allows quicker content consumption, experts warn it may harm attention spans and mental health ....
    Edit

    ‘Locked’ blends psychological horror with explosive tension

    The Philippine Star 28 Mar 2025
    From producer Sam Raimi (“Evil Dead,” “Drag Me to Hell”) comes “Locked,” an intense action-thriller packed with terror, tension and a relentless fight for survival. It opens on April 2 in theaters nationwide ....
    Edit

    Meeting Minutes & More | My Campus: UI Psychology Professor Brent Roberts

    The News-Gazette 28 Mar 2025
    The first spot I'd take a newcomer I wanted to impress. “The Quad at noon on a warm spring day. The classic buildings, the grassy expanse and the students playing and soaking up the sun, remind you that there are ... .
    Edit

    Under Pressure, Psychology Accreditation Board Suspends Diversity Standards

    The Philadelphia Tribune 28 Mar 2025
    The American Psychological Association, which sets standards for professional training in mental health, has voted to suspend its requirement that postgraduate programs show a commitment to diversity in recruitment and hiring ....
    Edit

    Renowned professor to deliver keynote at Carolinas Psychology Conference in Buies Creek (Campbell University)

    Public Technologies 28 Mar 2025
    ) Renowned professor to deliver keynote at Carolinas Psychology Conference in Buies Creek ... Campbell University's psychology department announced that Dr ... Psychology Conference on April 5 in Buies Creek.
    Edit

    Psychological Safety: Defining the path from inclusion to innovation

    SAFETY4SEA 28 Mar 2025
    Achieving this requires a psychologically safe environment where they feel supported in taking risks and sharing ideas. Key questions for a culture of growth and impact ... MPA Singapore ... 7 Do’s for leaders to (re)build psychology safety in the team.
    Edit

    Examining the Effectiveness of Heart Rate Variability Biofeedback Training on Cognitive and Psychological Emotion Regulation - Liberty Wade, King's Undergraduate Research Fellowship (KURF) (King's College London)

    Public Technologies 28 Mar 2025
    Liberty Wade, a Psychology student, embraced the opportunity to further her research skills and align her academic journey with her career goals through KURF ... aspirations to pursue clinical psychology.
    Edit

    Against all odds: The psychology behind Israelis’ happiness - Israel Today

    Israel Today 28 Mar 2025
    Tal Ben-Shahar, whose course on positive psychology became the most popular class in Harvard’s history ... A classic psychology study she ... And perhaps that is the uniquely Israeli psychological trick.
    Edit

    Eye for an Eye: Psychology’s Sznycer and Wee publish work on laws about bodily damage (Oklahoma State University)

    Public Technologies 28 Mar 2025
    Psychology's Sznycer and Wee publish work on laws about bodily damage ... Oklahoma State University Department of Psychology assistant professor Dr. Daniel Sznycer and experimental psychology Ph.D.
    Edit

    What can you do with a clinical and health psychology degree (Edge Hill University)

    Public Technologies 28 Mar 2025
    Tell us a bit about yourself and your journey to clinical psychology ... All our academic staff are research-active, and we have many Registered Psychology Practitioners, including in Health Psychology, Clinical Psychology, and Coaching Psychology.
    Edit

    These existing medications may help reduce dementia risk, new study suggests

    PsyPost 28 Mar 2025
    There’s currently no cure for dementia. Although some recently developed drugs show promise in slowing the progress of the disease, these are both costly and may have limited benefit for many patients ... Immune reponse and brain health ... Next steps ... ....
    Edit

    Planting pinwheels for a purpose

    Messenger-Inquirer 28 Mar 2025
    Across the front, a soft breeze blew over top of the freshly manicured lawn at Elizabethtown Police Department ... .
    Edit

    A small device tracked older adults’ conversations—and revealed a hidden link to brain health

    PsyPost 28 Mar 2025
    A new study published in Scientific Reports has found that older adults who talk more throughout their day tend to perform better on tests of cognitive ability—particularly working memory, processing speed, and semantic fluency ... uTrail clip-on device.
    Edit

    On Play

    Brainpickings 28 Mar 2025
    Animated by questions “hovering over spheres of thought barely accessible either to psychology or to philosophy,” it went on to inspire everything from board games to mobile architecture ...
    ×