- .gitignore
- .gitattributes after installing Git LFS
- .git/hooks/pre-commit
- For merge conflicts, SmartMerge
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
*** Building scheme "Spicerack" in Spicerack.xcworkspace | |
2016-01-19 18:22:37.994 xcodebuild[50538:756975] [MT] PluginLoading: Required plug-in compatibility UUID F41BD31E-2683-44B8-AE7F-5F09E919790E for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin' not present in DVTPlugInCompatibilityUUIDs | |
2016-01-19 18:22:38.181 xcodebuild[50538:756975] warning: The file reference for "test_buzz_unsupported_module.json" is a member of multiple groups ("Resources" and "Resources"); this indicates a malformed project. Only the membership in one of the groups will be preserved (but membership in targets will be unaffected). If you want a reference to the same file in more than one group, please add another reference to the same path. | |
2016-01-19 18:22:48.020 xcodebuild[50592:757252] [MT] PluginLoading: Required plug-in compatibility UUID F41BD31E-2683-44B8-AE7F-5F09E919790E for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/S |
I hereby claim:
- I am dmauro on github.
- I am dmauro (https://keybase.io/dmauro) on keybase.
- I have a public key whose fingerprint is 5BB5 8FCE 5C39 1656 2245 AE3E CBF7 BBE0 29E3 BAD3
To claim this, I am signing this object:
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
// Swift in beta 4 | |
if (optional?.methodReturningBool()) { | |
println("awesome") | |
} | |
// Swift in beta 5 | |
if (optional != nil && optional!.methodReturningBool()) { | |
println("damnit...") | |
} | |
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
// Swift in beta 4 | |
if (optional?.methodReturningBool()) { | |
println("awesome") | |
} | |
// Swift in beta 5 | |
if (optional != nil && optional!.methodReturningBool()) { | |
println("damnit...") | |
} |
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
required init(coder aDecoder: NSCoder!) { | |
fatalError("can't wait for Beta 6. t(-_-t)") | |
} |
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
import UIKit | |
extension CGSize { | |
init(width: Double, height: Double) { | |
self.width = CGFloat(width) | |
self.height = CGFloat(height) | |
} | |
} |
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
info: Starting app get-creative | |
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: There was an error while attempting to deploy the app | |
error: | |
error: Target script does not exist: /opt/haibu/carapace-versions/0.8.16/node_modules/haibu-carapace/bin/carapace | |
error: Error output from Haibu: | |
error: | |
error: Error: Target script does not exist: /opt/haibu/carapace-versions/0.8.16/node_modules/haibu-carapace/bin/carapace | |
error: at /root/haibu-orchestra/node_modules/haibu/node_modules/forever-monitor/lib/forever-monitor/monitor.js:143:26 |
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
info: Starting app get-creative | |
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: There was an error while attempting to deploy the app | |
error: | |
error: Error spawning drone | |
error: Script took too long to listen on a socket | |
error: | |
error: This type of error is usually a user error. | |
error: Error output from Haibu: |
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
info Uploading: [=============================] 100% | |
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: npm WARN package.json [email protected] No README.md file found! | |
npm http GET http://nj-npm.irisnpm.com/connect/2.3.6 | |
npm http GET http://nj-npm.irisnpm.com/express/2.5.1 | |
npm http GET http://nj-npm.irisnpm.com/connect-mongodb/1.1.4 | |
npm http GET http://nj-npm.irisnpm.com/mongodb/1.1.7 | |
npm http GET http://nj-npm.irisnpm.com/coffee-script/1.3.3 | |
npm http GET http://nj-npm.irisnpm.com/jade/0.16.2 |
NewerOlder