This file contains 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
git clone foo | |
cd foo | |
git remote add myfork ssh://mylogin@myserver/mypath/foo.git | |
git push myfork -all |
This file contains 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
#!/bin/sh | |
if [ "$BUILD_STYLE" == "Debug" ]; then | |
echo "Skipping debug" | |
exit 0; | |
fi | |
if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then | |
echo "Skipping simulator build" | |
exit 0; |
This file contains 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
if ([UIDevice instancesRespondToSelector:@selector(userInterfaceIdiom)] | |
&& [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) { | |
// on iPad, running as iPad | |
} else { | |
// either not in 3.2, or on an iPhone, or on iPad in iPhone compatability mode |
This file contains 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
/Developer/Applications/Xcode.app/Contents/MacOS/Xcode *.xcodeproj & | |
File: /SourceCache/DevToolsBase/DevToolsBase-1763/pbxcore/Target.subproj/PBXTarget.m | |
Line: 4113 | |
Object: <PBXNativeTarget:0x200a1fd00> | |
Method: targetBuildContext | |
Assertion failed: (nil != [self project]) && ![[self project] isClosed] | |
This file contains 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
https://github.com/trptcolin/consistency_fail | |
https://github.com/dsboulder/query_reviewer | |
This file contains 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
// | |
// CLLocation+Simulator.h | |
// had | |
// | |
// Created by Shane Zatezalo on 7/13/11. | |
// Copyright 2011 Lottadot, LLC. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import <CoreLocation/CoreLocation.h> |
This file contains 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
$ md5sum xcode_4.2_and_ios_5_sdk_beta_5_for_lion.dmg | |
3a4810457ad580de0f7cfb4bd78cd9a7 xcode_4.2_and_ios_5_sdk_beta_5_for_lion.dmg |
This file contains 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
xcrun -sdk iphoneos PackageApplication \ | |
"build/Enterprise-iphoneos/some.app" \ | |
-o "${WORKSPACE}/some.ipa" \ | |
--sign "iPhone Distribution: Some Company LLC" \ | |
--embed "{somepathto}/Assets/provisioning/com.company.some.enterprise.mobileprovision" |
This file contains 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
if ENV['SL_RUN_UNIT_TESTS'] then | |
#launcher_path = File.join(ENV['SRCROOT'], "Scripts", "ios-sim") | |
launcher_path = "/usr/local/bin/ios-sim" | |
test_bundle_path= File.join(ENV['BUILT_PRODUCTS_DIR'], "#{ENV['PRODUCT_NAME']}.#{ENV['WRAPPER_EXTENSION']}") | |
environment = { | |
'DYLD_INSERT_LIBRARIES' => "/../../Library/PrivateFrameworks/IDEBundleInjection.framework/IDEBundleInjection", |
This file contains 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
#!/bin/sh | |
# Copyright (c) 2012-2013 Lottadot LLC | |
# License is share and share alike damnit. | |
# Requires gem `git-up` | |
echo -e "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
set +e | |
current_dir=$(pwd) | |
script_dir=$(dirname $0) |
OlderNewer