https://technet.microsoft.com/es-es/library/hh848633.aspx
- Client Authentication. 1.3.6.1.5.5.7.3.2
- Server Authentication. 1.3.6.1.5.5.7.3.1
- Secure Email. 1.3.6.1.5.5.7.3.4
- Code Signing. 1.3.6.1.5.5.7.3.3
- Timestamp Signing. 1.3.6.1.5.5.7.3.8
| // Create new configuration that specifies the error correction | |
| Map<EncodeHintType, ErrorCorrectionLevel> hints = new HashMap<EncodeHintType, ErrorCorrectionLevel>(); | |
| hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); | |
| QRCodeWriter writer = new QRCodeWriter(); | |
| BitMatrix bitMatrix = null; | |
| ByteArrayOutputStream baos = new ByteArrayOutputStream(); | |
| try { | |
| // Create a qr code with the url as content and a size of 250x250 px |
| ############################################# | |
| # Push de la rama actual | |
| git push origin $rama_actual | |
| ############################################# | |
| # Volver a un commit anterior, descartando los cambios | |
| git reset --HARD $SHA1 | |
| ############################################# | |
| # Ver y descargar Ramas remotas |
| #!/bin/bash | |
| # -- CONFIGURACIÓN DE VARIABLES GLOBALES | |
| APP_HOME="." | |
| APP_OUTPUT="import.log" | |
| MYSQL_DBUSER_ADM="root" | |
| MYSQL_DBUSER="admin" | |
| MYSQL_DBPASS="admin" | |
| MYSQL_DBNAME="mi_db" |
| ## Configure eth0 | |
| # | |
| # vi /etc/sysconfig/network-scripts/ifcfg-eth0 | |
| DEVICE="eth0" | |
| NM_CONTROLLED="yes" | |
| ONBOOT=yes | |
| HWADDR=A4:BA:DB:37:F1:04 | |
| TYPE=Ethernet | |
| BOOTPROTO=static |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!--<link rel="stylesheet" type="text/css" href="css/bootstrap.css">--> | |
| <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
| <style> | |
| .panel{ | |
| border: 2px solid #DFE0E2; | |
| width: 350px; | |
| padding: 10px 10px 10px 10px; |
https://technet.microsoft.com/es-es/library/hh848633.aspx
Esto se puede copiar y pegar en un archivo "removeInterfaze.sh" y ejecutarlo con permisos de ejecucion.
#!/bin/bash
rm /etc/sysconfig/network-scripts/ifcfg-eth0
rm /etc/sysconfig/networking/devices/ifcfg-eth0
rm /etc/sysconfig/networking/profiles/default/ifcfg-eth0
rm /etc/udev/rules.d/70-persistent-net.rules| /* */ | |
| /* InstPubs.SQL - Creates the Pubs database */ | |
| /* */ | |
| /* | |
| ** Copyright Microsoft, Inc. 1994 - 2000 | |
| ** All Rights Reserved. | |
| */ | |
| SET NOCOUNT ON | |
| GO |
| /* | |
| ** Copyright Microsoft, Inc. 1994 - 2000 | |
| ** All Rights Reserved. | |
| */ | |
| SET NOCOUNT ON | |
| GO | |
| USE master | |
| GO |