This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Number of previous passwords a user cannot reuse | |
| grails.plugin.springsecurity.disallowed.password.number = 2 | |
| // Number of attemps allowed | |
| grails.plugin.springsecurity.badlogin.max.attemps = 3 | |
| // Needed in LoginController.failAuth to recover username | |
| grails.plugin.springsecurity.apf.storeLastUsername = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class AspectRatioHandler : MonoBehaviour | |
| { | |
| // To calculate aspect ratio: Eg. 4:3, 4/3 = 1.3333333 | |
| public float _wantedAspectRatio = 1.3333333f; | |
| static float wantedAspectRatio; | |
| static Camera cam; | |
| static Camera backgroundCam; |