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
cat yourdomain_com.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt >> ssl-bundle.crt |
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
require 'octokit' | |
# usage: $ ACCESS_TOKEN=1234567890abcdef ruby followbomb.rb | |
# create a token here: https://github.com/settings/tokens/new | |
client = Octokit::Client.new :access_token => ENV['ACCESS_TOKEN'] | |
puts "Loading members of all orgs" | |
members = client.orgs.map{|org| client.organization_members(org.login) }.flatten.map(&:login) |
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
@@ -1418,9 +1419,18 @@ | |
// Make the request, allowing the user to override any Ajax options. | |
return Backbone.ajax(_.extend(params, options)); | |
}; | |
- | |
+var credentials; | |
// Set the default implementation of `Backbone.ajax` to proxy through to `$`. | |
Backbone.ajax = function() { | |
+ if (arguments[0].credentials) { | |
+ console.log("Storing credentials", arguments[0].credentials); |