Make sure you have this configuration in your nginx file
log_format upstreamlog '$server_name to $upstream_addr [$request] '
'up_resp_time $upstream_response_time'
'msec $msec req_time $request_time';
upstream jblb{| //Diploma: 1eH5suWzkJ4K-......-h94FlcuY | |
| function onOpen() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var menuEntries = [ {name: "Genera Diploma", functionName: "generaDiploma"}, | |
| {name: "Genera Todos", functionName: "generaTodos"}]; | |
| ss.addMenu("Generador de Diplomas", menuEntries); | |
| } |
| function ofFormSubmit(e) { | |
| var email = 'correodestino@servidor'; | |
| var timestamp = e.values[0]; | |
| var nombrecompleto = e.values[1]; | |
| var nombre = e.values[2]; | |
| var personalemail = e.values[3]; | |
| var address = e.values[4]; | |
| var employee = e.values[5]; |
| # ... Working on it... |
| 1 "The Infinity Saga" | |
| 1.1 Phase One | |
| 1.1.1 Iron Man (2008) ✅ | |
| 1.1.2 The Incredible Hulk (2008) ✅ | |
| 1.1.3 Iron Man 2 (2010) ✅ | |
| 1.1.4 Thor (2011) ✅ | |
| 1.1.5 Captain America: The First Avenger (2011) ✅ | |
| 1.1.6 Marvel's The Avengers (2012) ✅ | |
| 1.2 Phase Two | |
| 1.2.1 Iron Man 3 (2013) ✅ |
| PID=$(ps -fe | grep "[A]ndroid File Transfer Agent" | awk '{print $2}'); if [[ -n $PID ]]; then kill $PID; fi; mv "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent.app" "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent DISABLED.app"; mv "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app" "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent DISABLED.app"; osascript -e 'tell application "System Events" to delete every login item whose name is "Android File Transfer Agent"' |
| #!/bin/bash | |
| echo 'Write the new path of Screenshots to land' | |
| read varname | |
| defaults write com.apple.screencapture location $varname | |
| killall SystemUIServer | |
| exit |
| #!/bin/sh | |
| IPT="/sbin/iptables" | |
| # Flush old rules, old custom tables | |
| $IPT --flush | |
| $IPT --delete-chain | |
| # Set default policies for all three default chains | |
| $IPT -P INPUT DROP |
| #!/bin/sh | |
| echo "Running Aliases!" | |
| # General | |
| alias l='ls -lFah' | |
| alias c='clear' | |
| alias xx='exit' | |
| alias aliases='cat ~/.bash_aliases' | |
| alias disk='lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL' |