Skip to content

Instantly share code, notes, and snippets.

@TheEskhaton
TheEskhaton / web.config.xml
Last active April 1, 2019 12:55
Azure keys
<add key="CMSAzureAccountName" value="ENTER_ACCOUNT_NAME_HERE" />
<add key="CMSAzureSharedKey" value="ENTER_PRIMARY_ACCESS_KEY_HERE" />
@TheEskhaton
TheEskhaton / jget.rb
Last active December 17, 2015 13:48
A simple Ruby script for downloading a certain jquery version from google CND. i.e. "ruby jget.rb 2.0.0" would download 2.0.0 to jquery.min.js
require('open-uri')
class JGet
def self.GetVersion(ver)
script = '';
open('http://ajax.googleapis.com/ajax/libs/jquery/'+ver +'/jquery.min.js') do |f|
f.each_line{|line| script << line}
end
return script
end