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 [ -n "$BASH_VERSION" ] || [ -n "$ZSH_VERSION" ]; then | |
| source /usr/local/share/chruby/chruby.sh | |
| source /usr/local/share/chruby/auto.sh | |
| fi |
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
| upstream QAirServer_server{ | |
| server unix:/opt/QAirServer/shared/sockets/puma.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 443 default deferred ssl; | |
| server_name qairapp.com; | |
| root /opt/QAirServer/current/public; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <package xmlns="http://apple.com/itunes/importer" version="software5.1"> | |
| <team_id>TEAM-ID</team_id> | |
| <software> | |
| <vendor_id>VENDOR-ID</vendor_id> | |
| <software_metadata> | |
| <versions> | |
| <version string="1.1.3"> | |
| <locales> | |
| <locale name="en-US"> |
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
| body { | |
| font-family: 'HelveticaNeue-UltraLight', 'Helvetica Neue UltraLight', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |
| font-weight: 100; | |
| letter-spacing: 1px; | |
| } |
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
| NSString *a = @"bar"; | |
| NSString *aSelector = @"uppercaseString"; | |
| NSString *b = [a performSelector:NSSelectorFromString(aSelector)]; | |
| //NSString *b = objc_msgSend(a, NSSelectorFromString(aSelector)); | |
| NSLog(@"b: %@", b); | |
| //=> b: "BAR" |
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
| rails (3.2.13) | |
| pg (0.14.1) | |
| pg_array_parser (0.0.8) | |
| postgres_ext (0.3.1) | |
| activerecord (~> 3.2.0) | |
| pg_array_parser (~> 0.0.8) |