/* Repo releases */
https://github.com/:owner/:repo/releases.atom
/* Repo commits */
https://github.com/:owner/:repo/commits.atom
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
| # Local .terraform directories | |
| **/.terraform/* | |
| # .tfstate files | |
| *.tfstate | |
| *.tfstate.* | |
| # Crash log files | |
| crash.log | |
| crash.*.log |
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
| FILE SPACING: | |
| # double space a file | |
| sed G | |
| # double space a file which already has blank lines in it. Output file | |
| # should contain no more than one blank line between lines of text. | |
| sed '/^$/d;G' |
When the shared files on Google Drive is downloaded, it is necessary to change the download method by the file size. The boundary of file size when the method is changed is about 40MB.
filename="### filename ###"
fileid="### file ID ###"
curl -L -o ${filename} "https://drive.google.com/uc?export=download&id=${fileid}"When the shared files on Google Drive is downloaded, it is necessary to change the download method by the file size. The boundary of file size when the method is changed is about 40MB.
filename="### filename ###"
fileid="### file ID ###"
curl -L -o ${filename} "https://drive.google.com/uc?export=download&id=${fileid}"I keep promising to folumlise this but we do it once in a while and i forget!
- install xcode
- open terminal
sudo xcodebuild -license - git clone https://github.com/abuxton/strap.git
- git clone https://github.com/abuxton/homebrew-brewfile.git
- git clone https://github.com/abuxton/dotfiles.git
- ln -s ~/dotfiles ~/.dotfiles
- cd strap && bash strap.sh --debug
- cd ~/.dotfiles && ./bootstrap.sh
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
| all: teams | |
| team: | |
| echo $(team_name) | |
| for i in `gh api /orgs/hashicorp/teams/$(team_name)/members | jq '.[].login' | sed 's/"//g'` ; do echo $i && gist -l $i ;done; | |
| # to get the list of all teams in org | |
| teams: | |
| gh api /orgs/hashicorp/teams | jq '.[].name' |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
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
| // ==UserScript== | |
| // @name _Add an image to a web page | |
| // @include http://stackoverflow.com/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js | |
| // ==/UserScript== | |
| $("body").append ( | |
| '<img id="myNewImage" src="https://www.pikpng.com/pngl/m/399-3994789_mst3k-mystery-science-theater-silhouettes-clipart.png">' | |
| ); | |
| $("#myNewImage").css ( { |
NewerOlder