A Pen by Nunaram Hembram on CodePen.
  
    
      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
    
  
  
    
  | #if UNITY_EDITOR | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Reflection; | |
| public class EditorFontSize : EditorWindow | |
| { | |
| // enable resize on launch to set a default font size , using this option will disable the ability to have the window accassible | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using UnityEditor; | |
| using UnityEditor.Compilation; | |
| using UnityEngine; | |
| [InitializeOnLoad] | |
| public class AsmdefDebug | |
| { | 
  
    
      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
    
  
  
    
  | "All user-dependent configurations are omitted intentionally. | |
| "This gist only includes configurations for omnisharp. | |
| "Original vimrc is available on: | |
| "https://github.com/OmniSharp/omnisharp-vim#example-vimrc | |
| "========================================================= | |
| " **Preparation steps | |
| "1. Install pathogen.vim or preferred plugin manager | |
| "(Will explain procedures with assumption that a user is using pathogen.vim) | |
| " **Main steps | 
  
    
      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
    
  
  
    
  | chrome.downloads.onChanged.addListener((delta) => { | |
| if((delta.canResume || {}).current === true | |
| && (delta.error || {}).current === chrome.downloads.InterruptReason.NETWORK_FAILED){ | |
| chrome.downloads.resume(delta.id); | |
| } | |
| }); | 
  
    
      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
    
  
  
    
  | # Copyright (c) 2017: Rich Wareham, Simon Byrne | |
| # Available under the MIT "Expat" license. | |
| using Colors | |
| using SenseHat | |
| const LED = led_matrix() | |
| function julia(z, c) | |
| maxit = 50 | 
  
    
      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
    
  
  
    
  | @secure_token_id = UUID.generate.gsub('-', '').slice(0, 25) | |
| current_user.update_attribute(:paypal_token_id, @secure_token_id) | |
| paypal_params = {'PARTNER' => 'PayPal', 'VENDOR' => PAYPAL_USER, 'USER' => PAYPAL_USER, \ | |
| 'PWD' => PAYPAL_MANAGER_PASSWORD, 'TRXTYPE' => 'S', 'AMT' => cost, 'CREATESECURETOKEN' => 'Y', \ | |
| 'SECURETOKENID' => @secure_token_id | |
| }.to_param | |
| paypal_params += "&RETURNURL=#{paypal_success_url}&ERRORURL=#{paypal_error_url}&SILENTPOSTURL=#{paypal_silent_post_url}&CANCELURL=#{subscribe_url}" |