curso tomado de https://www.youtube.com/playlist?list=PLas30d-GGNa2UW9-1H-NCNrUocvWD9cyh
~ ᐅ pip install selenium
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
| https://devqa.io/git/install-git-mac-generate-ssh-keys | |
| En este tutorial paso a paso de Git, veremos cómo instalar Git en una máquina Mac, cómo generar claves SSH y cargar su clave SSH pública en su cuenta de GitHub para su autorización. | |
| Cómo instalar Git en Mac | |
| Abra una terminal y escriba | |
| $ brew install git | |
| Esto instalará Git en su sistema. Para confirmar la instalación, escriba |
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
| basado en la siguiente liga https://gorails.com/setup/osx/10.13-high-sierra | |
| Previamente se ha instalado Sourtree y configurado las cuentas github y bitbucket | |
| Se instaló iTerm y OhMyZsh vía curl | |
| $ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| ===================== | |
| Pasos: |
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
| http://stackoverflow.com/questions/21965611/how-can-i-run-the-ssh-agent-auto-in-the-zsh-environment | |
| open .zshrc in a text editor: | |
| vim ~/.zshrc | |
| Add ssh-agent to the plugins list and save: | |
| plugins=(git ssh-agent) | |
| You may want to immediately reload your .zshrc settings: | |
| source ~/.zshrc |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
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
| # list all available versions: | |
| $ rbenv install -l | |
| # install a Ruby version: | |
| $ rbenv install 2.0.0-p247 | |
| $ rbenv local 1.9.3-p327 | |
| $ rbenv global 1.8.7-p352 |
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
| guia de instalación en windows 7 | |
| http://aryannava.com/2014/04/05/installing-vagrant-on-windows-7-and-8/ | |
| guía de configuración | |
| http://simplesideias.com.br/usando-o-vagrant-como-ambiente-de-desenvolvimento-no-windows | |
| nota: la llave vagrant.ppk se genera del ssh que contiene la vm por ejemplo | |
| C:\xx\.vagrant\machines\default\virtualbox |
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
| versiones utilizadas virtualBox 4.3.22, vagrant 1.7.2, rails 4.2.0 | |
| al correr rails server poner | |
| $ rails server -b 0.0.0.0 | |
| El directorio /vagrant dentro del ambiente virtual posee el mismo Vagrantfile que se encuentra en nuestro sistema anfitrión. Cualquier archivo que coloquemos en este directorio será accesible desde cualquiera de los 2 extremos. |
NewerOlder