Config file /lib/systemd/system/docker.service
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
| git stash: guarda los cambios temporalmente en memoria cuando no quieres hacer un commit aun | |
| git stash save “mensaje”: guarda un stach con mensaje | |
| git stash list: muestra la lista de cambios temporales | |
| git stash pop: trae de vuelta los cambios que teníamos guardados en el ultimo stash | |
| git stash apply stash@{n}: trae el stash que necesites con indicar su número dentro de las llaves | |
| git stash drop: borra el ultimo stash | |
| git stash clear: borra todos los stash |
| const date_regex = /^(0[1-9]|1\d|2\d|3[01])\/(0[1-9]|1[0-2])\/(19|20)\d{2}$/; // dd/mm/yyyy | |
| const date_regex2 = /^(0[1-9]|1[0-2])\/(0[1-9]|1\d|2\d|3[01])\/(19|20)\d{2}$/; // mm/dd/yyyy | |
| const testDate = '13/06/2022'; | |
| date_regex.test('01/12/2022') | |
| date_regex2.test('12/30/2022') |
| @Input() | |
| set parameterInput({ prop1, prop2 }: Interface) { | |
| this.prop1 = prop1; | |
| this.prop2 = prop2; | |
| } |
| https://webdesign.tutsplus.com/es/articles/creating-a-simple-responsive-html-email--webdesign-12978 |
| /* RESPONSIVE | |
| ========================================================================= */ | |
| /* Tablets en horizonal y escritorios normales | |
| ------------------------------------------------------------------------- */ | |
| @media (min-width: 768px) and (max-width: 1199px) { | |
| } | |
| /* Móviles en horizontal o tablets en vertical | |
| ------------------------------------------------------------------------- */ |
| En algunos casos cuando nos toca desplegar master y no queremos subir todos commits de tu ramma, nos puede tocar unir commits. | |
| El *git rebase* puede ayudar, Ojo: Se pierde el historial de commits, lo recomendable es hacer esto local y no commits pusheados | |
| Ejemplo tienes 4 commits | |
| e5c49d9 (HEAD -> cambio3) [ADD] | |
| f584ba1 cam3 | |
| eed9d9a [ADD] cam333.txt | |
| c427b35 [ADD] cambio 1 |
#REF: https://computingforgeeks.com/how-to-install-latest-nodejs-on-ubuntu-debian-linux/