Skip to content

Instantly share code, notes, and snippets.

View AsierFox's full-sized avatar
:octocat:
Coding!

Asier González AsierFox

:octocat:
Coding!
View GitHub Profile
@AsierFox
AsierFox / java_download.sh
Created August 21, 2021 19:50 — forked from wavezhang/java_download.sh
download java from oracle without login
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
// 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
@AsierFox
AsierFox / AspectRatioHandlerUnity
Last active February 12, 2017 12:50
Control for aspect ratio to adapt to different screen sizes.
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;