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
var angularAppName = 'angularStore'; //replace this with your app name | |
var $inj = angular.injector([angularAppName]); | |
var serv = $inj.get('$http'); | |
var x = serv({method: 'POST', url: 'http://127.0.0.1:5000'}).success(function(data){console.log(data)}).error(function(data, status, header){ console.log(data); console.log(status); console.log(header);}); | |
console.log(x); |
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
Alfred Custom Searches for Jira and Confluence | |
j - Jira issue number search - https://YOURCOMPANY.atlassian.net/issues/?jql=text%20~%20"{query}" | |
j+ - Jira issue full text search - https://YOURCOMPANY.atlassian.net/QuickSearch.jspa?searchString={query} | |
c+ - Confluence text search - https://YOURCOMPANY.atlassian.net/wiki/dosearchsite.action?queryString={query} | |
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
xcodebuild -scheme AppName clean archive -archivePath build/archiveName | |
xcodebuild -exportArchive -exportFormat ipa -archivePath " build/archiveName.xcarchive" -exportPath "build/AppName.ipa" -exportProvisioningProfile "ProvisioningProfileName" |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
Code to setup an integration between Mondo/Monzo webhooks and Fieldbook. | |
https://monzo.com/ and https://fieldbook.com |
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
# fbr - checkout git branch (including remote branches) | |
fbr() { | |
local branches branch | |
branches=$(git branch --all | grep -v HEAD) && | |
branch=$(echo "$branches" | | |
fzf-tmux -d $(( 2 + $(wc -l <<< "$branches") )) +m) && | |
git checkout $(echo "$branch" | sed "s/.* //" | sed "s#remotes/[^/]*/##") | |
} | |
# fco - checkout git branch/tag |
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
/** | |
* Function to wrap cordova plugin functions in | |
* a Promise, to allow Angular / Zone.js to pick up changes | |
*/ | |
export function cordovaPromise(original : Function) { | |
return (...args: any[]) => { | |
return new Promise((resolve, reject) => { | |
original.call(this, resolve, reject, ...args); | |
}); |
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
const validateResponse = ajaxResponse => { | |
if (ajaxResponse.status === 202) { // async operation on backend | |
return Observable.throw({ retry: true, ajaxResponse }); | |
} | |
return Observable.of(ajaxResponse); | |
}; | |
const userDataCaching = errors => | |
errors |
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
async function showRationaleDialog(title: string, message: string) { | |
let done; | |
const result = new Promise(resolve => { | |
done = resolve; | |
}); | |
const alert = Alert.alert(title, message, [ | |
{ | |
text: 'OK', | |
onPress: () => done() |