- Evite intentar demostrar que siempre está trabajando. Deja que tu trabajo hable por sí mismo.
- Evite estar siempre disponible. Hágales saber a todos cuándo estará trabajando y solo contacte a las personas durante esas horas si es necesario. Si es necesario cree una respuesta automática que le diga a las personas cuándo se comunicará con ellos.
- Evite ser duro con usted mismo.
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
| Coincidencias Basicas | |
| . - Cualquier Caracter, excepto nueva linea | |
| \d - Cualquier Digitos (0-9) | |
| \D - No es un Digito (0-9) | |
| \w - Caracter de Palabra (a-z, A-Z, 0-9, _) | |
| \W - No es un Caracter de Palabra. | |
| \s - Espacios de cualquier tipo. (espacio, tab, nueva linea) | |
| \S - No es un Espacio, Tab o nueva linea. | |
| Limites |
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
| #!/bin/sh | |
| go build -ldflags "-s -w" $1 | |
| upx --brute $1 |
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
| <?php | |
| /************************************************************************* | |
| ** SE USA LA ESTRACCION EN LA PAGINA WEB DEL BANCO CENTRAL = BCV.ORG.VE ** | |
| *************************************************************************/ | |
| $sHtml = file_get_contents('http://www.bcv.org.ve/'); //Convierte la URL en String | |
| $nPosicionCoincidencia = strpos($sHtml, 'USD'); | |
| $nDolar = strval(trim(str_replace(",",".",str_replace(".", "", substr($sHtml, $nPosicionCoincidencia + 119, 12))))); | |
| print_r($nDolar); echo "\n"; |