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
// ==UserScript== | |
// @name ReVerT | |
// @namespace http://icedman21.com | |
// @description Request Verification Tool | |
// @version 0.2 | |
// @author Iced_Man21 | |
// @match https://www.thumbtack.com/admin/requests/syndication/portal* | |
// @updateURL https://gist.github.com/icedman21/6117c5f46a7f58490dfb/raw/revert.user.js | |
// @downloadURL https://gist.github.com/icedman21/6117c5f46a7f58490dfb/raw/revert.user.js | |
// @grant GM_getValue |
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
cd /home/$user/public_html; | |
pwd; | |
wget http://wordpress.org/latest.zip; | |
unzip latest.zip; | |
mv ./wordpress/* ./ -f; | |
rm wordpress -rf; | |
cp wp-config-sample.php wp-config.php; | |
sed -i 's/database_name_here/'$user'/g' wp-config.php; | |
sed -i 's/username_here/'$user'/g' wp-config.php; | |
sed -i 's/password_here/'$password'/g' wp-config.php; |
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
// ==UserScript== | |
// @name SWEET Script | |
// @namespace http://icedman21.com | |
// @description Snippet Writers Efficiency Enhancement Tool | |
// @include https://www.thumbtack.com/admin/ariadne* | |
// @include https://www.thumbtack.com/admin/services/proofread/portal* | |
// @include http://*/admin/services/proofread/portal* | |
// @include https://*/admin/services/proofread/portal* | |
// @updateURL https://gist.github.com/icedman21/d13accec8e7c8215b096/raw/thumbtack_hide_src_Chrome.user.js | |
// @downloadURL https://gist.github.com/icedman21/d13accec8e7c8215b096/raw/thumbtack_hide_src_Chrome.user.js |
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
// ==UserScript== | |
// @name Hide SRC Button - Unified Version | |
// @namespace http://icedman21.com | |
// @description SWEET (Snippet Writers Efficiency Enhancement Tool) Script | |
// @include https://www.thumbtack.com/admin/services/proofread/portal* | |
// @updateURL https://gist.github.com/icedman21/d13accec8e7c8215b096/raw/thumbtack_hide_src_Chrome.user.js | |
// @downloadURL https://gist.github.com/icedman21/d13accec8e7c8215b096/raw/thumbtack_hide_src_Chrome.user.js | |
// @version 8 | |
// @author Iced_Man21 | |
// @grant GM_getValue |