- 1Password (hijacks the Snippety window)
- AirBuddy
- Amphetamine
- BlockBlock
- Cork (much better than Brewer X)
- CotEditor (fastest text editor with multi–line editing)
- DaisyDisk
- Fantastical
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
| #!/usr/bin/swift | |
| // Run: $ swift noCrashplan.swift | |
| // Background: https://github.com/KrauseFx/overkill/issues/3#issuecomment-270505227 | |
| import Foundation | |
| import Cocoa | |
| import ServiceManagement | |
| let badApps = [ "Code42 CrashPlan", "CrashPlanService", "CrashPlanLauncher", "CrashPlanWeb" ] |
LLDB comes with a great set of commands for powerful debugging.
Your starting point for anything. Type help to get a list of all commands, plus any user installed ones. Type 'help for more information on a command. Type help to get help for a specific option in a command too.
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
| static UICollectionViewListCell *userCell(UICollectionView *collectionView, NSIndexPath *indexPath, NSArray<RTTweet *> *tweets) { | |
| UICollectionViewListCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"UserCell" forIndexPath:indexPath]; | |
| UIListContentConfiguration *contentConfiguration = [UIListContentConfiguration valueCellConfiguration]; | |
| contentConfiguration.image = nil; | |
| RTTweet *tweet = tweets[indexPath.row]; | |
| contentConfiguration.text = tweet.user.username; | |
| contentConfiguration.secondaryText = [tweet.user.followers az_formattedStringForCount]; |
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
| $ sudo rm -rf ~/Library/Caches/com.apple.dt.Xcode \ | |
| rm -rf ~/Library/Developer/Xcode/DerivedData \ | |
| sudo rm -rf "$(getconf DARWIN_USER_CACHE_DIR)org.llvm.clang.$USER/ModuleCache" \ | |
| sudo /usr/libexec/xpccachectl |
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
| Before November 6: | |
| "Resolves an issue that affected app compatibility with iOS 9.0, 9.1 and 9.2. Apps containing asset catalogs built with Xcode 10 whose deployment target was set to iOS 9.0, 9.1 or 9.2 would produce content incompatible with the runtimes of those iOS versions. Rebuilding the application with Xcode 10.1 resolves this issue. (44535967)" | |
| After November 6: | |
| "Known Issues | |
| Apps that contain asset catalogs built using Xcode 10 or later with a deployment target set to iOS 9.0, 9.1 or 9.2 produce content incompatible with the runtimes of those iOS versions. (44535967, 45723580, 45723189)" |
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
| struct MockGenType { | |
| let name: String | |
| let isOptional: Bool | |
| init(name: String, isOptional: Bool = false) { | |
| self.name = name | |
| self.isOptional = isOptional | |
| } | |
| func libRepresentation(hasDefault: Bool = false) -> OptionalTypeSyntax { |
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
| + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
| + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; |
NewerOlder