• 4 Posts
  • 543 Comments
Joined 1 year ago
cake
Cake day: July 22nd, 2023

help-circle









  • Best answer here as it touches on inarguable facts rather than feelings. NOTE: Emotions are mainly a mammal thing, though reptiles and birds have a sort-of amygdala, not the same though.

    And an interesting bit for OP: Dogs DO smile! At the least we can that we selected for more expressive facial muscles in dogs. In contrast, my pig has about zero emotional indicators, though he seems smarter than any dog I’ve met.

    Dogs were shaped during the course of domestication both in their behavior and in their anatomical features. Here we show that domestication transformed the facial muscle anatomy of dogs specifically for facial communication with humans. A muscle responsible for raising the inner eyebrow intensely is uniformly present in dogs but not in wolves. Behavioral data show that dogs also produce the eyebrow movement significantly more often and with higher intensity than wolves do, with highest-intensity movements produced exclusively by dogs. Interestingly, this movement increases paedomorphism and resembles an expression humans produce when sad, so its production in dogs may trigger a nurturing response. We hypothesize that dogs’ expressive eyebrows are the result of selection based on humans’ preferences.

    https://www.pnas.org/doi/10.1073/pnas.1820653116

    Far more out there if you want less technical resources:

    https://www.nbcnews.com/science/weird-science/dogs-faces-evolved-improve-connections-people-study-suggests-rcna22362







  • I’d suggest figuring out the Windows casting issue. My TV is hardwired to the network, so maybe that helps.

    Here’s a script for a mode switcher. Works great using psexe to wrap it in an executable.

    Do {
        CLS
        $Mode = Read-Host "`r`n(W)ork, (P)lay, (M)ovie?"
        } until ( 'w', 'p', 'm' -contains $Mode) 
    
    if ($Mode -eq "w"){
    # Work Mode
    displayswitch.exe /extend
    # Display taskbar and restart Explorer
    $p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
        }
    
    if ($Mode -eq "p"){
    # Play Mode
    displayswitch.exe /external
    # Display taskbar and restart Explorer
    $p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
        }
    
    if ($Mode -eq "m"){
    # Movie Mode
    displayswitch.exe /internal
    #Hide taskbar and restart Explorer
    $p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer
        }