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
Política de privacidad | |
====================== | |
* Uso de datos personales del móvil | |
Malvinas War es un juego que no requiere información perosnal para poder jugarse. | |
No recolecta información de ningún tipo, ni envía a servidor alguno. | |
* Cambios en el presente documento | |
Se podrán realizar cambios sin previa notificación. Revisa periódicamente este documento para estar al tanto de sus modificaciones |
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
<?php | |
function pipe(...$functions): callable { | |
return function($value) use ($functions) { | |
foreach($functions as $function) { | |
$value = $function($value); | |
} | |
return $value; | |
}; | |
} |
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 | |
templateFile="/etc/apache2/sites-available/template" | |
read -p "Nombre de host: " host | |
read -p "Ruta al public ej: /var/www/mi-proyecto/public : " documentRoot | |
if [[ ! -d $documentRoot ]]; then | |
echo "La ruta al public {$documentRoot} no existe.\nNo se ha realizado ninguna acción.\n" | |
exit 1; | |
fi |
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
// Hello everyone! | |
// | |
// I want to bring an idea that I guess.. maybe useful for you. | |
// | |
// With no more words, we will ride into the concept. | |
// Suppose an scenario like following: | |
let result = | |
this.a.lot.of.dot.levels.myAim.methodA() + |