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
| // ==UserScript== | |
| // @name ING Banking stay logged in without 5 minute timer | |
| // @version 1 | |
| // @grant none | |
| // @match https://banking.ing.de/* | |
| // ==/UserScript== | |
| function blur() { | |
| document.dispatchEvent(new Event("blur")) | |
| setTimeout(focus, Math.random() * 60 * 1000) |
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
| mv ~/.kube/config ~/.kube/config.bak && KUBECONFIG=~/.kube/config.bak:kube_config_cluster.yml kubectl config view --flatten > ~/.kube/config |
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
| grep $(read -s pw && echo -n $pw | sha1sum | awk '{ print $1 }' | tr a-f A-F) pwned-passwords-sha1-ordered-by-hash-v4.txt |
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
| find . | while read movie;do touch -d $(date -r $(stat -f %B "$movie") +%Y-%m-%d%T) "$movie"; done |