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
NOTA: Ejecutar comandos sobre POWERSHELL con permisos de Administrador. | |
OpenSSH está incluido con Windows 10, Actualización 1803. | |
#Verificando las caracteristicas | |
$> Get-WindowsCapability -Online | Where-Object -Property Name -Like "OpenSSH*" | |
Name : OpenSSH.Client~~~~0.0.1.0 | |
State : Installed | |
Name : OpenSSH.Server~~~~0.0.1.0 | |
State : NotPresent |
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
const { src, dest } = require('gulp'); | |
var replace = require('gulp-replace') | |
const arg = (argList => { | |
let arg = {}, a, opt, thisOpt, curOpt; | |
for (a = 0; a < argList.length; a++) { | |
thisOpt = argList[a].trim(); | |
opt = thisOpt.replace(/^\-+/, ''); |
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
https://javascript.plainenglish.io/generate-ssl-certificate-using-node-js-for-web-apps-73d452ad5898 | |
openssl genrsa -out key.pem |
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
//Woocommerce Checkout JS events | |
$( document.body ).trigger( 'init_checkout' ); | |
$( document.body ).trigger( 'payment_method_selected' ); | |
$( document.body ).trigger( 'update_checkout' ); | |
$( document.body ).trigger( 'updated_checkout' ); | |
$( document.body ).trigger( 'checkout_error' ); | |
//Woocommerce cart page JS events | |
$( document.body ).trigger( 'wc_cart_emptied' ); | |
$( document.body ).trigger( 'update_checkout' ); |