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
/Users/username/.rvm/gems/ruby-2.2.2@chevron | |
usage: 'rvm alias [alias_name] [ruby_string]' | |
Regenerating ruby-2.1.5 wrappers........ | |
/Users/username/.rvm/gems/ruby-2.1.5 | |
+ : 7 > cd secure-springs-5928/ | |
+ /scripts/cd : cd() 0 > __zsh_like_cd cd secure-springs-5928/ | |
+ /scripts/extras/bash_zsh_support/chpwd/function.sh : __zsh_like_cd() 1 > typeset __zsh_like_cd_hook | |
+ /scripts/extras/bash_zsh_support/chpwd/function.sh : __zsh_like_cd() 3 > builtin cd secure-springs-5928/ | |
bash: cd: secure-springs-5928/: No such file or directory | |
+ /scripts/extras/bash_zsh_support/chpwd/function.sh : __zsh_like_cd() 14 > return 1 |
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
- (id)initWithCoder:(NSCoder *)aDecoder { | |
if ( self == [super initWithCoder:aDecoder] ) { | |
self.delegate = self; | |
} | |
return self; | |
} | |
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController { | |
} |
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
NSMutableArray *mapItems = response.mapItems.mutableCopy; | |
[mapItems sortUsingComparator:^NSComparisonResult(MKMapItem *item1, MKMapItem *item2) { | |
return [@([item1.placemark.location distanceFromLocation:location]) compare:@([item2.placemark.location distanceFromLocation:location])]; | |
}]; |
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
// | |
// GABlockDelegate.h | |
// GAToolkit | |
// | |
// Created by Geoff on 12/29/2013. | |
// Copyright (c) 2013 Geoff. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |