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
| #!/bin/bash | |
| # | |
| # === DESCOMENTAR PARA DEBUGGEAR: === | |
| #set -eux | |
| # errexit (terminar si falla), | |
| # nounset (fallar por usar una variable no declarada), | |
| # xtrace (imprimir antes de ejecutar). | |
| if [ $# -eq 0 ]; then | |
| echo "Uso: $0 <archivo(s)_PDF_a_comparar>" |
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 Somos5 | |
| // @version 0.2-beta | |
| // @description Autofill the time and attendance form with the current time | |
| // @author esP | |
| // @grant none | |
| // @match https://sxmxs.esp.ub/*resencia/ | |
| // ==/UserScript== | |
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
| URL="" | |
| cookie="" |
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
| ### PowerShell template profile | |
| ### Version 1.03 - Tim Sneath <tim@sneath.org> | |
| ### From https://gist.github.com/timsneath/19867b12eee7fd5af2ba | |
| ### | |
| ### This file should be stored in $PROFILE.CurrentUserAllHosts | |
| ### If $PROFILE.CurrentUserAllHosts doesn't exist, you can make one with the following: | |
| ### PS> New-Item $PROFILE.CurrentUserAllHosts -ItemType File -Force | |
| ### This will create the file and the containing subdirectory if it doesn't already | |
| ### | |
| ### As a reminder, to enable unsigned script execution of local scripts on client Windows, |