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
    
  
  
    
  | # ASIA | |
| _ = '173.194.36.%s' # del 印度 新德里 | |
| SG3 = '173.194.38.%s' # 新加坡 | |
| TW3 = '173.194.72.%s' | |
| SG4 = '173.194.117.%s' | |
| JP2 = '173.194.120.%s' | |
| _ = '173.194.123.%s' | |
| JP1 = '173.194.126.%s' | |
| HK1 = '173.194.127.%s' | |
| TW1 = '74.125.23.%s' | 
  
    
      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
    
  
  
    
  | // | |
| // SlideAnimatedTransitioning.h | |
| // SwipeLeft | |
| // | |
| // Created by Visnu on 4/14/14. | |
| // Copyright (c) 2014 Visnu Pitiyanuvath. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | 
  
    
      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
    
  
  
    
  | operator infix --> {} | |
| func --> (instance: Any, key: String) -> Any? { | |
| let mirror = reflect(instance) | |
| for index in 0 ..< mirror.count { | |
| let (childKey, childMirror) = mirror[index] | |
| if childKey == key { | |
| return childMirror.value | |
| } | |
| } | 
  
    
      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
    
  
  
    
  | // | |
| // Queue.swift | |
| // NTBSwift | |
| // | |
| // Created by Kåre Morstøl on 11/07/14. | |
| // | |
| // Using the "Two-Lock Concurrent Queue Algorithm" from http://www.cs.rochester.edu/research/synchronization/pseudocode/queues.html#tlq, without the locks. | |
| // should be an inner class of Queue, but inner classes and generics crash the compiler, SourceKit (repeatedly) and occasionally XCode. | 
  
    
      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
    
  
  
    
  | let colorSpace = CGColorSpaceCreateDeviceRGB() | |
| let componentCount : UInt = 4 | |
| let components : [CGFloat] = [ | |
| 0, 0, 0, 0, | |
| 1.0, 1.0, 1.0, 1.0, | |
| 1.0, 1.0, 1.0, 1.0, | |
| 0, 0, 0, 0 | |
| ] | 
  
    
      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
    
  
  
    
  | func encode<T>(var value: T) -> NSData { | |
| return withUnsafePointer(&value) { p in | |
| NSData(bytes: p, length: sizeofValue(value)) | |
| } | |
| } | |
| func decode<T>(data: NSData) -> T { | |
| let pointer = UnsafeMutablePointer<T>.alloc(sizeof(T.Type)) | |
| data.getBytes(pointer) | |
  
    
      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
    
  
  
    
  | protobuf | |
| protobuf-2.6.0 | |
| protobuf-2.6.1 | |
| protobuf-master | 
  
    
      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
    
  
  
    
  | kCFURLErrorUnknown = -998, | |
| kCFURLErrorCancelled = -999, | |
| kCFURLErrorBadURL = -1000, | |
| kCFURLErrorTimedOut = -1001, | |
| kCFURLErrorUnsupportedURL = -1002, | |
| kCFURLErrorCannotFindHost = -1003, | |
| kCFURLErrorCannotConnectToHost = -1004, | |
| kCFURLErrorNetworkConnectionLost = -1005, | |
| kCFURLErrorDNSLookupFailed = -1006, | |
| kCFURLErrorHTTPTooManyRedirects = -1007, | 
  
    
      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
    
  
  
    
  | extension NSTimer { | |
| /** | |
| Creates and schedules a one-time `NSTimer` instance. | |
| - Parameters: | |
| - delay: The delay before execution. | |
| - handler: A closure to execute after `delay`. | |
| - Returns: The newly-created `NSTimer` instance. | |
| */ | 
  
    
      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
    
  
  
    
  | > $PROJECT_DIR/merge.swift; find $PROJECT_DIR/ -iname *.swift -not -name merge.swift -exec cat {} >> $PROJECT_DIR/merge.swift \; |