Entradas

Todo listo para su nuevo iPhone (Cómo eliminar este mensaje)

Imagen
  Si le aparece este mensaje al abrir la pantalla de configuración de su iPhone y ya intentó aquella solución de "presionar una vez volúmen arriba, volúmen abajo y luego botón apagar sostenido hasta que aparezca el logo de Apple" y sigue igual. Esta es la solución: Vaya a la configuración y haga los siguientes pasos, nombre --> iCloud --> Administrar almacenamiento --> Respaldos --> Dispositivo --> Ahora borre el último backup que tenga allí. Ahora devolverse hasta donde se encuentra la opción de Respaldo en iCloud y lo apaga. Esta opción está donde encontramos Administrar almacenamiento en el paso anterior un poco más abajo. Puede reiniciar el iPhone para validar que definitivamente se ha ido el mensaje. Luego puede volver a activar la opción respaldo en iCloud en caso de que la vaya a usar.

My Octopus teacher. Finally it's a commercial movie.

Imagen
 After watching "My Octopus teacher" we think on the great adventure this guy had, being a friend with an octopus. But later we can realize than every moment that this person says "I could have intervened and help him (to the octopus)" but he didn't, it was because He was waiting for the result, He needed that another animal finally finished the life of the octopus, otherwise He would stay attached to the octopus more time (wasting time). And the movie must be ended to receive all those famous awards. Don't you think? I can say, another fake friend making money from the results and playing with our feelings. ****Español Después de ver "Mi profesor el pulpo" pensamos en la gran aventura que tuvo este tipo, siendo amigo de un pulpo. Pero luego nos damos cuenta que en todo momento que esta persona dice "Yo podría haber intervenido y ayudarlo (al pulpo)" pero no lo hizo, fue porque estaba esperando el resultado, necesitaba que otro animal fin

How to improve space exploration / Como mejorar la exploración espacial

Imagen
****English The space industry has been stagnant for many years, in 1964 according to NASA and ESA it was possible to send a device to Mars that sent some photos of the planet, the last mission arrived at Mars on 11/26/2018. In this year 2020, 3 new missions were sent , one from the United Arab Emirates, one from China and one from the USA. The 3 estimated to reach Mars in February 2021 . None of these mission has a different proposal that could send strong results, always a vehicle that goes, takes photos and then sends them to Earth, along with measurements that have not been of greater relevance, speaking from my point of view as a world citizen. Today we have interesting technology that could improve all this, but for some strange reason no scientist attached to the exploration agencies occurs to use it. To put it in simple terms, there are many robots that have demonstrated exceptional capabilities and that can be controlled remotely, such devices could already be mass produced an

Codeigniter Sending Email Message: strpos(): Empty needle

Imagen
When sending an email you get this error, regarding Email.php library: A PHP Error was encountered Severity: Warning Message: strpos(): Empty needle Filename: libraries/Email.php Line Number: 937 This is due you need to define the config['charset'] in the email.php file in the config directory of the app. $config['charset']          = null; //original $config['charset']          = 'UTF-8';   //or whatever is good for your app. ***** Este error de strpos(): Empty needle en la librería Email.php significa que no se ha definido una variable llamada charset en el email.php del directorio config de su app.

VirtualBox not working after Mojave update. Kext error.

Imagen
VirtualBox not working after Mojave update. Kext error. If you updated to the most recent macOS Mojave and your VirtualBox is not working anymore just go to https://www.virtualbox.org/wiki/Downloads and download the most recent version. The problem is solved. ****** Si actualizaste al nuevo macOS Mojave y tu máquina de VirtualBox dejó de funcionar, la solución es simple, descarga la más reciente versión.

PHPWord in hosting with no terminal no composer / PHPWord en servidor sin terminal sin composer

If you need to use PHPWord in a hosting environment in which you can't install via composer, you must install it locally on your development machine, then just copy the directory to your hosting provider (normally copy the vendor directory to your root application directory). The only change I needed to do is to have a writable directory where to store the created files. In my case I created "./public/docs" then in the method save: $objWriter->save('./public/docs/my_wordfile.docx'); ********** Si necesita usar PHPWord en un servidor de hosting en el cual no puede instalar usando el composer, lo que debe hacer es instalar en su máquina local, luego solo basta con copiar el directorio a su proveedor de hosting (normalmente copie el directorio vendor al directorio root de su aplicación). El único cambio que necesité hacer is tener un directorio escribible donde dejar los archivos creados. En mi caso yo creé "./public/docs" entonces en el método

PHP Fecha actual / PHP current date

Para que PHP devuelva la fecha actual es muy simple: $data["fechahoy"]=Date('Y-m-d'); Esto se hace en el controlador y cuando se llama a la vista en esta se recibe la variable y se le asigna al input type date como $fechahoy ***************************************** Tell to PHP returns current date is very simple: $data["todaydate"]=Date('Y-m-d'); This must be done in the controller then in the view receive the var to assign to the input type date as $todaydate