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
/* Delete GitHub labels | |
* @ref: https://gist.github.com/Isaddo/7efebcb673a0957b9c6f07cd14826ea4 | |
* | |
* @see: https://gist.github.com/bitst0rm | |
* export-github-labels.js | |
* import-github-labels.js | |
* delete-github-labels.js | |
* | |
* To use: | |
* 1. Go to the labels page of your repository (e.g., https://github.com/user/repo/labels). |
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
/* Import GitHub labels | |
* @ref: https://gist.github.com/Isaddo/7efebcb673a0957b9c6f07cd14826ea4 | |
* | |
* @see: https://gist.github.com/bitst0rm | |
* export-github-labels.js | |
* import-github-labels.js | |
* delete-github-labels.js | |
* | |
* To use: | |
* 1. Go to the labels page of your repository (e.g., https://github.com/user/repo/labels). |
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
/* Export GitHub Labels | |
* @ref: https://gist.github.com/Isaddo/7efebcb673a0957b9c6f07cd14826ea4 | |
* | |
* @see: https://gist.github.com/bitst0rm | |
* export-github-labels.js | |
* import-github-labels.js | |
* delete-github-labels.js | |
* | |
* To use: | |
* 1. Go to the labels page of your repository (e.g., https://github.com/user/repo/labels). |
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
tell application "TextEdit" | |
activate | |
tell application "System Events" to keystroke "name,login_username,login_uri,login_password" | |
tell application "System Events" to keystroke return | |
end tell | |
repeat 1 times | |
tell application "Keychain Access" | |
activate | |
tell application "System Events" to keystroke "i" using command down | |
delay 0.4 |
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
#!/usr/bin/env bash | |
# A bash script to download chrome extension files from Chrome Web Store | |
# 30.12.2018, https://github.com/bitst0rm | |
declare -a arr=( | |
"https://chrome.google.com/webstore/detail/chrome-extension-source-v/jifpbeccnghkjeaalbbjmodiffmgedin" | |
"https://chrome.google.com/webstore/detail/ecleaner-forget-button/ejhlpopncnfaaeicmbdnddebccnkfenn" | |
"https://chrome.google.com/webstore/detail/enhancer-for-youtube/ponfpcnoihfmfllpaingbgckeeldkhle" | |
"https://chrome.google.com/webstore/detail/exif-viewer/nafpfdcmppffipmhcpkbplhkoiekndck" | |
"https://chrome.google.com/webstore/detail/gismeteo/bfegaehidkkcfaikpaijcdahnpikhobf" |
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
#!/usr/bin/sh | |
# To use SOCKS5 Tor Browser with GitHub | |
# ~/.gitconfig | |
git config --global http.proxy 'socks5://127.0.0.1:9150' | |
git config --global https.proxy 'socks5://127.0.0.1:9150' |
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
#!/usr/bin/sh | |
# Script to generate host list and check for dead hosts | |
echo "Generating supported host list..." | |
sed -n 's/.*case "\(.*\)":.*/\1/p' HandyImage.user.js | sort | uniq > supported-host-list.txt | |
read -p "Do you want to check broken hosts? (y/n)" RESP | |
if [ "$RESP" = "y" ]; then | |
echo "Checking broken hosts..." | |
while read URL; do |