Last active
December 18, 2018 02:10
-
-
Save danielverissimo/d9aefb17c95b5e658ccb1aa031aa2aaf to your computer and use it in GitHub Desktop.
Desenvolvimento, utilidades
This file contains 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
FTP/SFTP | |
Criar FTP/SFTP Mac | |
http://osxdaily.com/2011/09/29/start-an-ftp-or-sftp-server-in-mac-os-x-lion/ | |
Habilitar ZSH Ubuntu | |
apt-get install zsh | |
echo "DEBIAN_PREVENT_KEYBOARD_CHANGES=yes" >> ~/.zshenv | |
SSHFS Ubuntu | |
Instalar: | |
sudo apt install sshfs | |
Montar diretório remoto: | |
sshfs user@ip:/ /path_mount_dir | |
HABILITAR DEBUG PELO CONSOLE
export XDEBUG_CONFIG="idekey=PHPSTORM remote_host=192.168.15.24"
export PHP_IDE_CONFIG="serverName=Homestead"
https://medium.com/@michalisantoniou6/set-up-xdebug-with-homestead-phpstorm-and-php7-85b5ac8f0c79
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CSV
Remover coluna CSV
cut -d, -f2,3 input.csv > out.csv // Remove a primeira coluna de um CSV e salva em out.csv
Importar CSV para MySQL