Este comando sirve para levantar el contenedor de docker
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
| async function crackearRapido() { | |
| const USUARIO = "NUM_CONTROL"; | |
| const TIPO = "a"; | |
| window.alert = () => {}; // Matamos los alerts de la pΓ‘gina para que no frenen el bucle | |
| const inputUser = document.getElementsByName('usuario')[0]; | |
| const inputPass = document.getElementsByName('contrasena')[0]; | |
| const urlDestino = document.acceso.action; | |
| console.log("%c INICIANDO ATAQUE VELOZ...", "color: cyan; font-weight: bold;"); |
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
| CREATE TABLE "Intendentes"( | |
| "id_intendente" INT NOT NULL, | |
| "nombre" VARCHAR(255) NOT NULL, | |
| "curp" VARCHAR(255) NOT NULL | |
| ); | |
| ALTER TABLE | |
| "Intendentes" ADD CONSTRAINT "intendentes_id_intendente_primary" PRIMARY KEY("id_intendente"); | |
| CREATE UNIQUE INDEX "intendentes_curp_unique" ON | |
| "Intendentes"("curp"); | |
| CREATE TABLE "DiasLaborales"( |
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
| #define MaxCola 100 | |
| class Cola | |
| { | |
| private: | |
| int num_datos; | |
| char vector[MaxCola]; | |
| public: | |
| Cola(); |
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
| import random | |
| n_random = random.randint(1, 250) | |
| times = 0 | |
| list = [] | |
| n = 0 | |
| while n != n_random and times < 13: | |
| n = int(input("Ingresa el nΓΊmero: ")) | |
| list.append(n) | |
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
| import java.util.Scanner; | |
| public class Examen { | |
| public static void main(String[] args) { | |
| int t = 3, opc, salary; | |
| String name, workerType; | |
| Scanner sc = new Scanner(System.in); | |
| while (t-->0) { | |
| System.out.println(""" |
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
| #include <vector> | |
| #include <iostream> | |
| #define vii vector< vector<int> > | |
| using namespace std; | |
| void create_graph(int nodes, vii &graph) | |
| { | |
| for (int i = 0; i < nodes; i++) |
npm install --save-dev @commitlint/cli @commitlint/config-conventional
commitlint.config.js
module.exports = {
extends: ['@commitlint/config-conventional']
}
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
| { | |
| "arrowParens": "always", | |
| "bracketSameLine": false, | |
| "bracketSpacing": true, | |
| "embeddedLanguageFormatting": "auto", | |
| "htmlWhitespaceSensitivity": "css", | |
| "insertPragma": false, | |
| "jsxSingleQuote": true, | |
| "printWidth": 80, | |
| "proseWrap": "preserve", |
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
| // | |
| // Created by thisismyemm4 on 13/04/23. | |
| // | |
| #include <bits/stdc++.h> | |
| // ββββββββββββββββββββββββββββββββββββ¦ββββββββ | |
| // ββββ£ββββββββββββββββββββββββββββββββββββββββ | |
| // ββββ£βββ¦β¦βββ¦β¦βββ¦βββ¦ββββ£ββββ¦βββ¦βββ£βββββββββ βββ¦βββ | |
| // βββββββ β£βββ¬β£βββ£βββββββββββ£βββββββββββββββ βββ£βββ£ | |
| // ββββ£ββββ ββββ ββββββββββββββ£ββββββββββββββββββ βββ |
NewerOlder