These items can be deleted safely.
In Finder: ~/Library/Developer/Xcode/iOS DeviceSupport/
| // Created by Vasily Ulianov on 09.02.17, updated in 2019. | |
| // License: MIT | |
| import Foundation | |
| /// Subclass of `Operation` that adds support of asynchronous operations. | |
| /// 1. Call `super.main()` when override `main` method. | |
| /// 2. When operation is finished or cancelled set `state = .finished` or `finish()` | |
| open class AsynchronousOperation: Operation { | |
| public override var isAsynchronous: Bool { |
| @UIApplicationMain | |
| final class AppDelegate: UIResponder, UIApplicationDelegate { | |
| let healthKitManager = HealthKitManager() | |
| func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
| if onboardingComplete { | |
| healthKitManager.requestAccessWithCompletion() { success, error in | |
| if success { print("HealthKit access granted") } | |
| else { print("Error requesting access to HealthKit: \(error)") } | |
| } |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |