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
rm -rf .rvm* | |
#Next you’ll want to remove the following line from your .bash_profile | |
[text] | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function | |
[/text] | |
#You’ll then want to remove the /etc/rvmrc file as this has some information about the RVM install in your /home folder | |
[bash] |
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
# NGINX configuration | |
# System configuration ################## | |
worker_processes 3; | |
events { | |
worker_connections 1024; | |
} | |
user nobody; | |
# Web configuration ##################### |
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
platform :ios, "6.0" | |
pod 'JSONKit' | |
pod 'AFAbstractRESTClient' | |
pod 'SDWebImage' | |
pod 'SWRevealViewController' |
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 ($) { | |
$.fn.pluginName = function (options) { | |
if (this.length > 1) { | |
this.each(function () { $(this).pluginName(options); }); | |
return this; | |
} | |
/* | |
private variables | |
var x = ... |
NewerOlder