Pentesting-Exploitation Programs and Commands , Protocols Network / Ports
Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!
After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg
-novid -freq 144 -refresh 144 -tickrate 128 -maxplayers_override 50 -nojoy -nod3d9ex1 +exec autoexec.cfg
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
| // Keywords: Google chrome, chromium, puppeter, selenium, web scrapping | |
| // You can use this script to download all google images | |
| // as far Google allows | |
| // 1. Go to google images | |
| // 2. Do a search. I.e : casa | |
| // 3. Copy the code below and wait until it finish | |
| // To see all the urls of all the images visit this: window.__GoogleImagesFullRessImages__ | |
| function scrollToTheEndOrToMax(opts = {}) { |
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
| /** | |
| * This function takes adventage of the Javascript references. | |
| * It just create a object to map the parent ids with it children. | |
| * After it just filter the values of the object map | |
| * Note: this function does not modify the original object, its inmutable | |
| * @param {*} arr Array with the no structured children | |
| * @param {*} key Attribute name that are been usisng as id | |
| * @param {*} parentKey Attribute name that are been usisng to relating to a parent row | |
| * @return {Object with root and nodes} This function returns a object with the root and | |
| * a map of nodes by key |
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
| // Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
| // See also: http://www.paulund.co.uk/change-url-of-git-repository | |
| $ cd $HOME/Code/repo-directory | |
| $ git remote rename origin bitbucket | |
| $ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
| $ git push origin master | |
| $ git remote rm bitbucket |