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 the string tags can, but shouldn't, be empty --> | |
| <!-- When your app uses location when active (foreground) --> | |
| <key>NSLocationWhenInUseUsageDescription</key> | |
| <string>Used in 'Near Me' and 'Directions'</string> | |
| <!-- When your app uses location always (including background) --> | |
| <key>NSLocationAlwaysUsageDescription</key> | |
| <string>Used to track your location and inform your GF in case of cheating.</string> |
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
| # SSH into machine | |
| # Update packages | |
| sudo yum update | |
| # Create deploy user | |
| sudo adduser deploy | |
| # Install system-wide RVM | |
| \curl -sSL https://get.rvm.io | sudo bash -s stable |
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
| // ... | |
| @property (nonatomic) NSMutableArray* rowDescriptions; | |
| // ... | |
| - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section | |
| { | |
| return self.rowDescriptions.count; | |
| } | |
| // ... |