CentOS Python crash after update: Urandom [SOLVED]
We updated our CentOS machines and when we restarted our Apache servers, and tried to access the sites, a “500 Internal Server Error” was being shown. We noticed some ugly shit in Apache error.log:...
View ArticleInstalar pip (python) en MAC [RESUELTO]
Si programáis habitualmente en python, pip es una herramienta imprescindible. Para instalarlo en un sistema MAC (OS X Mountain Lion en mi caso), es tan fácil como abrir Terminal y ejecutar: sudo...
View ArticleRename multiple files using sequence number in OSX from command line [SOLVED]
With this command you will rename all the jpg files in the current directory to PREFIX_0000.jpg to PREFIX_9999.jpg find . -name '*.jpg' \ | awk 'BEGIN{ a=0 }{ printf "mv %s PREFIX_%04d.jpg\n", $0, a++...
View ArticleInstall DISTCACHE on RHEL6 [SOLVED]
Installing distcache on RHEL6 can be tricky. Let’s see how to do it… cd /home/miguelm/invenio113/prerequisites/distcache wget...
View ArticleDuplicate VIEWS in MySQL [SOLVED]
MySQL views are stored in information_schema.views table. You can list your views: mysql> USE information_schema; mysql> DESCRIBE views;...
View ArticleZ39.50 command line client: YAZ CLIENT
YAZ-CLIENT is a useful command line Z39.50 client. You can install it with apt-get in your Debian box. Connecting to Z39.50 server You can connect to your server prividing IP Address/Port...
View ArticleRESUELTO – Internet Explorer (IE7, IE8, IE9, IE10, IE11) en MAC (OS X)
Muchas veces nos vemos en la obligación de probar cómo se ve una web en Internet Explorer. Inexplicablemente, todavía hay muchos usuarios que emplean Internet Explorer en sus versiones más antiguas...
View ArticleRESUELTO – Conectar a VMware VCenter desde OSX (Mac)
¿Cuál es la forma más sencilla de conectarte a VCenter desde tu Mac? Sigue los pasos del post para instalar VirtualBox y una máquina virtual Windows, después inicia la máquina virtual recién instalada,...
View ArticleEntorno para desarrollo Drupal 8 en Mac: Docker con Apache + MariaDB + PHP + …
Vamos a ver cómo crear un entorno de desarrollo para Drupal 8 en OSX utilizando docker-compose. Con unos sencillos pasos conseguiremos tener montado de forma muy rápida un entorno completo que cuente...
View ArticleDocker para desarrollo Yii2 en MacOS
En el post anterior vimos cómo crear un entorno de desarrollo para Drupal8 usando Docker. Pero, ¿y si quiero usar otro framework de PHP, por ejemplo Yii2, en mi OSX? Es muy sencillo. Instalación del...
View Article