start new:
tmux
start new with session name:
tmux new -s myname
| default: | |
| paths: | |
| features: 'features' | |
| extensions: | |
| Behat\MinkExtension\Extension: | |
| goutte: ~ | |
| selenium2: ~ | |
| base_url: http://google.co.in | |
| Drupal\DrupalExtension\Extension: | |
| blackbox: ~ |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This gist assumes:
| if [ "${ACTION}" = "build" ] | |
| then | |
| INSTALL_DIR=${SRCROOT}/Products/${PROJECT_NAME}.framework | |
| DEVICE_DIR=${BUILD_ROOT}/${CONFIGURATION}-iphoneos/${PROJECT_NAME}.framework | |
| SIMULATOR_DIR=${BUILD_ROOT}/${CONFIGURATION}-iphonesimulator/${PROJECT_NAME}.framework | |
| if [ -d "${INSTALL_DIR}" ] | |
| then | |
| rm -rf "${INSTALL_DIR}" | |
| fi | |
| mkdir -p "${INSTALL_DIR}" |
| require 'spaceship' | |
| Spaceship.login('AppleDevID') | |
| Spaceship.select_team | |
| Spaceship.certificate.all.each do |cert| | |
| cert_type = Spaceship::Portal::Certificate::CERTIFICATE_TYPE_IDS[cert.type_display_id].to_s.split("::")[-1] | |
| puts "Cert id: #{cert.id}, name: #{cert.name}, expires: #{cert.expires.strftime("%Y-%m-%d")}, type: #{cert_type}" | |
| end |
| // | |
| // Copyright (c) 2012-2015 Cédric Luthi / @0xced. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #if TARGET_OS_SIMULATOR | |
| static const char *fakeCarrier; | |
| static const char *fakeTime; |
| #Surge Mac: Start from 1.3.0 | |
| #Surge iOS: Start from TF 542 | |
| [General] | |
| skip-proxy = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 127.0.0.0/8, 100.64.0.0/10, localhost, *.local, ::ffff:0:0:0:0/1, ::ffff:128:0:0:0/1, e.crashlytics.com | |
| bypass-tun = 192.168.0.0/16, 0.0.0.0/8, 1.0.0.0/9, 1.160.0.0/11, 1.192.0.0/11, 10.0.0.0/8, 14.0.0.0/11, 14.96.0.0/11, 14.128.0.0/11, 14.192.0.0/11, 27.0.0.0/10, 27.96.0.0/11, 27.128.0.0/9, 36.0.0.0/10, 36.96.0.0/11, 36.128.0.0/9, 39.0.0.0/11, 39.64.0.0/10, 39.128.0.0/10, 42.0.0.0/8, 43.224.0.0/11, 45.64.0.0/10, 47.64.0.0/10, 49.0.0.0/9, 49.128.0.0/11, 49.192.0.0/10, 54.192.0.0/11, 58.0.0.0/9, 58.128.0.0/11, 58.192.0.0/10, 59.32.0.0/11, 59.64.0.0/10, 59.128.0.0/9, 60.0.0.0/10, 60.160.0.0/11, 60.192.0.0/10, 61.0.0.0/10, 61.64.0.0/11, 61.128.0.0/10, 61.224.0.0/11, 100.64.0.0/10, 101.0.0.0/9, 101.128.0.0/11, 101.192.0.0/10, 103.0.0.0/10, 103.192.0.0/10, 106.0.0.0/9, 106.224.0.0/11, 110.0.0.0/7, 112.0.0.0/9, 112.128.0.0/11, 112.192.0.0/10, 113.0.0.0/9, 113.128.0.0/11, 113.192.0.0/10, 114. |
| // Declare enums like so: | |
| #define IMAGE_STATUS(XX) \ | |
| XX(kDOImageStatusOK, = 0) \ | |
| XX(kDOImageStatusCached, )\ | |
| XX(kDOImageStatusRetry, ) | |
| DECLARE_ENUM(DOImageStatus, IMAGE_STATUS) |
| # xcode-build-bump.sh | |
| # @desc Auto-increment the build number every time the project is run. | |
| # @usage | |
| # 1. Select: your Target in Xcode | |
| # 2. Select: Build Phases Tab | |
| # 3. Select: Add Build Phase -> Add Run Script | |
| # 4. Paste code below in to new "Run Script" section | |
| # 5. Drag the "Run Script" below "Link Binaries With Libraries" | |
| # 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0) |