Install Zinit Create a .zshrc Copy the next code to .zshrc file: Before copy, make sure VIM is correctly configured Save the .zshrc file Close iterm2 Open again iterm2 Follow the instructions on the terminal window, if everything went well you will see something like the next screenshot. This is how my terminal looks:
Author / DevTeam
Configura tu Mac
##HOMEBREW Primero que nada recomendamos leer mas de : Homebrew Puedes instalar tu software de la manera tradicional o ser ninja: Por medio de tu terminal ejecutamos los siguiente comandos Posiblemente el Apple’s Command Line Tools se instale automático pero hagamos esto por si las dudas, Instala Homebrew en tu Mac: Si Brew se instala […]
Easy Engine v4.0 – Experiments
Add PDO_mysql ##Add mysql_pdo extension ee shell example.com –command=’docker-php-ext-install pdo_mysql’ –user=root ##Reload Container ee site reload container
Node Server with Express
Or Install Node Manually Install Yarn https://yarnpkg.com/lang/en/docs/install/#debian-stable Go to Project and
Hombrew OSX
Before Everything: brew update brew upgrade Fix Permissions sudo chown -R $(whoami):admin /usr/local Install Vim 8 brew install vim –override-system-vim Install PHP7.1 (20.03.17) brew tap homebrew/dupes brew tap homebrew/versions brew tap homebrew/homebrew-php brew install php71 Install Latest Rsync brew tap homebrew/dupes brew install rsync brew link rsync Install Latest Tmux brew install tmux
Fixing Ubuntu Random Issues
Fixing NO_PUBKEY: W: GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 2EA8F35793D8809A apt-key adv –keyserver keyserver.ubuntu.com –recv-keys 4F4EA0AAE5267A6C or for EasyEngine: apt-key adv –keyserver keyserver.ubuntu.com –recv 3050AC3CD2AE6F03 Fixing PIP / Letsencrypt Error: OSError: Command /root/.local/share/letsencrypt/bin/python2.7 – setuptools pkg_resources pip wheel failed with […]
Useful commands for Docker
Enter Bash of your Docker docker exec -it docker_wordpress_1 bash Delete All Images & Containers #!/bin/bash # Delete all containers docker rm $(docker ps -a -q) # Delete all images docker rmi $(docker images -q)