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 | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Foundation\Application; | |
use Ellaisys\Cognito\AwsCognitoClient; | |
use Aws\CognitoIdentityProvider\CognitoIdentityProviderClient; | |
use Illuminate\Support\Arr; |
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
from itertools import permutations, product | |
# Lista de palabras clave (puedes modificarla o cargarla desde un archivo) | |
keywords = [ | |
"Luffy", | |
"Uzumymw", | |
"Kjkszpj", | |
"Hesoyam", | |
] |
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
SHOW OPEN TABLES WHERE In_use > 0; | |
SELECT * FROM `information_schema`.`innodb_trx` ORDER BY `trx_started`; | |
SELECT * FROM `information_schema`.`innodb_locks`; | |
SHOW FULL PROCESSLIST; | |
SHOW ENGINE InnoDB STATUS; |
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 validarform(){ | |
$mensaje = "error"; | |
if(isset($_POST["Enviar"])){ | |
$variablex = $_POST["variablex"]; | |
if(empty($variablex)){ | |
$mensaje = "Debes introducir el valor de x"; | |
} |