Skip to content
View NSMutableString's full-sized avatar
🏡
Working from home
🏡
Working from home
Block or Report

Block or report NSMutableString

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotFiles dotFiles Public

    Backup of my current preferred setup

    Shell 4

  2. cheatSheets cheatSheets Public

    All my cheat sheets

  3. be.chronux.typedTranslations be.chronux.typedTranslations Public

    Generate constants from your Localizable.strings file for easy access

    Swift 1

  4. XCode show build duration XCode show build duration
    1
    defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool YES
  5. Enable unit testing on large project... Enable unit testing on large projects the easy way (without selecting all files individually)
    1
    // Performance hit taken with this approach
    2
    @testable import TestProduct
    3
    
    
    4
    // Best way stays adding the files you want to test to the test target...
  6. Show hidden files on mac using Finder Show hidden files on mac using Finder
    1
    defaults write com.apple.Finder AppleShowAllFiles YES
    2
    
    
    3
    killall Finder