{{location.city_prefix}} {{person.firstName}}{{location.city_suffix}}e.g. South Stephenland{{location.city_prefix}} {{person.firstName}}e.g. North Micheal{{person.firstName}}{{location.city_suffix}}e.g. Vincentview{{person.lastName}}{{location.city_suffix}}e.g. Britsland
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
| [ | |
| { | |
| "code": "ad", | |
| "description": "", | |
| "name": "Andorra", | |
| "callingCodes": [ | |
| "+376" | |
| ], | |
| "currencies": [ | |
| "Euro" |
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 will delete any local branches which are tracking branches, but the branch on origin has gone (ie its been merged to master already) | |
| # it wont delete any local branches which dont have a matching origin, or havent been merged | |
| git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; 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
| mogrify -geometry 1600x900^ -gravity center -crop 1600x900+0+0 *.jpg |
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
| function walk(node) { | |
| // I stole this function from here: | |
| // http://is.gd/mwZp7E | |
| var child, next; | |
| var tagName = node.tagName ? node.tagName.toLowerCase() : ""; | |
| if (tagName == 'input' || tagName == 'textarea') { | |
| return; | |
| } |
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
| https://github.com/user/project/pull/XX | |
| If you just want the changes, not the commits you can generate a patch file by adding .patch to the pull request URL. | |
| curl -L https://github.com/user/project/pull/XX.patch | git apply |
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
| const project="PN_***********" | |
| const org="********" | |
| const repo="**********" | |
| const token="gho_*******************************" | |
| const fetch = require("node-fetch") | |
| const parse = require("parse-link-header") | |
| const getAllIssuesPaginated = async () => { | |
| let issues = [] | |
| let url = "https://api.github.com/repos/"+org+"/"+repo+"/issues?per_page=100&pulls=false" |
OlderNewer