Skip to content

Instantly share code, notes, and snippets.

View cdanielzt's full-sized avatar
🏠
Working from home

Daniel Zapata cdanielzt

🏠
Working from home
  • Realty Candy
  • Chiapas, México
View GitHub Profile
@cdanielzt
cdanielzt / mysql-docker.sh
Created June 29, 2022 02:34 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@cdanielzt
cdanielzt / calcularFaltante.js
Created February 25, 2021 02:18
Dado un array determina que numero falta dependiendo del largo del arreglo
const numeros = [0,1,2,4,5];
function calcularFaltante(numeros){
let faltante;
for (let i = 0; i <= numeros.length; i++) {
if(numeros[i] != i){
faltante=i;
break;
}
}