This file contains 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
<div class="container"> | |
<div class="card w-100 mb-3"> | |
<div class="card-body"> | |
<h5 class="card-title">Card title</h5> | |
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's | |
content.</p> | |
</div> | |
</div> | |
</div> |
This file contains 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
--Dependencias para instalar Asbru-cm | |
sudo apt install libcairo-perl libglib-perl libpango-perl libexpect-perl libyaml-perl libcrypt-cbc-perl libcrypt-blowfish-perl libgtk3-perl libnet-arp-perl libossp-uuid-perl libcrypt-rijndael-perl libcanberra-gtk-module libgtk3-simplelist-perl gir1.2-vte-2.91 | |
--Descargar el .deb | |
https://packagecloud.io/asbru-cm/asbru-cm |
This file contains 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
-> Conexión: | |
ssh [email protected] | |
-> Error: | |
Unable to negotiate with 10.10.10.10 port 22: no matching key exchange method found. | |
Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 | |
------------------------------------------------------------------------------------------------------------- |
This file contains 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
1.- Descargar Postman | |
https://www.postman.com/downloads/ | |
2.- Descomprimirlo | |
tar zxf Postman-*.tar.gz |
This file contains 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
declare | |
begin | |
for x in ( select owner, index_name from all_indexes where owner like '%{usuario o esquema}%' and status = 'UNUSABLE' ) | |
loop | |
DBMS_OUTPUT.PUT_LINE('alter index ' || x.owner || '.' || x.index_name || ' rebuild;'); | |
This file contains 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
//================================= | |
// -e -> Extenciones que tiene que | |
// monitorear ej: html, js | |
//================================= | |
# nodemon app.js -e [extenxiones,] | |
This file contains 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
ng build --prod --base-href "https://[usuario].github.io/[repositorio]/" --output-path=docs | |
This file contains 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
# Comando | |
---- Desde servidor a mi equipo | |
scp [parametros] [usuario]@[host]:[ruta directorio o archivo origen] [ruta destino] | |
# Ejemplo | |
-- Archivo |
This file contains 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
# Estructura | |
for [variable] in [lista a recorrer]; do [comandos a ejecutar]; done | |
# Ejemplo | |
-- Listo los elementos que devuelve el "ls" | |
for x in $(ls); do echo $x; done |
This file contains 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
less "archivos" | |
--Comandos | |
g: Primer linea del archivo | |
G: Ultima linea del archivo | |
q: salir | |
/"cadena": buscahacia abajo. Con "n" voy a la siguiente coincidencias hacia abajo y con "N" hacia arriba | |
?"cadena": buscahacia arriba. Con "n" voy a la siguiente coincidencias hacia arriba y con "N" hacia abajo |
NewerOlder