Quisiera presentarles este brazo robótico desarrollado por un amigo, me sorprendió. Muchas felicidades Alan.
The Cult of Done Manifesto
- There are three states of being. Not knowing, action and completion.
- Accept that everything is a draft. It helps to get it done.
- There is no editing stage.
- Pretending you know what you’re doing is almost the same as knowing what you are doing, so just accept that you know what you’re doing even if you don’t and do it.
- Banish procrastination. If you wait more than a week to get an idea done, abandon it.
- The point of being done is not to finish but to get other things done.
- Once you’re done you can throw it away.
- Laugh at perfection. It’s boring and keeps you from being done.
- People without dirty hands are wrong. Doing something makes you right.
- Failure counts as done. So do mistakes.
- Destruction is a variant of done.
- If you have an idea and publish it on the internet, that counts as a ghost of done.
- Done is the engine of more.
Visto en: Bre Pettis
PHPMyAdmin – Error de permisos
Cuando creamos el archivo de configuración para seguridad de los datos de conexión o variables (en caso de que se encuentre automático el acceso a la base de datos) se bloquea el acceso hasta que cuente con los permisos apropiados.
Nos muestra este mensaje “Wrong permissions on configuration file, should not be world writable!”.
Continue reading “PHPMyAdmin – Error de permisos”
El cambio
- EL CAMBIO ES UN HECHO
- PREVÉ EL CAMBIO
- CONTROLA EL CAMBIO
- ADÁPTATE RÁPIDAMENTE AL CAMBIO
- ¡CAMBIA!
- DISFRUTA EL CAMBIO
- PREPÁRATE PARA CAMBIAR RÁPIDAMENTE Y DISFRUTAR OTRA VEZ
Concrete5 en PHP como CGI (Pretty URLs)
PHP como CGI no usa ciertas variables, o no las llena como debe, para hacer funcionar los Pretty URLs en este CMS hay que modificar nuestro .htaccess y /concrete/libraries/request.php
En el .htaccess hay que poner:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
En el /concrete/libraries/request.php hay que agregar
define('SERVER_PATH_VARIABLE', 'REDIRECT_URL');