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
    
  
  
    
  | git diff --no-prefix --ignore-space-at-eol | sed -e "s/^diff --git [^[:space:]]*/Index:/" -e "s/^index.*/===================================================================/" > changes.patch | 
  
    
      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
    
  
  
    
  | // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | 
  
    
      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
    
  
  
    
  | Homebrew build logs for homebrew/versions/gcc49 on Mac OS X 10.11.4 | |
| Build date: 2016-05-16 23:03:15 | 
  
    
      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
    
  
  
    
  | # First install tmux | |
| brew install tmux | |
| # For mouse support (for switching panes and windows) | |
| # Only needed if you are using Terminal.app (iTerm has mouse support) | |
| Install http://www.culater.net/software/SIMBL/SIMBL.php | |
| Then install https://bitheap.org/mouseterm/ | |
| # More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/ | 
  
    
      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
    
  
  
    
  | # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> | 
  
    
      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
    
  
  
    
  | # Google China hosts, use at your own risk | |
| #address=/ggpht.com/203.208.46.29 | |
| #address=/googleusercontent.com/203.208.46.29 | |
| #address=/gstatic.com/203.208.46.29 | |
| #address=/google.com.hk/203.208.46.29 | |
| #address=/google.com/203.208.46.29 | |
| #address=/youtube.com/203.208.46.29 | |
| #address=/ytimg.com/203.208.46.29 | |
| server=/115.com/114.114.114.114 | 
  
    
      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
    
  
  
    
  | var direct = 'DIRECT'; | |
| //var http_proxy = 'SOCKS5 127.0.0.1:7777; SOCKS 127.0.0.1:7777'; | |
| var http_proxy = 'PROXY 127.0.0.1:8087'; | |
| var gfwed_list = [ | |
| "adzerk.net", | |
| "akamai.net", | |
| "akamaihd.net", | |
| "amazon.com", | |
| "appspot.com", | 
  
    
      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
    
  
  
    
  | @implementation SwipSegue | |
| - (void)perform | |
| { | |
| UIViewController *dest = (UIViewController *)self.destinationViewController; | |
| UIViewController *source = (UIViewController *)self.sourceViewController; | |
| // 先present,然后再做ViewAnimation,这样View的Callbacks就调用正常了。 | |
| [source presentViewController:dest animated:NO completion:nil]; | |