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
Verifying I am +emresebat on my passcard. https://onename.com/emresebat |
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 getParseHeader = function () { | |
return { | |
"X-Parse-Application-Id": "ENTER_APP_ID", | |
"X-Parse-REST-API-Key": "ENTER_API_KEY", | |
"Content-Type": "application/json" | |
}; | |
}; | |
var getParseUrl = function (className) { | |
return "https://api.parse.com/1/classes/" + className; |
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
#!/bin/bash | |
#post .js file contents to BaasBox to create plugin | |
#usage bash postBaasBoxPlugin.sh sample.js | |
#get fileName | |
fileName="$1" | |
#uncomment below line to read file contents to variable | |
#codeContent=$(<$fileName) |