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
# RVM Project Workflow | |
- Crear GemSet en RVM | |
$ rvm gemset create miGemsetApp | |
$ rvm gemset use miGemsetApp | |
$ rvm gemset use ruby-2.2.0@miGemsetApp | |
#Antes. | |
$ rvm --rvmrc ruby-2.2.0@miGemsetApp # Esto crea el archivo .rvmrc que necesita permisos de confianza para ejecutar lo que tenga adentro. | |
#Nuevo Workflow. |
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
############################################# | |
# Generar clave SSH | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
M谩s info. en https://help.github.com/articles/generating-ssh-keys/ | |
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# |
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
-- Consulta para migrar la base de datos de WordPress de desarrollo a producci贸n. Cambiando el dominio actual de desarrollo por la direcci贸n final. | |
Gracias Sergio A. Moreyra. | |
OJO esto puede dejar afuera otras tablas creadas por pluggins y themes. | |
UPDATE wp_options | |
SET option_value = replace(option_value,'http://www.TuSitio.com/desarrollo', 'http://www.TuSitio.com') | |
WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts |
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
En WP 3.9 | |
1. Crea un archivo .HTML, llamado lista_de_correos.html o como tu quieras, donde pones el contenido que te genera Google Groups para embeber un grupo en un sitio [consultar: https://support.google.com/groups/answer/1191206], en el caso de ComunidadTIC es (remplaza "comunidadit" por tu grupo). | |
El contenido del archivo es: | |
<iframe id="forum_embed" | |
src="javascript:void(0)" | |
scrolling="no" | |
frameborder="0" | |
width="900" |
NewerOlder