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
| #!/bin/bash | |
| set -e | |
| for i in {1..22}; do | |
| echo $i | |
| gh api "notifications?all=true&page=$i" | jq -r '.[] | select(.repository.full_name == "gitcoinco-n/gitcoin")' | |
| gh api "notifications?all=true&page=$i" | jq -r '.[] | select(.repository.full_name == "gitcoinco-n/gitcoin") | .id' | \ | |
| xargs -I {} gh api -X DELETE 'notifications/threads/{}' | |
| done |
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
| apiVersion: console.openshift.io/v1 | |
| kind: ConsoleQuickStart | |
| metadata: | |
| name: serverless-cli | |
| spec: | |
| displayName: Serverless CLI | |
| description: todo | |
| durationMinutes: 10 | |
| tags: | |
| - knative |
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
| # Add npm-shrinkwrap.json to get a working react-native version (0.22) | |
| rm -rf node_modules | |
| npm install | |
| # Optional: Remove it again to install your other dependencies | |
| rm npm-shrinkwrap.json | |
| npm install | |
| npm start -- --reset-cache |
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
| import java.io.IOException; | |
| public interface ContentWidth { | |
| public float getContentWidth(String text) throws IOException; | |
| } |
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
| if ! pgrep "iPhone Simulator"; then | |
| exit 0; | |
| fi | |
| pids=$(pgrep "iPhone Simulator") | |
| osascript -e 'tell app "iPhone Simulator" to quit' | |
| sleep 1 | |
| for pid in $pids; do | |
| if ps $pid; then |
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
| #!/bin/bash | |
| #set -e | |
| jail="jail" | |
| if [ -e "$jail" ]; then | |
| echo Folder already exists: "$jail" | |
| exit -1 | |
| fi |
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
| #!/bin/bash | |
| IFS=$(echo -en "\n\b") | |
| # Ensure we are in a git repo with gitignore. | |
| if [ ! -d .git ]; then echo "Current working directory is not a git repository."; exit -1; fi | |
| #if [ ! -f .gitignore ]; then echo "Current working directory has no .gitignore file."; exit -2; fi | |
| # Sort (by date) and save new files | |
| for file in `git status --porcelain --untracked-files=all | grep -v '.log$' | grep '^?? ' | sed 's/^?? //g'` | |
| do |
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
| #!/bin/bash | |
| allgits=`find ~/.cocoapods/CUSTOMERNAME ~/git/CUSTOMERNAME -name .git | sed 's_/.git__'` | |
| filter=$* | |
| filter="$filter --author=jerolimov" | |
| filter="$filter --date=iso" | |
| filter="$filter --after=2013-05-01" | |
| filter="$filter --before=2013-05-31" | |
| for i in $allgits |
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
| #defaults delete com.apple.dock | |
| defaults write com.apple.dock no-glass -integer 1 # <= 10.8 sets the black 2D theme | |
| #defaults write com.apple.dock autohide -string -1 # sure | |
| killall Dock | |
| #defaults delete com.apple.dock persistent-apps # remove all apps, should be used after reorder at least one :D |
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
| // javascript reimplementation of | |
| // https://github.com/hellozimi/HCYoutubeParser/blob/master/YoutubeParser/Classes/HCYoutubeParser.m | |
| var url = require('url'); | |
| var http = require('http'); | |
| var videoId = '7qpvjsMaXPE'; | |
| var infoUrl = 'http://www.youtube.com/get_video_info?video_id=' + videoId; |
NewerOlder