Entradas

Mostrando entradas de 2017

Solución Apague y Reinicie / Shutdown and restart solution

Imagen
This is a very common solution and normally expressed as a joke to recognize the "Support Engineer" 's main activity: when someone needs to fix something in the computer and calls for support and the supporter says: "please restart your computer." This is not a nonsense solution, in fact if there are some smart question from the supporter and finally decides to tell the user please restart is because of this. Example of questions for a program that is not working on the computer: 1. Have you applied a recent update on the app? R/No 2. Someone else applied an update on your computer? R/No 3. When was the last time your app was working fine? R/A few minutes ago 4. Ok, if your computer is the same in configuration and it fails a few moments ago, it must be something about the operating system exahusted, I think you must restart your computer. R/I already did it, I restarted the computer. 5. Oh, ok, so you are now opening the program and it's still fail

PHP first day and last day of current month / día inicial y final del mes actual

To get the first day and last day of current month in PHP: Para obtener el primero y último día del mes actual en PHP:       $dfechaini=date("Y-m-d", mktime(0, 0, 0, date("m"), 1));       $dfechafin=date("Y-m-t", mktime(0, 0, 0, date("m"), 1)); The trick is the first parameter in date "Y-m-d" first day "Y-m-t" last day plus mktime El truco es el primer parámetro en date "Y-m-d" primer día "Y-m-t" último día más mktime

Hibernate Mac OS Sierra / Hibernar el Mac OS Sierra

Imagen
If you need to put your Mac laptop to hibernate when closing the lid, just follow the following instructions: Open a terminal window and write the following commands: Si necesita poner a hibernar su laptop Mac cuando cierre la tapa, solo siga las siguientes instrucciones: Abra una ventana de terminal y escriba los siguientes comandos: $sudo pmset -b sleep 60 $ sudo pmset -b standby 120 $ sudo pmset -b standbydelay 120 $ sudo pmset -b hibernatemode 25 This worked for me on my MacBook Pro with Mac OS Sierra. Esto me funcionó en mi MacBook Pro que tiene Mac OS Sierra.

Soluciones Verdaderas vrs Arreglos / Real Solutions vs Fixes

Imagen
Cuando nos enfrentamos a un ajuste de sistema y realizamos todas las posibles soluciones y no funciona. Normalmente se decide iniciar desde el principio, dejando a un lado lo existente y generando nuevos códigos, módulos, instalar de nuevo, etc. Una vez todo queda funcionando, esto no es una solución . Necesariamente debió volverse a hacer, así que no aplica como una solución verdadera al problema ya que para este caso específico nunca sabremos cual fue el problema. Sólo cuando tomamos lo que existe y encontramos algo que falla y lo corregimos, nos hemos dado cuenta de cual era el error, así que esta si es una solución al problema. Un arreglo solo nos da más pericia porque aprendemos a hacer todo de nuevo, pero una solución nos aporta conocimiento y experiencia sobre fallas que ocurrieron con la versión anterior y que supimos corregir, esto nos abrirá la mente cuando algo similar ocurra. *****English When we face a system adjustment and we make all possible solutions and it do

Actualizar MAMP / Upgrade MAMP

Imagen
No more worries, the new MAMP 4.1 will do the work for you, it will detect existing version and will try to keep all your directories and data, just download the installer double click on it and thats it, you will need to review some directories and configurations to be sure everything continue working. Maybe you will need to reinstall some framework. No más preocupaciones, el nuevo MAMP 4.1 hace todo el trabajo, detectará versión existente y tratará de preservar todos los directorios y datos, solo debe bajar el instalador, dar doble clic y eso es todo, deberá revisar posiblemente algunos directorios y configuraciones para estar seguro que todo continúa trabajando. De pronto reinstalar algún framework.